/* ===========================
   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;
  user-select: none;
}

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

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

ul {
  list-style: none;
}

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

.section {
  padding: 56px 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: 28px;
  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: 22px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.section-sub {
  font-size: 20px;
  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: 18px;
  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(--gold);
  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: 18px;
  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: 98px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  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: 22px;
  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);
  background: rgba(255, 255, 255, 0.08);
}

.nav-links a.active {
  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: 20px;
  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: 16px;
  color: var(--navy);
  letter-spacing: 0.3px;
  margin-bottom: 4px;
}

.vp-item p {
  font-size: 13px;
  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: 28px;
  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: 15px;
  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);
  color: var(--white);
  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: 16px;
}

.step-arrow {
  font-size: 24px;
  color: var(--navy-mid);
  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(3, 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: 700;
  font-size: 22px;
  color: var(--navy);
  letter-spacing: -0.1px;
  margin-bottom: 8px;
}

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

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

.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: 20px;
  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%); */
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='28' fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 80px 80px;
}

.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: 18px;
  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(--gold);
  color: var(--white);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 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(--gold);
}

.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(--gold);
}

.footer-legal-sep {
  color: var(--gold);
}

/* ===========================
   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%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

/* ===========================
   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 {}

.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: 20px;
  margin-bottom: 10px;
}

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

.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: 18px;
}

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


/* ===========================
   ABOUT PAGE — NEW DESIGN
   =========================== */

/* ── Hero: split text left / image right ── */
.about-new-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  padding-top: 68px;
  /* nav height */
}

.about-new-hero-text {
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 48px;
  position: relative;
  z-index: 1;
}

.about-new-hero-text .eyebrow {
  color: var(--gold);
  margin-bottom: 16px;
}

.about-new-hero-text h1 {
  font-size: clamp(34px, 4.5vw, 54px);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.05;
}

.about-new-hero-text p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  max-width: 420px;
}

.about-new-hero-img {
  position: relative;
  overflow: hidden;
}

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

.about-new-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--navy) 0%, transparent 30%);
}

/* ── Who We Are section ── */
.about-who {
  background: var(--white);
}

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

.about-who-left h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--navy);
  margin-bottom: 12px;
}

.about-who-underline {
  width: 40px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 28px;
}

.about-who-left p {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 18px;
}

/* 3-image strip */
.about-who-imgs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 28px 0 20px;
}

.about-who-img {
  border-radius: var(--radius);
  overflow: hidden;
  height: 100px;
}

.about-who-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.about-who-img:hover img {
  transform: scale(1.06);
}

/* Tagline pill */
.about-who-tagline {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
}

.about-who-tagline-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.about-who-tagline p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

.about-who-tagline p strong {
  color: var(--navy);
}

/* Right: feature cards */
.about-who-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-feat-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  transition: var(--transition);
}

.about-feat-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--navy);
  transform: translateX(4px);
}

.about-feat-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}

.about-feat-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.about-feat-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* ── Why Clients Choose KhaiB ── */
.about-section-underline {
  width: 40px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 12px auto 0;
}

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

.about-why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.about-why-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: var(--navy);
}

.about-why-icon {
  width: 68px;
  height: 68px;
  background: #EFF6FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin: 0 auto 18px;
}

.about-why-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 12px;
}

.about-why-line {
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  margin: 0 auto 14px;
}

.about-why-card p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
}

/* ── Industries We Serve ── */
.about-industries {
  background: var(--white);
}

.about-industries-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  margin-top: 48px;
  gap: 0;
  background: var(--off-white);
}

.about-industry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  flex: 1;
  padding: 0 16px;
  transition: var(--transition);
}

.about-industry-item:hover .about-industry-icon {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}

.about-industry-item:hover span {
  color: var(--navy);
}

.about-industry-icon {
  width: 64px;
  height: 64px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: var(--transition);
}

.about-industry-item span {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.35;
  transition: var(--transition);
}

.about-industry-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── Bottom CTA Banner ── */
.about-cta-banner {
  background: var(--navy);
  padding: 36px 0;
  position: relative;
  overflow: hidden;
}

.about-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='28' fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 80px 80px;
}

.about-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.about-cta-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.about-cta-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.about-cta-left strong {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.about-cta-left p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.about-cta-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.5px;
  padding: 16px 32px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.about-cta-btn:hover {
  background: #d4a93a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.4);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .about-who-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .about-industries-row {
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    padding: 32px 24px;
  }

  .about-industry-item {
    flex: 0 0 calc(33% - 16px);
  }

  .about-industry-divider {
    display: none;
  }
}

@media (max-width: 768px) {
  .about-new-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about-new-hero-img {
    height: 280px;
  }

  .about-new-hero-overlay {
    background: linear-gradient(180deg, var(--navy) 0%, transparent 40%);
  }

  .about-new-hero-text {
    padding: 60px 24px 48px;
  }

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

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

  .about-cta-left {
    flex-direction: column;
  }

  .about-industry-item {
    flex: 0 0 calc(50% - 12px);
  }
}

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

  .about-industry-item {
    flex: 0 0 calc(50% - 12px);
  }

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

  .about-who-imgs .about-who-img:last-child {
    display: none;
  }
}


/* ===========================
   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: 18px;
  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: 16px;
  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: 18px;
  margin-bottom: 8px;
}

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

.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: 16px;
  color: var(--navy);
}

.hiw-step-right p {
  font-size: 18px;
  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: 18px;
  margin-bottom: 8px;
}

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

/* ===========================
   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: 18px;
  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: 14px;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

.work-description {
  font-size: 18px;
  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: 15px;
  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: 15px;
  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(--white);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
  /* border: none; */
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  border-color: var(--navy);
}

.btn-submit:hover {
  background: var(--navy);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}

.form-note {
  text-align: center;
  margin-top: 16px;
  font-size: 15px;
  color: var(--text);
  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: 45px;
  height: 45px;
  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: 20px;
  color: var(--navy);
  margin-bottom: 2px;
}

.sw-text span {
  font-size: 16px;
  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;
  }
}

/* ===========================
   FORM VALIDATION STYLES
   =========================== */

/* Valid field — green ring */
.form-group input.field-ok,
.form-group textarea.field-ok,
.form-group select.field-ok {
  border-color: #16a34a;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%2316a34a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 42px;
}

