/* ===========================
   KHAIB — MAIN STYLESHEET
   =========================== */

/* CSS VARIABLES */
:root {
  --navy: #0D1B3E;
  --navy-mid: #152552;
  --blue: #1A3A6B;
  --accent: #2563EB;
  --accent-light: #3B82F6;
  --gold: #C9A84C;
  --white: #FFFFFF;
  --off-white: #F6F7FB;
  --light-gray: #EEF1F8;
  --text: #1A1A2E;
  --text-light: #5A6072;
  --border: #D6DCF0;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow: 0 4px 24px rgba(13, 27, 62, 0.10);
  --shadow-lg: 0 16px 48px rgba(13, 27, 62, 0.18);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* UTILITIES */
.container {
  width: 100%;
  max-width: 1500px;
  /* max-width: 80%; */
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

/* TYPOGRAPHY */
h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(42px, 7vw, 80px);
  line-height: 0.95;
  letter-spacing: -1px;
  color: var(--white);
  text-transform: uppercase;
}

h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.5px;
  color: var(--navy);
}

h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.5vw, 26px);
  color: var(--navy);
  line-height: 1.2;
}

h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
}

h5 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

p {
  color: var(--text-light);
  line-height: 1.7;
}

.accent {
  color: var(--gold);
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 1.8em;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.eyebrow-dark {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

.section-sub {
  font-size: 18px;
  margin-top: 16px;
  color: var(--text-light);
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 16px 32px;
  border-radius: var(--radius);
  transition: var(--transition);
  border: 2px solid var(--accent);
}

.btn-primary:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 16px 32px;
  border-radius: var(--radius);
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

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

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid var(--navy);
  transition: var(--transition);
}

.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-nav {
  background: var(--accent);
  color: var(--white) !important;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 10px 22px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.btn-nav:hover {
  background: #1d4ed8;
}

/* ===========================
   NAVIGATION
   =========================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(13, 27, 62, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.5rem;
  letter-spacing: -1px;
  color: var(--white);
  text-transform: uppercase;
}

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

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

.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.nav-links a:hover {
  /* color: var(--white); */
  color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.nav-links a.active {
  /* color: var(--white); */
  color: var(--gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 68px;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(13, 27, 62, 0.96) 45%, rgba(13, 27, 62, 0.60) 75%, rgba(13, 27, 62, 0.30) 100%);
  z-index: 1;
}

.hero-img-wrap {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 80px;
}

.hero-text {
  max-width: 680px;
}

.hero-text h1 {
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin-bottom: 20px;
}

.trust-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  font-family: var(--font-display);
  letter-spacing: 0.3px;
}

.trust-line svg {
  color: var(--gold);
  flex-shrink: 0;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===========================
   VALUE PROPS BAR
   =========================== */
.vp-bar {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 3;
  border-top: 4px solid var(--accent);
}

.vp-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.vp-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 28px 20px;
  border-right: 1px solid var(--border);
  transition: var(--transition);
}

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

.vp-item:hover {
  background: var(--off-white);
}

.vp-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.vp-item strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5em;
  color: var(--navy);
  letter-spacing: 0.3px;
  margin-bottom: 4px;
}

.vp-item p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-light);
}

/* ===========================
   SERVICES GRID
   =========================== */
.what-we-do {
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.svc-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  /* cursor: pointer; */
}

.svc-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.svc-card:hover {
  background: var(--navy);
}

.svc-card:hover::before {
  width: 100%;
}

.svc-card:hover h3,
.svc-card:hover .svc-num {
  color: var(--white);
}

.svc-card:hover p {
  color: rgba(255, 255, 255, 0.7);
}

.svc-card:hover .svc-icon {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold);
}

.svc-card:hover .svc-arrow {
  color: var(--gold);
}

.svc-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
  transition: var(--transition);
}

.svc-icon {
  width: 56px;
  height: 56px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
  transition: var(--transition);
}

.svc-card h3 {
  margin-bottom: 12px;
  transition: var(--transition);
}

.svc-card p {
  font-size: 18px;
  flex: 1;
  transition: var(--transition);
}

.svc-arrow {
  margin-top: 24px;
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  transition: var(--transition);
  align-self: flex-end;
}

/* ===========================
   HOW IT WORKS
   =========================== */
.how-section {
  background: var(--white);
}

.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
  flex-wrap: nowrap;
  /* overflow-x: auto; */
  padding-bottom: 8px;
}

.step {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 0 8px;
}

