:root {
  --navy: #0f1e33;
  --navy-mid: #1a2e4a;
  --navy-light: #223a5e;
  --orange: #e8650a;
  --orange-light: #f07a28;
  --orange-pale: #fff3ea;
  --orange-dark: #b84f08;
  --white: #ffffff;
  --off-white: #f7f5f2;
  --gray-100: #f1eff0;
  --gray-300: #d1cfd0;
  --gray-500: #8a8890;
  --text-dark: #0f1e33;
  --text-mid: #3a3850;
  --text-muted: #7a7888;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --section-space: 112px;
  --section-space-tight: 88px;
  --section-header-gap: 56px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.email-link {
  color: #ffffff;        /* or any color you want */
  text-decoration: none; /* removes underline */
  font-weight: 500;
}

.email-link:hover {
  color: #ffe0cc;        /* subtle hover effect */
  text-decoration: underline; /* optional */
}
/* LOGO STRIP */
.companies {
  padding: 60px 0;
  background: var(--white);
}

.companies__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  overflow-x: auto;
  padding: 10px 0;
}
.companies__row {
  animation: scrollLogos 15s linear infinite;
}

@keyframes scrollLogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* LOGO STRIP */
.companies {
  padding: 60px 0;
  background: var(--white);
}

.companies .container {
  overflow: hidden;
}

.companies__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  overflow-x: auto;
  overflow-y: visible;
  padding: 12px 28px 18px 12px; /* extra right/bottom space */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge legacy */
}

.companies__row::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.companies__row img {
  display: block;
  height: 60px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  transform-origin: center center;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.companies__row img:hover {
  transform: scale(1.05);
}

/* extra breathing room for last logo */
.companies__row img:last-child {
  margin-right: 8px;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--navy);
}

::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 3px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.14;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.section-title--white {
  color: var(--white);
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 560px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: none;
}

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

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 101, 10, 0.35);
}

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

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(15, 30, 51, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.navbar__logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
}

.navbar__logo-text-main {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

.navbar__logo-text-sub {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--orange);
  text-transform: uppercase;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.navbar__nav a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}

.navbar__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--orange);
  transform: scaleX(0);
  transition: var(--transition);
}

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

.navbar__nav a:hover::after {
  transform: scaleX(1);
}

/* HERO */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 138px 0 96px;
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 70% 20%, rgba(232, 101, 10, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(26, 46, 74, 0.8) 0%, transparent 60%);
  pointer-events: none;
}

.hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 460px);
  gap: 56px;
  align-items: center;
  position: relative;
}

.hero__content {
  max-width: 640px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 101, 10, 0.15);
  border: 1px solid rgba(232, 101, 10, 0.3);
  border-radius: 30px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 600;
  color: #f07a28;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInDown 0.6s ease both;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  max-width: 700px;
  animation: fadeInUp 0.7s 0.1s ease both;
}

.hero__title em {
  font-style: italic;
  color: var(--orange);
}

.hero__subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.72;
  margin-bottom: 34px;
  max-width: 560px;
  animation: fadeInUp 0.7s 0.2s ease both;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  animation: fadeInUp 0.7s 0.3s ease both;
}

.hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 46px;
  max-width: 560px;
  animation: fadeInUp 0.7s 0.4s ease both;
}

.hero__stat {
  min-height: 102px;
  padding: 20px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.hero__stat-num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 5px;
}

.hero__stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.hero__visual {
  justify-self: center;
  width: min(100%, 460px);
  animation: fadeInRight 0.8s 0.2s ease both;
}

.hero__img-wrap {
  border-radius: 26px;
  overflow: hidden;
  border: 2px solid rgba(232, 101, 10, 0.25);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.hero__img-wrap img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center;
  display: block;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* SECTION IMGS */
.section-img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  display: block;
}

/* ABOUT */
.about {
  padding: var(--section-space) 0;
  background: var(--white);
}