/* Invalid field — red ring */
.form-group input.field-error,
.form-group textarea.field-error,
.form-group select.field-error {
  border-color: #dc2626;
  background-color: #fff8f8;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='10' stroke='%23dc2626' stroke-width='2'/%3E%3Cline x1='12' y1='8' x2='12' y2='12' stroke='%23dc2626' stroke-width='2' stroke-linecap='round'/%3E%3Cline x1='12' y1='16' x2='12.01' y2='16' stroke='%23dc2626' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 42px;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

/* Shake animation on submit with errors */
@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  15% {
    transform: translateX(-6px);
  }

  30% {
    transform: translateX(6px);
  }

  45% {
    transform: translateX(-4px);
  }

  60% {
    transform: translateX(4px);
  }

  75% {
    transform: translateX(-2px);
  }

  90% {
    transform: translateX(2px);
  }
}

.field-error {
  animation: shake 0.4s ease;
}

/* Error message text below the field */
.field-error-msg {
  display: none;
  font-size: 13px;
  color: #dc2626;
  margin-top: 5px;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 5px;
}

.field-error-msg::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #dc2626;
  border-radius: 50%;
  flex-shrink: 0;
  margin-right: 5px;
}

/* Focus states — keep looking clean while typing */
.form-group input.field-error:focus,
.form-group textarea.field-error:focus {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
  outline: none;
}

.form-group input.field-ok:focus,
.form-group textarea.field-ok:focus {
  border-color: #16a34a;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.12);
  outline: none;
}

/* ===========================
   LOGO IMAGE
   =========================== */

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

/* Nav logo — inverted to white since nav bg is dark navy */
.logo-img--nav {
  height: 90px;
  width: auto;
  display: block;
  filter: invert(1) brightness(2);
  /* black PNG → white */
  transition: opacity 0.2s ease;
}

.logo-img--nav:hover {
  opacity: 0.85;
}

/* Footer logo — same inversion on dark footer */
.logo-img--footer {
  height: 98px;
  width: auto;
  display: block;
  filter: invert(1) brightness(2);
  margin-bottom: 16px;
  transition: opacity 0.2s ease;
}

.logo-img--footer:hover {
  opacity: 0.85;
}

/* Slightly larger on wider screens */
@media (min-width: 1024px) {
  .logo-img--nav {
    height: 98px;
  }
}

/* Slightly smaller on mobile */
@media (max-width: 480px) {
  .logo-img--nav {
    height: 68px;
  }
}

/* ===========================
   SERVICES PHOTO CARDS
   =========================== */

.services-grid-photo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.svc-photo-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  cursor: pointer;
  text-decoration: none;
  /* Lift on hover */
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.svc-photo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(13, 27, 62, 0.35);
}

/* Background photo layer */
.svc-photo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.svc-photo-card:hover .svc-photo-bg {
  transform: scale(1.06);
}

/* Dark gradient overlay — stronger at bottom */
.svc-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(9, 21, 42, 0.10) 0%,
      rgba(9, 21, 42, 0.25) 50%,
      rgba(9, 21, 42, 0.96) 100%);
  transition: background 0.35s ease;
}

.svc-photo-card:hover .svc-photo-overlay {
  background: linear-gradient(180deg,
      rgba(9, 21, 42, 0.55) 0%,
      rgba(9, 21, 42, 0.80) 50%,
      rgba(9, 21, 42, 0.98) 100%);
}

/* Content sits above bg + overlay */
.svc-photo-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 24px 28px 28px;
}

/* Top row: number + icon */
.svc-photo-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.svc-photo-num {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--gold);
  opacity: 0.9;
  -webkit-text-stroke: 0.5px white;
}

.svc-photo-icon {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  backdrop-filter: blur(4px);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.svc-photo-card:hover .svc-photo-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

/* Bottom: title + description + cta */
.svc-photo-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.svc-photo-bottom h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0;
}

.svc-photo-bottom p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  /* Slide up on hover */
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.35s ease;
}

.svc-photo-card:hover .svc-photo-bottom p {
  max-height: 80px;
  opacity: 1;
}

/* Gold "Learn More" link */
.svc-photo-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--gold);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease 0.05s, transform 0.3s ease 0.05s;
}

.svc-photo-card:hover .svc-photo-cta {
  opacity: 1;
  transform: translateY(0);
}

/* Gold bottom border that grows on hover */
.svc-photo-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gold);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 3;
}

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

/* Responsive */
@media (max-width: 1024px) {
  .services-grid-photo {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-grid-photo {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .svc-photo-card {
    min-height: 260px;
  }

  /* Always show description on mobile (no hover) */
  .svc-photo-bottom p {
    max-height: 80px;
    opacity: 1;
  }

  .svc-photo-cta {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ===========================
   SERVICES DETAIL — PHOTO CARDS
   =========================== */

.svc-detail-card--photo {
  padding: 0;
  overflow: hidden;
  border-left: none;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.svc-detail-card--photo:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

/* Photo header */
.svc-detail-img {
  position: relative;
  height: 200px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: height 0.3s ease;
}

.svc-detail-card--photo:hover .svc-detail-img {
  height: 220px;
}

/* Photo scales on hover */
.svc-detail-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.svc-detail-card--photo:hover .svc-detail-img::before {
  transform: scale(1.06);
}

/* Dark gradient over the photo */
.svc-detail-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg,
      rgba(9, 21, 42, 0.25) 0%,
      rgba(9, 21, 42, 0.75) 100%);
  z-index: 1;
}

/* Badge row: icon + label pinned to bottom of photo */
.svc-detail-img-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
}

.svc-detail-icon-wrap {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: transform 0.3s ease;
}

.svc-detail-card--photo:hover .svc-detail-icon-wrap {
  transform: scale(1.1);
}

.svc-detail-label {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
}

/* Body content below the photo */
.svc-detail-body {
  padding: 28px 28px 32px;
  background: var(--white);
}

/* Gold left accent on hover */
.svc-detail-card--photo::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--gold);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  transition: width 0.3s ease;
  z-index: 0;
}

.svc-detail-card--photo:hover::before {
  width: 4px;
}

.svc-detail-body h3 {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--navy);
  margin-bottom: 10px;
}

.svc-detail-body>p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.7;
}

.svc-detail-body ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.svc-detail-body ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--text-light);
  transition: color 0.2s ease;
}

.svc-detail-body ul li::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.svc-detail-card--photo:hover .svc-detail-body ul li::before {
  background: var(--gold);
}

/* Responsive */
@media (max-width: 768px) {
  .services-detail-grid {
    grid-template-columns: 1fr;
  }

  .svc-detail-img {
    height: 180px;
  }
}


/* ===========================
   HOW IT WORKS — TIMELINE + IMAGE STRIP
   =========================== */