.step-num {
  width: 48px;
  height: 48px;
  /* background: var(--navy); */
  background: var(--border);
  /* color: var(--white); */
  color: var(--navy-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  margin: 0 auto 20px;
}

.step-icon {
  width: 64px;
  height: 64px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin: 0 auto 16px;
}

.step h3 {
  margin-bottom: 8px;
}

.step p {
  font-size: 18px;
}

.step-arrow {
  font-size: 24px;
  color: var(--navy);
  flex-shrink: 0;
  margin-top: 56px;
  padding: 0 4px;
}

.how-cta {
  text-align: center;
  margin-top: 56px;
}

/* ===========================
   TRUST / CLIENTS
   =========================== */
.trust-section {
  background: var(--off-white);
}

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

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

.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin: 48px 0 32px;
}

.client-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}

.client-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--accent);
  transform: translateY(-4px);
}

.client-badge {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--navy);
  /* letter-spacing: 0.5px; */
  margin-bottom: 8px;
}

.client-card p {
  font-size: 15px;
  line-height: 1.5;
}

.trust-support-line {
  text-align: center;
  font-size: 22px;
  font-style: italic;
  color: var(--text-light);
  max-width: 680px;
  margin: 0 auto;
}

.client-img {
  place-items: center;
  height: 180px;
  display: grid;
}

.client-img img {
  width: auto;
  max-height: 150px;
}

/* ===========================
   STATS
   =========================== */
.stats-section {
  background: var(--navy);
  padding: 72px 0;
}

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

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
}

/* ===========================
   FINAL CTA
   =========================== */
.final-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
}

.cta-text h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  max-width: 480px;
}

.cta-btns {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: #080F1F;
  color: var(--white);
  padding: 64px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  font-size: 24px;
  margin-bottom: 16px;
  display: inline-block;
}

.footer-tagline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--white);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

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

.footer-col ul a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  transition: var(--transition);
}

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

/* ===========================
   PAGE HERO (inner pages)
   =========================== */
.page-hero {
  background: linear-gradient(105deg, var(--navy) 0%, var(--blue) 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.page-hero .eyebrow {
  color: var(--gold);
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 20px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  max-width: 560px;
}

.page-hero-img {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  object-fit: cover;
  opacity: 0.2;
}

/* ===========================
   ABOUT PAGE
   =========================== */
.about-intro {
  background: var(--white);
  padding: 96px 0;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-split .about-text h2 {
  margin-bottom: 24px;
}

.about-split .about-text p {
  margin-bottom: 16px;
  font-size: 16px;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.differentiators {
  background: var(--off-white);
  padding: 96px 0;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.diff-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border-bottom: 3px solid transparent;
  transition: var(--transition);
}

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

.diff-icon {
  width: 64px;
  height: 64px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin: 0 auto 20px;
}

.diff-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
}

.diff-card p {
  font-size: 14px;
}

.industries {
  background: var(--white);
  padding: 96px 0;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.industry-item {
  text-align: center;
  padding: 48px 24px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.industry-item:hover {
  background: var(--navy);
}

.industry-item:hover h4,
.industry-item:hover .ind-icon {
  color: var(--white);
}

.ind-icon {
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  transition: var(--transition);
}

.industry-item h4 {
  transition: var(--transition);
}

.why-clients {
  background: var(--navy);
  padding: 96px 0;
}

.why-clients h2 {
  color: var(--white);
  text-align: center;
  margin-bottom: 24px;
}

.why-clients .section-sub {
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}

.why-icon {
  width: 48px;
  height: 48px;
  background: rgba(37, 99, 235, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  flex-shrink: 0;
}

.why-item h4 {
  color: var(--white);
  margin-bottom: 6px;
  font-size: 15px;
}

.why-item p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* ===========================
   SERVICES PAGE
   =========================== */
.services-detail {
  background: var(--off-white);
  padding: 96px 0;
}

.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.svc-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  border-left: 4px solid var(--accent);
  transition: var(--transition);
}

.svc-detail-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.svc-detail-card .svc-icon {
  margin-bottom: 20px;
}

.svc-detail-card h3 {
  margin-bottom: 12px;
}

.svc-detail-card>p {
  font-size: 15px;
  margin-bottom: 24px;
}

.svc-detail-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.svc-detail-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-light);
}

.svc-detail-card ul li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.commitment {
  background: var(--white);
  padding: 96px 0;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.commit-item {
  text-align: center;
}

.commit-icon {
  width: 64px;
  height: 64px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin: 0 auto 16px;
}

.commit-item h4 {
  font-size: 15px;
  margin-bottom: 8px;
}

.commit-item p {
  font-size: 13px;
}

.services-cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 80px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  margin-top: 64px;
}

.services-cta-banner h2 {
  color: var(--white);
  font-size: 36px;
}

.services-cta-banner p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 12px;
}

/* ===========================
   HOW IT WORKS PAGE
   =========================== */
.hiw-steps {
  background: var(--white);
  padding: 96px 0;
}

.hiw-steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 56px;
}

.hiw-step-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 48px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}

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

.hiw-step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hiw-step-num {
  width: 64px;
  height: 64px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  flex-shrink: 0;
}