.about__inner {
  display: grid;
  grid-template-columns: minmax(320px, 520px) minmax(0, 560px);
  justify-content: space-between;
  gap: 56px;
  align-items: start;
}

.about__img-box {
  width: min(100%, 520px);
  justify-self: start;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.about__img-box img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about__accent-card {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--orange);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 14px 40px rgba(232, 101, 10, 0.4);
}

.about__accent-num {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.about__accent-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 4px;
}

.about__content {
  max-width: 560px;
  padding-top: 8px;
}

.about__body {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.82;
  margin-bottom: 28px;
}

.about__pillars {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 34px;
}

.about__pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about__pillar-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--orange-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about__pillar-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.about__pillar-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* SERVICES */
.services {
  padding: var(--section-space) 0;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.services__header {
  text-align: center;
  margin-bottom: var(--section-header-gap);
}

.services__header .section-eyebrow {
  justify-content: center;
}

.services__header .section-eyebrow::before {
  display: none;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border-radius: 16px;
  padding: 30px 26px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card__img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 18px;
}

.service-card__icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: var(--transition);
}

.service-card:hover .service-card__icon {
  transform: scale(1.08);
}

.service-card__icon--orange {
  background: var(--orange-pale);
}

.service-card__icon--navy {
  background: rgba(26, 46, 74, 0.08);
}

.service-card__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 9px;
}

.service-card__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* PROCESS */
.process {
  padding: var(--section-space) 0;
  background: var(--white);
}

.process__header {
  text-align: center;
  margin-bottom: var(--section-header-gap);
}

.process__header .section-eyebrow {
  justify-content: center;
}

.process__header .section-eyebrow::before {
  display: none;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process__steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), rgba(232, 101, 10, 0.2));
  z-index: 0;
}

.process__step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.process__step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--orange);
}

.process__step-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.process__step-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* EXPERIENCE */
.experience {
  padding: var(--section-space) 0;
  background: var(--off-white);
}

.experience .container {
  max-width: 1280px;
}

.experience__header {
  text-align: center;
  max-width: 980px;
  margin: 0 auto var(--section-header-gap);
}

.experience__header .section-eyebrow {
  justify-content: center;
}

.experience__header .section-eyebrow::before {
  display: none;
}

.experience__header .section-subtitle {
  max-width: 760px;
  margin: 0 auto;
}

.experience__highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1180px;
  gap: 22px;
  margin: 0 auto 32px;
}

.experience__highlight {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
}

.experience__highlight-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.experience__highlight-label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.experience__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1180px;
  gap: 22px;
  margin: 0 auto;
}

.experience-card {
  display: flex;
  flex-direction: column;
  min-height: 220px;
  background: var(--white);
  border-radius: 16px;
  padding: 24px 28px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.experience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.experience-card__year {
  display: inline-block;
  background: var(--orange-pale);
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.experience-card__role {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 6px;
}

.experience-card__company {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* INDUSTRIES */
.industries {
  padding: var(--section-space-tight) 0;
  background: var(--off-white);
}

.industries__inner {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}

.industries__left {
  flex: 0 0 320px;
}

.industries__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  flex: 1;
}

.industry-item {
  border: 1px solid var(--gray-300);
  border-radius: 12px;
  padding: 20px 14px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
  background: var(--white);
}

.industry-item:hover {
  border-color: var(--orange);
  background: var(--orange-pale);
  transform: translateY(-3px);
}

.industry-item__img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.industry-item__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

/* HR INSIGHTS */
.insights {
  padding: var(--section-space) 0;
  background: var(--white);
}

.insights .container {
  max-width: 1280px;
}

.insights .reveal:first-child {
  max-width: 760px;
}

.insights__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  margin-top: 48px;
  align-items: stretch;
}

.insight-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--off-white);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.insight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.insight-card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.insight-card__body {
  padding: 28px;
}