/* ── Timeline row ── */
.hiw-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 26px;
  position: relative;
}

/* Horizontal connector line behind everything */
.hiw-timeline::before {
  content: '';
  position: absolute;
  top: 88px;
  /* vertically centred on the icons */
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--gold) 100%);
  opacity: 0.25;
  z-index: 0;
}

/* Each step column */
.hiw-timeline-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 8px;
}

/* Step number above icon */
.hiw-timeline-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 10px;
}

/* Icon circle */
.hiw-timeline-icon {
  width: 72px;
  height: 72px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(13, 27, 62, 0.08);
  transition: background 0.3s ease, border-color 0.3s ease,
    color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.hiw-timeline-step:hover .hiw-timeline-icon {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(13, 27, 62, 0.22);
}

.hiw-timeline-step h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.25;
}

.hiw-timeline-step p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 160px;
  margin: 0 auto;
}

/* Arrow between steps */
.hiw-timeline-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding-top: 44px;
  /* align with icon centre */
  color: var(--border);
}

/* ── Panoramic image strip ── */
.hiw-image-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hiw-strip-cell {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.hiw-strip-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.hiw-strip-cell:hover img {
  transform: scale(1.08);
}

/* Dark gradient over each cell */
.hiw-strip-cell::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(9, 21, 42, 0.10) 0%,
      rgba(9, 21, 42, 0.72) 100%);
  z-index: 1;
  transition: background 0.3s ease;
}

.hiw-strip-cell:hover::before {
  background: linear-gradient(180deg,
      rgba(9, 21, 42, 0.20) 0%,
      rgba(9, 21, 42, 0.85) 100%);
}

/* Label pinned to bottom of each cell */
.hiw-strip-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 12px 14px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.3px;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hiw-strip-label span {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold);
  flex-shrink: 0;
}

/* Active/hover: gold bottom border appears */
.hiw-strip-cell::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gold);
  z-index: 3;
  transition: width 0.35s ease;
}

.hiw-strip-cell:hover::after {
  width: 100%;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hiw-timeline::before {
    left: 5%;
    right: 5%;
  }
}

/* ── MOBILE: full vertical layout ─────────────────────────────────────────── */
@media (max-width: 768px) {

  /* Hide the horizontal timeline & image strip — replaced by vertical cards */
  .hiw-timeline,
  .hiw-image-strip {
    display: none;
  }

  /* Show the mobile vertical steps */
  .hiw-mobile-steps {
    display: flex;
  }
}

@media (min-width: 769px) {

  /* Hide mobile vertical steps on desktop */
  .hiw-mobile-steps {
    display: none;
  }
}


/* ===========================
   HOW IT WORKS — STEP DETAIL LIST
   (numbered rows below image strip)
   =========================== */

.hiw-detail-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.hiw-detail-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: stretch;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  transition: background 0.25s ease;
}

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

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

/* Dark circle badge — left column */
.hiw-detail-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  /* slim gold left border on hover */
  border-right: 1px solid var(--border);
  flex-shrink: 0;
  transition: background 0.25s ease;
  position: relative;
}

/* Gold accent strip that slides in on hover */
.hiw-detail-badge::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--gold);
  transition: width 0.25s ease;
}

.hiw-detail-item:hover .hiw-detail-badge::before {
  width: 4px;
}

.hiw-detail-item:hover .hiw-detail-badge {
  background: #0f2040;
}

/* Right content column */
.hiw-detail-content {
  padding: 24px 32px;
  display: flex;
  align-items: baseline;
  gap: 32px;
}

.hiw-detail-content h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--navy);
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 220px;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.hiw-detail-item:hover .hiw-detail-content h4 {
  color: var(--accent);
}

.hiw-detail-content p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.75;
  font-style: italic;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .hiw-detail-item {
    grid-template-columns: 52px 1fr;
  }

  .hiw-detail-badge {
    font-size: 18px;
  }

  .hiw-detail-content {
    flex-direction: column;
    gap: 8px;
    padding: 20px 20px;
  }

  .hiw-detail-content h4 {
    white-space: normal;
    min-width: unset;
    font-size: 16px;
  }

  .hiw-detail-content p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .hiw-detail-item {
    grid-template-columns: 44px 1fr;
  }

  .hiw-detail-content {
    padding: 16px;
  }
}


/* ===========================
   MOBILE VERTICAL STEPS
   (shown only below 768px)
   =========================== */

.hiw-mobile-steps {
  flex-direction: column;
  gap: 0;
  position: relative;
}

/* Vertical connector line running through all steps */
.hiw-mobile-steps::before {
  content: '';
  position: absolute;
  left: 35px;
  /* centred on the 72px icon */
  top: 36px;
  bottom: 36px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--gold) 100%);
  opacity: 0.25;
  z-index: 0;
}

/* Each vertical step card */
.hiw-mobile-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0;
  position: relative;
  z-index: 1;
  padding-bottom: 0;
}

/* Left column: number + icon centred on the vertical line */
.hiw-mobile-step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding-top: 20px;
  flex-shrink: 0;
}

.hiw-mobile-step-num {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold);
}

.hiw-mobile-step-icon {
  width: 56px;
  height: 56px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  box-shadow: 0 4px 12px rgba(13, 27, 62, 0.10);
  position: relative;
  z-index: 2;
  /* sits above the vertical line */
}

/* Downward arrow dot between steps */
.hiw-mobile-step-arrow {
  width: 28px;
  height: 28px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  margin-top: 35px;
  position: relative;
  z-index: 2;
}

/* hide arrow for last step */
.hiw-mobile-step:last-child .hiw-mobile-step-arrow {
  display: none;
}

/* Right column: image + content */
.hiw-mobile-step-right {
  padding: 16px 0 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Step photo — full width, rounded */
.hiw-mobile-step-img {
  width: 100%;
  height: 180px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.hiw-mobile-step-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* dark overlay */
.hiw-mobile-step-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 21, 42, 0.05) 0%, rgba(9, 21, 42, 0.55) 100%);
  border-radius: var(--radius-lg);
}

/* Step text */
.hiw-mobile-step-text h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.hiw-mobile-step-text p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* Divider between steps */
.hiw-mobile-step+.hiw-mobile-step::before {
  content: '';
  display: block;
  position: absolute;
  left: 72px;
  right: 0;
  top: 0;
  height: 1px;
  background: var(--border);
  opacity: 0.5;
}