.hiw-step-right h3 {
  margin-bottom: 12px;
  color: var(--navy);
}

.hiw-step-right p {
  font-size: 16px;
  color: var(--text-light);
}

.expect-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.expect-item {
  text-align: center;
}

.expect-icon {
  width: 56px;
  height: 56px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin: 0 auto 16px;
}

.expect-item h4 {
  font-size: 15px;
  margin-bottom: 8px;
}

.expect-item p {
  font-size: 13px;
}

/* ===========================
   OUR WORK PAGE
   =========================== */
.work-list {
  background: var(--white);
  padding: 96px 0;
}

.work-project {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}

.work-project:last-child {
  border-bottom: none;
}

.work-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 280px;
}

.work-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-category {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.work-project h3 {
  margin-bottom: 24px;
  font-size: clamp(24px, 3vw, 32px);
}

.work-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.work-stat-item {
  text-align: center;
}

.work-stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--navy);
  display: block;
}

.work-stat-lbl {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

.work-description {
  font-size: 15px;
  line-height: 1.75;
}

/* ===========================
   LET'S TALK / FORM PAGE
   =========================== */
.form-page {
  background: var(--off-white);
  padding: 96px 0;
}

.form-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow);
}

.form-card h2 {
  margin-bottom: 8px;
}

.form-card>p {
  color: var(--text-light);
  margin-bottom: 36px;
}

.form-section-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--light-gray);
}

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

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

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--navy);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.form-group label .req {
  color: var(--accent);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

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

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

.upload-zone {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.upload-zone:hover {
  border-color: var(--accent);
  background: rgba(37, 99, 235, 0.02);
}

.upload-icon {
  color: var(--accent);
  margin: 0 auto 12px;
}

.upload-zone strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 4px;
}

.upload-zone span {
  font-size: 13px;
  color: var(--text-light);
}

.form-submit {
  margin-top: 32px;
}

.btn-submit {
  width: 100%;
  padding: 18px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
}

.btn-submit:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}

.form-note {
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}

.sidebar-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.sidebar-card .underline {
  width: 40px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 24px;
}

.sidebar-why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.sidebar-why-item:last-child {
  margin-bottom: 0;
}

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

.sw-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 2px;
}

.sw-text span {
  font-size: 13px;
  color: var(--text-light);
}

.contact-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}

.contact-card h4 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 16px;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.contact-line svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text {
  animation: fadeInUp 0.8s ease forwards;
}

.hero-text .eyebrow {
  animation: fadeInUp 0.6s ease forwards;
}

.hero-text h1 {
  animation: fadeInUp 0.7s 0.1s ease both;
}

.hero-text .hero-sub {
  animation: fadeInUp 0.7s 0.2s ease both;
}

.hero-text .trust-line {
  animation: fadeInUp 0.7s 0.3s ease both;
}

.hero-text .hero-ctas {
  animation: fadeInUp 0.7s 0.4s ease both;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .vp-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .vp-item:nth-child(3) {
    border-right: none;
  }

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

  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .commitment-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .services-cta-banner {
    padding: 48px;
    flex-direction: column;
    text-align: center;
  }

  .expect-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .form-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .contact-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 32px;
    transform: translateY(-110%);
    opacity: 0;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    gap: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-links a {
    padding: 14px 16px;
    font-size: 17px;
    border-radius: var(--radius);
  }

  .btn-nav {
    text-align: center;
    margin-top: 8px;
    padding: 14px;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: 85vh;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(13, 27, 62, 0.95) 60%, rgba(13, 27, 62, 0.7) 100%);
  }

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

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

  .vp-item:nth-child(3) {
    border-right: 1px solid var(--border);
  }

  .vp-item:nth-child(4) {
    border-right: none;
  }

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

  .steps-row {
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-start;
  }

  .step {
    flex: 0 0 calc(50% - 12px);
    min-width: 0;
  }

  .step-arrow {
    display: none;
  }

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

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

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-text p {
    margin: 0 auto;
  }

  .about-split {
    grid-template-columns: 1fr;
  }

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

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

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

  .services-detail-grid {
    grid-template-columns: 1fr;
  }

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

  .work-project {
    grid-template-columns: 1fr;
  }

  .work-stats {
    gap: 20px;
  }

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

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

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

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

  .hiw-step-item {
    grid-template-columns: 64px 1fr;
    gap: 24px;
  }

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

  .section-header {
    margin-bottom: 40px;
  }

  .services-cta-banner {
    padding: 40px 24px;
  }

  .page-hero {
    padding: 100px 0 64px;
  }
}

@media (max-width: 480px) {
  .vp-grid {
    grid-template-columns: 1fr;
  }

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

  .step {
    flex: 0 0 100%;
  }

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

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

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

  .form-card {
    padding: 32px 20px;
  }

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

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