.insight-card__tag {
  display: inline-block;
  background: var(--orange-pale);
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.insight-card__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.4;
}

.insight-card__text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* WHY */
.why {
  padding: var(--section-space) 0;
  background: var(--off-white);
}

.why .container {
  max-width: 1280px;
}

.why__inner {
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(0, 620px);
  justify-content: space-between;
  gap: 48px;
  align-items: start;
}

.why__left {
  max-width: 560px;
}

.why__list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 28px;
}

.why__item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.why__item-num {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: rgba(232, 101, 10, 0.2);
  line-height: 1;
  flex-shrink: 0;
  width: 44px;
}

.why__item-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.why__item-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.why__right {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 18px;
  align-self: start;
}

.why__stat-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 190px;
  background: var(--white);
  border-radius: 16px;
  padding: 26px 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.why__stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.why__stat-card:first-child {
  background: var(--navy);
}

.why__stat-card:first-child .why__stat-num {
  color: var(--orange);
}

.why__stat-card:first-child .why__stat-label {
  color: rgba(255, 255, 255, 0.55);
}

.why__stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}

.why__stat-label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* CTA */
.cta {
  padding: var(--section-space-tight) 0;
  background: var(--orange);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.cta__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  position: relative;
}

.cta__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}

.cta__sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  max-width: 480px;
}

.cta__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.cta__contact-item {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  min-width: 260px;
}

/* FOOTER */
.footer {
  background: #090f1a;
  padding: 80px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.footer__logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.footer__logo-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

.footer__logo-tagline {
  font-size: 10px;
  color: var(--orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer__about {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer__col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 22px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--orange);
  padding-left: 4px;
}

.footer__contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.footer__contact-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.5;
}

.footer__contact-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.footer__bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer__copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.25);
}

.footer__copy span {
  color: var(--orange);
}

/* DIVIDER */
.divider {
  height: 1px;
  background: var(--gray-100);
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .hero__inner,
  .about__inner,
  .why__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__visual,
  .about__img-box {
    justify-self: center;
  }

  .experience__grid,
  .insights__grid,
  .services__grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .industries__left {
    flex: unset;
  }

  .cta__inner {
    flex-direction: column;
  }

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

  .navbar__nav {
    display: none;
  }

  .hero,
  .about,
  .services,
  .process,
  .experience,
  .insights,
  .why {
    padding: 88px 0;
  }

  .industries,
  .cta {
    padding: 80px 0;
  }

  .services__header,
  .process__header,
  .experience__header {
    margin-bottom: 44px;
  }

  .insights__grid {
    margin-top: 44px;
  }
}

@media (max-width: 900px) {
  .hero__visual {
    display: none;
  }

  .process__steps {
    grid-template-columns: 1fr 1fr;
    gap: 28px 0;
  }

  .process__steps::before {
    display: none;
  }

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

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

@media (max-width: 700px) {
  .experience__grid,
  .insights__grid,
  .why__right,
  .experience__highlights,
  .services__grid {
    grid-template-columns: 1fr;
  }

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

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

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

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

  .hero {
    padding: 124px 0 72px;
  }

  .hero__title {
    font-size: clamp(34px, 11vw, 48px);
  }

  .hero__subtitle {
    font-size: 16px;
  }

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

  .hero__stat,
  .experience-card,
  .why__stat-card {
    min-height: auto;
  }

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

  .about__accent-card {
    right: 16px;
    bottom: 16px;
    padding: 16px 18px;
  }

  .cta__contact {
    width: 100%;
  }

  .cta__contact-item {
    min-width: 0;
    width: 100%;
  }

  .about,
  .services,
  .process,
  .experience,
  .insights,
  .why,
  .industries,
  .cta {
    padding: 72px 0;
  }

  .services__header,
  .process__header,
  .experience__header {
    margin-bottom: 36px;
  }

  .insights__grid {
    margin-top: 36px;
  }

  .footer {
    padding: 64px 0 0;
  }
}