/* Proudly Canadian badge */
.nav-logo-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-canada {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-left: 1px solid rgb(255, 255, 255);
  flex-shrink: 0;
}

.nav-canada span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
}

.nav-canada-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 2px;
}

/* @media (max-width: 640px) {
  .nav-canada { display: none; }
} */

/* CFIB Badge */
.cfib-badge-link {
  display: inline-block;
  transition: opacity 0.2s ease, transform 0.2s ease;
  margin-bottom: 20px;
}

.cfib-badge-link:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* Footer version — small */
.cfib-badge-img {
  width: 80px;
  height: auto;
  display: block;
  border-radius: 6px;
}

/* Trust section version — slightly larger, centred */
.cfib-badge-img--trust {
  width: 200px;
}

.cfib-trust-wrap {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

/* ===========================
   LOADING SCREEN
   =========================== */

#loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loading-screen.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Logo pulse animation */
.loading-logo {
  width: 180px;
  height: auto;
  filter: invert(1) brightness(2);
  animation: logoPulse 1.8s ease-in-out infinite;
}

@keyframes logoPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(0.96);
  }
}

/* Spinner ring around logo */
.loading-spinner-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 220px;
}

.loading-spinner-wrap .loading-logo {
  position: absolute;
  width: 140px;
}

.loading-ring {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-top-color: var(--gold);
  border-right-color: var(--gold);
  animation: spinRing 1.2s cubic-bezier(0.6, 0.2, 0.4, 0.8) infinite;
  position: absolute;
}

.loading-ring-inner {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom-color: rgba(201, 168, 76, 0.4);
  animation: spinRing 2s cubic-bezier(0.6, 0.2, 0.4, 0.8) infinite reverse;
  position: absolute;
}

@keyframes spinRing {
  to {
    transform: rotate(360deg);
  }
}

/* Dot progress bar */
.loading-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.loading-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.3;
  animation: dotPulse 1.2s ease-in-out infinite;
}

.loading-dot:nth-child(1) {
  animation-delay: 0s;
}

.loading-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.loading-dot:nth-child(3) {
  animation-delay: 0.4s;
}

.loading-dot:nth-child(4) {
  animation-delay: 0.6s;
}

.loading-dot:nth-child(5) {
  animation-delay: 0.8s;
}

@keyframes dotPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.4);
  }
}

/* Tagline beneath spinner */
.loading-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

/* Hide scrollbar while loading */
body.is-loading {
  overflow: hidden;
}

/* ===========================
   STATS SECTION — REDESIGNED
   =========================== */

.stats-section {
  background: #09152A;
  padding: 72px 0;
}

/* ── Top card: 4 stat items in a bordered rounded container ── */
.stats-top-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.02);
}

.stat-card-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s ease;
}

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

.stat-card-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

.stat-card-icon {
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-card-num,
.stat-card-text {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.stat-card-label {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.3px;
  margin-bottom: 16px;
}

.stat-card-divider {
  width: 32px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 16px;
  opacity: 0.7;
}

.stat-card-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  max-width: 180px;
  margin: 0;
}

/* ── Bottom card: 4 value props in a smaller bordered container ── */
.stats-bottom-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px 40px;
  background: rgba(255, 255, 255, 0.02);
}

.stats-vp-item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  justify-content: center;
}

.stats-vp-icon {
  color: var(--gold);
  flex-shrink: 0;
}

.stats-vp-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
}

.stats-vp-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .stats-top-card {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .stat-card-item:nth-child(1),
  .stat-card-item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .stats-bottom-card {
    flex-wrap: wrap;
    gap: 24px;
    padding: 28px 24px;
  }

  .stats-vp-item {
    flex: 0 0 calc(50% - 12px);
    justify-content: flex-start;
  }

  .stats-vp-divider {
    display: none;
  }
}

@media (max-width: 540px) {
  .stats-top-card {
    grid-template-columns: 1fr;
  }

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

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

  .stats-vp-item {
    flex: 0 0 100%;
  }
}

/* ===========================
   HOW IT WORKS — INDEX PAGE
   Circular image steps layout
   =========================== */

.hiw-index-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
}

/* Gold arrow between steps */
.hiw-index-arrow {
  flex-shrink: 0;
  color: var(--gold);
  padding: 0 8px;
  margin-top: 72px;
  /* aligns with centre of circle */
  opacity: 0.8;
}

/* Each step column */
.hiw-index-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 0;
}

/* Number badge row — sits above the circle */
.hiw-index-top {
  margin-bottom: 12px;
}

.hiw-index-badge {
  width: 44px;
  height: 44px;
  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: 20px;
  box-shadow: 0 4px 14px rgba(13, 27, 62, 0.25);
}

/* Circle image wrapper — relative so icon can overlap */
.hiw-index-circle-wrap {
  position: relative;
  width: 100%;
  max-width: 190px;
  margin-bottom: 20px;
}

/* Circular image */
.hiw-index-circle {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: var(--light-gray);
  box-shadow: 0 8px 28px rgba(13, 27, 62, 0.14);
  border: 3px solid var(--white);
}

.hiw-index-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
  display: block;
}

.hiw-index-step:hover .hiw-index-circle img {
  transform: scale(1.06);
}

/* Icon badge overlapping bottom-centre of circle */
.hiw-index-icon {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  background: var(--navy);
  border: 3px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  box-shadow: 0 4px 12px rgba(13, 27, 62, 0.2);
  transition: background 0.3s ease;
}

.hiw-index-step:hover .hiw-index-icon {
  background: var(--gold);
  color: var(--navy);
}

/* Text content below circle */
.hiw-index-content {
  padding: 0 8px;
}

.hiw-index-content h4 {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.2;
}

/* Gold underline accent */
.hiw-index-line {
  width: 32px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  margin: 0 auto 12px;
}

.hiw-index-content p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.65;
  max-width: 160px;
  margin: 0 auto;
}

/* ── Trust banner ── */
.hiw-trust-banner {
  display: flex;
  align-items: center;
  gap: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  background: var(--off-white);
  margin-bottom: 40px;
}

.hiw-trust-partner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.hiw-trust-shield {
  width: 56px;
  height: 56px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.hiw-trust-partner-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.hiw-trust-partner-text p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.5;
  max-width: 300px;
  margin: 0;
}

.hiw-trust-divider {
  width: 1px;
  height: 56px;
  background: var(--border);
  flex-shrink: 0;
}

.hiw-trust-values {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: space-around;
}

.hiw-trust-val {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

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

.hiw-trust-val div {
  display: flex;
  flex-direction: column;
}

.hiw-trust-val strong {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 650;
  color: var(--navy);
  line-height: 1.2;
}

.hiw-trust-val span {
  font-size: 15px;
  color: var(--text-light);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hiw-index-steps {
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
  }

  .hiw-index-step {
    flex: 0 0 calc(33% - 16px);
  }

  .hiw-index-arrow {
    display: none;
  }

  .hiw-trust-banner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .hiw-trust-divider {
    width: 80px;
    height: 1px;
  }

  .hiw-trust-values {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .hiw-trust-partner {
    flex-direction: column;
    text-align: center;
  }

  .hiw-trust-partner-text p {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .hiw-index-step {
    flex: 0 0 calc(50% - 16px);
  }

  .hiw-index-circle-wrap {
    max-width: 140px;
  }
}

@media (max-width: 380px) {
  .hiw-index-step {
    flex: 0 0 100%;
  }
}

/* ============================================================
   KhaiB Solutions — Services Page Styles
   Import this AFTER style.css on services.html only
   ============================================================ */

/* ── Hero: split text left / image right ── */
.svc-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
  padding-top: 68px;
}

.svc-hero-text {
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 56px 80px 48px;
}

.svc-hero-text .eyebrow {
  color: var(--gold);
  margin-bottom: 16px;
}

.svc-hero-text h1 {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 20px;
}

.svc-hero-line {
  width: 40px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 20px;
}

.svc-hero-text p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  max-width: 400px;
}

.svc-hero-img {
  position: relative;
  overflow: hidden;
}

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

.svc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--navy) 0%, transparent 30%);
}

/* ── Section heading underline ── */
.svc-section-line {
  width: 40px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 12px auto 0;
}

/* ── Core Services 3x2 grid ── */
.svc-core {
  background: var(--white);
}

.svc-core-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.svc-core-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: var(--transition);
}

.svc-core-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: transparent;
}

/* Photo with icon badge overlapping bottom-left */
.svc-core-img-wrap {
  position: relative;
  height: 200px;
  overflow: visible;
  /* allow badge to overflow */
}

.svc-core-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
  border-radius: 0;
  clip-path: inset(0);
  /* clips the image without affecting children */
}

.svc-core-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: 0;
}

.svc-core-card:hover .svc-core-img-wrap img {
  transform: scale(1.06);
}

/* Icon badge — white circle overlapping bottom-left of image */
.svc-core-icon-badge {
  position: absolute;
  bottom: -24px;
  left: 20px;
  width: 48px;
  height: 48px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  box-shadow: 0 4px 12px rgba(13, 27, 62, 0.12);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  z-index: 1;
}

.svc-core-card:hover .svc-core-icon-badge {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--white);
}

/* Card body */
.svc-core-body {
  padding: 36px 24px 28px;
}

.svc-core-body h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.2;
}

.svc-core-body>p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 18px;
}

.svc-core-body ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.svc-core-body ul li::before {
  content: '';
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background: #EFF6FF url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%232563EB' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/10px no-repeat;
  border-radius: 50%;
}

/* ── How We Work 6-step timeline ── */
.svc-how {
  background: var(--off-white);
}

.svc-how-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 56px;
  position: relative;
}

/* Connector line */
.svc-how-steps::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: repeating-linear-gradient(90deg,
      var(--border) 0px,
      var(--border) 6px,
      transparent 6px,
      transparent 12px);
  z-index: 0;
}

.svc-how-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 6px;
}

/* Number badge */
.svc-how-badge {
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  border: 3px solid var(--white);
  transition: background 0.3s ease, transform 0.3s ease;
}

.svc-how-step:hover .svc-how-badge {
  background: var(--gold);
  color: var(--navy);
  transform: scale(1.1);
}

/* Icon below badge */
.svc-how-icon {
  width: 100px;
  height: 100px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(13, 27, 62, 0.06);
  transition: var(--transition);
}

.svc-how-step:hover .svc-how-icon {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}

.svc-how-step h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.svc-how-step p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 130px;
  margin: 0 auto;
}

/* Gold arrows between steps */
.svc-how-arrow {
  flex-shrink: 0;
  padding: 0 4px;
  margin-top: 10px;
  color: var(--gold);
  opacity: 1;
}

/* ── Bottom CTA Banner ── */
.svc-cta-banner {
  background: var(--navy);
  padding: 36px 0;
  position: relative;
  overflow: hidden;
}

.svc-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='28' fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 80px 80px;
}

.svc-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.svc-cta-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.svc-cta-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.svc-cta-left strong {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.svc-cta-left p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.svc-cta-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.5px;
  padding: 16px 32px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.svc-cta-btn:hover {
  background: #d4a93a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.4);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .svc-core-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-how-steps {
    flex-wrap: wrap;
    gap: 28px;
  }

  .svc-how-steps::before {
    display: none;
  }

  .svc-how-step {
    flex: 0 0 calc(33% - 20px);
  }

  .svc-how-arrow {
    display: none;
  }
}

@media (max-width: 768px) {
  .svc-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .svc-hero-img {
    height: 260px;
  }

  .svc-hero-overlay {
    background: linear-gradient(180deg, var(--navy) 0%, transparent 50%);
  }

  .svc-hero-text {
    padding: 60px 24px 48px;
  }

  .svc-core-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .svc-how-step {
    flex: 0 0 calc(50% - 14px);
  }

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

  .svc-cta-left {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .svc-how-step {
    flex: 0 0 calc(50% - 14px);
  }
}

/* ============================================================
   KhaiB Solutions — How It Works Page Styles
   Import this AFTER style.css on how-it-works.html only
   ============================================================ */

/* ── Hero: split text left / image right ── */
.hiw-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  padding-top: 68px;
}

.hiw-hero-text {
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 56px 72px 48px;
}

.hiw-hero-text .eyebrow {
  color: var(--gold);
  margin-bottom: 16px;
}

.hiw-hero-text h1 {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 20px;
}

.hiw-hero-line {
  width: 40px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 20px;
}

.hiw-hero-text p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  max-width: 380px;
  margin-bottom: 12px;
}

.hiw-hero-text p:last-child {
  margin-bottom: 0;
}

.hiw-hero-img {
  position: relative;
  overflow: hidden;
}

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

.hiw-hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--navy) 0%, transparent 30%);
}

/* ── Section subline ── */
.hiw-section-line {
  width: 40px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 12px auto 0;
}

/* ══════════════════════════════════════
   5-STEP PROCESS SECTION
══════════════════════════════════════ */
.hiw-process {
  background: var(--white);
}

.hiw-process .section-header p.section-sub {
  margin-top: 14px;
  font-size: 15px;
  color: var(--text-light);
}

/* Number connector row */
.hiw-num-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  margin-bottom: 0;
  position: relative;
  /* match the same gap as .hiw-cards-row so columns align */
  gap: 16px;
}

/* Dashed line drawn behind the badges as a single row decoration */
.hiw-num-row::before {
  content: '';
  position: absolute;
  top: 50%;
  left: calc(10% + 26px);
  /* starts after first badge centre */
  right: calc(10% + 26px);
  /* ends before last badge centre */
  height: 1px;
  background: repeating-linear-gradient(90deg,
      var(--border) 0px,
      var(--border) 6px,
      transparent 6px,
      transparent 14px);
  z-index: 0;
}

/* Gold arrow markers between badges */
.hiw-num-row::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

/* Badge centred in its grid column */
.hiw-num-badge {
  width: 52px;
  height: 52px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
  border: 3px solid var(--white);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.30);
  position: relative;
  z-index: 2;
  margin: 0 auto;
  /* centres badge within its grid column */
  transition: background 0.3s ease, transform 0.3s ease;
}

/* Dashed connector line between badges */
.hiw-num-connector {
  display: none;
  /* remove from grid flow entirely */
}

/* Arrow at end of each connector */
.hiw-num-connector::after {
  content: '→';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--gold);
  line-height: 1;
}

/* Cards row — directly below number row, same column alignment */
.hiw-cards-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 0;
}

.hiw-step-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: visible;
  background: var(--white);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.hiw-step-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}

/* Photo — clips image only, not icon badge */
.hiw-step-img-wrap {
  position: relative;
  height: 180px;
  overflow: visible;
}

.hiw-step-img-wrap img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  clip-path: inset(0 0 0 0 round 8px 8px 0 0);
  transition: transform 0.5s ease;
}

.hiw-step-card:hover .hiw-step-img-wrap img {
  transform: scale(1.05);
}

/* Icon badge — centred on bottom edge of image */
.hiw-step-icon-badge {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  box-shadow: 0 4px 12px rgba(13, 27, 62, 0.12);
  z-index: 3;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.hiw-step-card:hover .hiw-step-icon-badge {
  background: var(--navy);
  color: var(--gold);
  /* border-color: var(--accent); */
}

/* Card body text */
.hiw-step-body {
  padding: 40px 18px 24px;
  /* top padding makes room for overflowing badge */
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hiw-step-body h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 10px;
}

.hiw-step-body p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

/* ══════════════════════════════════════
   WHAT YOU CAN EXPECT
══════════════════════════════════════ */
.hiw-expect {
  background: var(--off-white);
}

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

.hiw-expect-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px 0;
  border-right: 1px solid var(--border);
}

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

.hiw-expect-icon {
  width: 68px;
  height: 68px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: 18px;
  transition: var(--transition);
}

.hiw-expect-item:hover .hiw-expect-icon {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}

.hiw-expect-item h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.2;
}

.hiw-expect-item p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
}

/* ── Bottom CTA Banner ── */
.hiw-cta-banner {
  background: var(--navy);
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}

.hiw-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='28' fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 80px 80px;
}

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

.hiw-cta-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hiw-cta-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.hiw-cta-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}

.hiw-cta-text p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  max-width: 420px;
  line-height: 1.6;
}

.hiw-cta-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.8px;
  padding: 18px 36px;
  border-radius: var(--radius);
  border: 2px solid var(--accent);
  transition: var(--transition);
}

.hiw-cta-btn:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hiw-cards-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .hiw-num-row {
    display: none;
  }

  /* hide number row on tablet, numbers are on cards */
  .hiw-expect-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .hiw-expect-item {
    border-right: none;
    padding: 0 12px;
  }
}

@media (max-width: 768px) {
  .hiw-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hiw-hero-img {
    height: 260px;
  }

  .hiw-hero-img-overlay {
    background: linear-gradient(180deg, var(--navy) 0%, transparent 50%);
  }

  .hiw-hero-text {
    padding: 60px 24px 48px;
  }

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

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

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

  .hiw-cta-left {
    flex-direction: column;
  }

  .hiw-cta-text p {
    max-width: 100%;
  }
}

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

  .hiw-expect-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================================
   KhaiB Solutions — Our Work Page Styles
   Import this AFTER style.css on our-work.html only
   ============================================================ */

/* ── Page Header ── */
.ow-header {
  padding: 120px 0 56px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.ow-header-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
}

.ow-header-left .eyebrow-dark {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.ow-header-left .eyebrow-dark::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--border);
  max-width: 48px;
  border-radius: 2px;
}

.ow-header-left h1 {
  font-size: clamp(36px, 5vw, 60px);
  color: var(--navy);
  line-height: 1.05;
  font-family: var(--font-display);
  font-weight: 900;
}

.ow-header-right p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
}

/* ── Projects list ── */
.ow-projects {
  background: var(--off-white);
  padding: 48px 0 80px;
}

/* Each project card */
.ow-project-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
  display: grid;
  transition: box-shadow 0.3s ease;
}

.ow-project-card:last-child {
  margin-bottom: 0;
}

.ow-project-card:hover {
  box-shadow: 0 12px 40px rgba(13, 27, 62, 0.12);
}

/* Alternating: image left / image right */
.ow-project-card.img-left {
  grid-template-columns: 400px 1fr;
}

.ow-project-card.img-right {
  grid-template-columns: 1fr 400px;
}

.ow-project-card.img-right .ow-project-img {
  order: 2;
}

.ow-project-card.img-right .ow-project-body {
  order: 1;
}

/* Image column */
.ow-project-img {
  overflow: hidden;
  min-height: 320px;
}

.ow-project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.ow-project-card:hover .ow-project-img img {
  transform: scale(1.04);
}

/* Content column */
.ow-project-body {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Category tag row */
.ow-project-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.ow-project-category svg {
  color: var(--accent);
  flex-shrink: 0;
}

.ow-project-category span {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
}

/* Project title */
.ow-project-body h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 24px;
}

/* Stats row */
.ow-stats-row {
  display: flex;
  align-items: flex-start;
  gap: 68px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.ow-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.ow-stat-icon {
  color: var(--accent);
  margin-bottom: 6px;
}

.ow-stat-num {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.ow-stat-lbl {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.3;
}

/* Divider */
.ow-project-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin-bottom: 20px;
}

/* Description */
.ow-project-body p.ow-desc {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  margin: 0;
}

/* ── CTA Banner ── */
.ow-cta-banner {
  background: var(--navy);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.ow-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 55%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Ccircle cx='1' cy='1' r='0.8' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E") repeat;
}

.ow-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.ow-cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.ow-cta-inner p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 36px;
}

.ow-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 18px 36px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.ow-cta-btn:hover {
  background: #d4a93a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.4);
}

/* ── Responsive ── */
@media (max-width: 1024px) {

  .ow-project-card.img-left,
  .ow-project-card.img-right {
    grid-template-columns: 320px 1fr;
  }
}

@media (max-width: 768px) {
  .ow-header-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ow-project-card.img-left,
  .ow-project-card.img-right {
    grid-template-columns: 1fr;
  }

  .ow-project-card.img-right .ow-project-img {
    order: 0;
  }

  .ow-project-card.img-right .ow-project-body {
    order: 1;
  }

  .ow-project-img {
    min-height: 240px;
  }

  .ow-project-body {
    padding: 28px 24px;
  }

  .ow-stats-row {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .ow-header {
    padding: 100px 0 40px;
  }

  .ow-project-body {
    padding: 24px 20px;
  }

  .ow-stats-row {
    gap: 16px;
  }

  .ow-stat-num {
    font-size: 17px;
  }
}

/* ── Diagonal cut between image and text ── */

/* Image LEFT cards — diagonal cut on RIGHT edge of image */
.ow-project-card.img-left .ow-project-img {
  clip-path: polygon(0 0, 92% 0, 100% 100%, 0 100%);
  margin-right: -40px;
  /* pull image into text column slightly */
  z-index: 1;
}

/* Image RIGHT cards — diagonal cut on LEFT edge of image */
.ow-project-card.img-right .ow-project-img {
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  margin-left: -40px;
  /* pull image into text column slightly */
  z-index: 1;
}

/* Ensure body text column sits above the overlapping image */
.ow-project-body {
  position: relative;
  z-index: 2;
}

/* ============================================================
   KhaiB Solutions — Let's Talk Page Styles
   Import this AFTER style.css on lets-talk.html only
   ============================================================ */

/* ── Hero — full bleed image with text overlay ── */
.lt-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  padding-top: 68px;
  overflow: hidden;
}

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

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

.lt-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
      rgba(9, 21, 42, 0.95) 0%,
      rgba(9, 21, 42, 0.80) 45%,
      rgba(9, 21, 42, 0.30) 100%);
}

.lt-hero-content {
  position: relative;
  z-index: 2;
  padding: 64px 0 72px;
  max-width: 520px;
}

.lt-hero-content .eyebrow {
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.lt-hero-content .eyebrow::after {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.lt-hero-content h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.95;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

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

.lt-hero-line {
  width: 40px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 24px;
}

.lt-hero-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 400px;
}

/* 3 trust pills */
.lt-trust-row {
  display: flex;
  gap: 0;
  align-items: center;
}

.lt-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0 28px 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  margin-right: 28px;
}

.lt-trust-item:last-child {
  border-right: none;
  margin-right: 0;
}

.lt-trust-icon {
  width: 52px;
  height: 52px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.lt-trust-item span {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.3px;
  text-align: center;
}

/* ── Form + Sidebar layout ── */
.lt-body {
  background: var(--off-white);
  padding: 0 0 80px;
}

.lt-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(13, 27, 62, 0.12);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  margin-top: -48px;
  position: relative;
  z-index: 10;
}

/* ── LEFT: Form panel ── */
.lt-form-panel {
  padding: 48px 44px 52px;
  border-right: 1px solid var(--border);
}

.lt-form-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 8px;
}

.lt-form-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.lt-form-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.lt-form-underline {
  width: 40px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 12px 0 20px;
}

.lt-form-desc {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 32px;
}


/* ── RIGHT: Why us sidebar ── */
.lt-sidebar {
  padding: 48px 40px 52px;
  background: var(--white);
  display: flex;
  flex-direction: column;
}

.lt-sidebar h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.lt-sidebar-underline {
  width: 40px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 28px;
}

/* Why us items */
.lt-why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
  flex: 1;
}

.lt-why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.lt-why-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.lt-why-item h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.2;
}

.lt-why-item p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* Contact box at bottom of sidebar */
.lt-contact-box {
  background: var(--navy);
  border-radius: 12px;
  padding: 28px 24px;
  margin-top: auto;
}

.lt-contact-box-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.lt-contact-headset {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.lt-contact-box-top div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

.lt-contact-box-top div span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}

.lt-contact-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.lt-contact-line:last-child {
  margin-bottom: 0;
}

.lt-contact-line-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.lt-contact-line a {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--gold);
  transition: opacity 0.2s ease;
}

.lt-contact-line a:hover {
  opacity: 0.8;
  color: var(--white);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .lt-card {
    grid-template-columns: 1fr;
  }

  .lt-form-panel {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 768px) {
  .lt-hero-content {
    padding: 48px 0 56px;
    max-width: 100%;
  }

  .lt-hero-content h1 {
    font-size: clamp(36px, 8vw, 56px);
  }

  .lt-trust-row {
    gap: 20px;
    flex-wrap: wrap;
  }

  .lt-trust-item {
    padding-right: 20px;
    margin-right: 20px;
  }

  .lt-form-panel {
    padding: 32px 24px;
  }

  .lt-sidebar {
    padding: 32px 24px;
  }

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

  .lt-card {
    margin-top: -24px;
  }
}

@media (max-width: 480px) {
  .lt-hero {
    min-height: 480px;
  }

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

  .lt-form-panel {
    padding: 24px 16px;
  }

  .lt-sidebar {
    padding: 24px 16px;
  }
}

/* ══════════════════════════════════
   OUR WORK — NEW HERO
══════════════════════════════════ */
.ow-hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: stretch;
  padding-top: 68px;
  /* nav height */
  overflow: hidden;
}

/* Full-bleed background photo */
.ow-hero-bg {
  position: absolute;
  inset: 0;
}

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

/* Dark overlay — heavy on left, fades to transparent on right */
.ow-hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      #09152A 0%,
      #09152A 38%,
      rgba(9, 21, 42, 0.92) 48%,
      rgba(9, 21, 42, 0.55) 62%,
      rgba(9, 21, 42, 0.10) 100%);
}

/* Optional: subtle dot-grid texture on the dark left side */
.ow-hero-img-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, transparent 55%);
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, transparent 55%);
}

/* Diagonal cut — clip the overlay so photo shows through cleanly on right */
.ow-hero-img-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  /* background: #09152A; */
  background: linear-gradient(105deg, var(--navy) 0%, var(--blue) 100%);
  clip-path: polygon(0 0, 52% 0, 40% 100%, 0 100%);
}

/* Content sits above all overlay layers */
.ow-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 100%;
}

.ow-hero-text {
  max-width: 580px;
  padding: 72px 0 80px 0;
}

/* Eyebrow */
.ow-hero-eyebrow {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

.ow-hero-eyebrow-line {
  width: 40px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 28px;
}

/* Main headline — huge and bold */
.ow-hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -1px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 28px;
}

/* Gold sub-headline */
.ow-hero-sub {
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.4;
  margin-bottom: 0;
}

/* Short gold divider between sub and desc */
.ow-hero-divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  margin: 24px 0;
}

/* Description */
.ow-hero-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 48px;
}

/* 4 icon pills in a row */
.ow-hero-pills {
  display: flex;
  align-items: center;
  gap: 0;
}

.ow-hero-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: 0 24px 0 0;
}

.ow-hero-pill:last-child {
  padding-right: 0;
}

.ow-hero-pill-icon {
  width: 60px;
  height: 60px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: background 0.3s ease;
}

.ow-hero-pill:hover .ow-hero-pill-icon {
  background: rgba(201, 168, 76, 0.15);
}

.ow-hero-pill span {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  line-height: 1.35;
}

.ow-hero-pill-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
  margin: 0 24px 0 0;
  flex-shrink: 0;
  margin-bottom: 10px;
  /* align with icon centre roughly */
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .ow-hero {
    min-height: auto;
  }

  .ow-hero-img-overlay::after {
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 55%);
    /* horizontal cut on mobile */
  }

  .ow-hero-img-overlay {
    background: linear-gradient(180deg,
        rgba(9, 21, 42, 0.97) 0%,
        rgba(9, 21, 42, 0.92) 50%,
        rgba(9, 21, 42, 0.55) 80%,
        rgba(9, 21, 42, 0.20) 100%);
  }

  .ow-hero-text {
    padding: 56px 0 64px;
    max-width: 100%;
  }

  .ow-hero-text h1 {
    font-size: clamp(52px, 12vw, 80px);
  }

  .ow-hero-pills {
    flex-wrap: wrap;
    gap: 20px;
  }

  .ow-hero-pill {
    padding-right: 0;
    flex: 0 0 calc(50% - 10px);
  }

  .ow-hero-pill-divider {
    display: none;
  }
}

@media (max-width: 480px) {
  .ow-hero-text h1 {
    font-size: clamp(44px, 14vw, 64px);
  }

  .ow-hero-pill {
    flex: 0 0 calc(50% - 10px);
  }
}

/* ============================================================
   WHAT WE HELP BUILD — Section Styles
   Standalone section — include inside any page after style.css
   ============================================================ */

.wwb-section {
  background: #F5F3EE;
  padding: 80px 0;
}

.wwb-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ── */
.wwb-header {
  text-align: center;
  margin-bottom: 52px;
}

.wwb-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

.wwb-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #0D1B3E;
  line-height: 1.1;
  margin-bottom: 20px;
}

/* .wwb-header h2 span {
  border-bottom: 3px solid var(--gold);
  padding-bottom: 2px;
} */

/* .wwb-header p {
  font-size: 16px;
  color: #5A6072;
  line-height: 1.75;
  max-width: 660px;
  margin: 0 auto;
} */

.wwb-header p strong {
  color: #0D1B3E;
  font-weight: 600;
}

/* ── 3x2 category grid ── */
.wwb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.wwb-card {
  background: #FFFFFF;
  border: 1px solid #E2E6F0;
  border-radius: 10px;
  padding: 28px 24px 28px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  align-items: start;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.wwb-card:hover {
  box-shadow: 0 8px 28px rgba(13, 27, 62, 0.10);
  transform: translateY(-3px);
}

.wwb-card-icon {
  width: 72px;
  height: 72px;
  background: #F5F3EE;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wwb-card-icon svg {
  width: 38px;
  height: 38px;
  color: #0D1B3E;
  stroke: #0D1B3E;
}

.wwb-card-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #0D1B3E;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.25;
  margin-bottom: 14px;
}

.wwb-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.wwb-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #5A6072;
  line-height: 1.4;
}

.wwb-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background-color: transparent;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l3 3L9 1' stroke='%23C9A84C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ── Bottom banner row ── */
.wwb-bottom-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 16px;
}

/* Left: have a product card */
.wwb-product-card {
  background: #0D1B3E;
  border-radius: 10px;
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.wwb-product-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  background: rgba(201, 168, 76, 0.15);
  border: 1.5px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.wwb-product-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
}

.wwb-product-text h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
  line-height: 1.15;
}

.wwb-product-text p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  margin: 0;
}

/* Right 3: value props */
.wwb-vp-card {
  background: #FFFFFF;
  border: 1px solid #E2E6F0;
  border-radius: 10px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: box-shadow 0.25s ease;
}

.wwb-vp-card:hover {
  box-shadow: 0 6px 20px rgba(13, 27, 62, 0.08);
}

.wwb-vp-icon {
  color: var(--gold);
}

.wwb-vp-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--gold);
}

.wwb-vp-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #0D1B3E;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
  margin: 0;
}

.wwb-vp-card p {
  font-size: 16px;
  color: #7A8499;
  line-height: 1.6;
  margin: 0;
}

/* ── Footer tagline ── */
.wwb-tagline {
  text-align: center;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.wwb-tagline-icon {
  width: 50px;
  height: 50px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.wwb-tagline-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--gold);
}

.wwb-tagline-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.wwb-tagline-text p {
  font-size: 18px;
  color: #5A6072;
  margin: 0;
}

.wwb-tagline-strong {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0D1B3E;
}

.wwb-tagline-strong::before,
.wwb-tagline-strong::after {
  content: '';
  width: 48px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  display: block;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .wwb-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .wwb-product-card {
    grid-column: 1 / -1;
  }
}

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

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

  .wwb-product-card {
    flex-direction: column;
  }

  .wwb-card {
    grid-template-columns: 1fr;
  }

  .wwb-card-icon {
    width: 56px;
    height: 56px;
  }

  .wwb-tagline {
    flex-direction: column;
  }

  .wwb-tagline-strong {
    font-size: 15px;
  }

  .wwb-tagline-strong::before,
  .wwb-tagline-strong::after {
    width: 28px;
  }
}