/* =========================================================
   LOCAL FONTS (assets/fonts/)
   ========================================================= */
@font-face {
  font-family: 'Satoshi';
  src: url('../assets/fonts/Satoshi-Variable-Bold.woff2') format('woff2-variations'),
       url('../assets/fonts/Satoshi-Variable.woff2') format('woff2'),
       url('../assets/fonts/Satoshi-Variable.ttf') format('truetype');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --brand: #1A51BD;
  --brand-dark: #164499;
  --surface: #0F172A;
  --ink: #1E1E1E;
  --graphite: #24242C;
  --slate-text: #393838;
  --border: #EBEBEB;
  --max-width: 1440px;
  --gutter: 24px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Satoshi', ui-sans-serif, system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #fff;
  
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
}

h1, h2, h3, p, a, span, button {
  -webkit-font-smoothing: antialiased;
  backface-visibility: hidden;
  transform: translateZ(0);
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; margin: 0; padding: 0; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 64px var(--gutter);
}

@media (min-width: 1024px) {
  .section-inner { padding: 88px 88px; }
}

.kicker { font-size: 16px; font-weight: 700; margin: 0; }
.kicker-brand { color: var(--brand); }

.section-kicker-block { display: flex; flex-direction: column; gap: 8px; }
.section-kicker-block.max-w { max-width: 534px; }

.heading-dark, .heading-light {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.35;
  margin: 0;
}
.heading-dark { color: var(--graphite); }
.heading-light { color: #fff; }

@media (min-width: 1024px) {
  .heading-dark, .heading-light { font-size: 36px; line-height: 48.6px; }
}
.slide-up-init,
.slide-up {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.8s cubic-bezier(.2,1,.37,1), transform 0.8s cubic-bezier(.2,1,.37,1);
  will-change: opacity, transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;

}

.slide-up-in,
.slide-up.slide-up-in,
.slide-up.visible,
.slide-up.active {
  opacity: 1;
  transform: none;
}
.body-light { font-size: 16px; font-weight: 500; line-height: 27px; color: #fff; margin: 0; }
.body-dark { font-size: 16px; font-weight: 500; line-height: 27px; color: var(--graphite); margin: 0; }
.body-bold { font-weight: 700; }

@media (min-width: 1024px) {
  .body-light, .body-dark { font-size: 18px; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid transparent;
  box-sizing: border-box;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
  min-width: 148px;
}
.get-started {
  border-radius: 16px;
  padding-left: -20px!important;
  color: #fff!important;
  background: var(--brand);
  border-color: var(--brand);
}
.btn-outline-brand {
  height: 52px;
  padding: 0 28px;
  min-width: 148px;
  box-sizing: border-box;
}
.btn-primary { background: var(--brand); color: #fff; border-color: var(--brand); }
.btn-primary:hover { background: var(--brand-dark); border-color: var(--brand-dark); }
.btn-pill { border-radius: 24px; }
.btn-outline-white { border-color: rgba(255,255,255,.8); color: #fff; }
.btn-outline-white:hover { background: #fff; color: var(--surface); }
.btn-outline-brand { border-color: var(--brand); color: var(--brand); background: transparent; }
.btn-outline-brand:hover { background: var(--brand); color: #fff; }
.btn-hero { text-transform: uppercase; letter-spacing: .03em; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  height: 88px;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

@media (min-width: 1024px) {
  .header-inner { height: 104px; padding: 0 88px; }
}

.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo-mark { flex-shrink: 0; }
.logo-text { line-height: 1; }
.logo-word {
  display: block;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: .06em;
  color: #0F172A;
}
.logo-word-light { color: #fff; }
.logo-sub {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5em;
  color: var(--brand);
}

.nav-desktop { display: none; align-items: center; gap: 8px; }
@media (min-width: 1280px) { .nav-desktop { display: flex; } }

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  transition: color .2s ease;
}
.nav-link:hover { color: var(--brand); }
.nav-link--active { color: var(--brand) !important; font-weight: 700; }
.chevron { flex-shrink: 0; }

/* =========================================================
   NAV DROPDOWN (Solutions / Industries)
   ========================================================= */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(15,23,42,.12);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity .18s ease, transform .18s ease;
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
  display: block;
  padding: 9px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--graphite);
  white-space: nowrap;
  transition: background .15s ease, color .15s ease;
}
.nav-dropdown-item:hover {
  background: #f0f4ff;
  color: var(--brand);
}

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-cta { display: none; width: 168px; }
@media (min-width: 640px) { .header-cta { display: inline-flex; } }

.menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}
@media (min-width: 1280px) { .menu-btn { display: none; } }

.nav-mobile {
  border-top: 1px solid var(--border);
  background: #fff;
  padding: 16px 24px;
}
@media (min-width: 1280px) { .nav-mobile { display: none !important; } }
.nav-mobile ul { display: flex; flex-direction: column; }
.nav-mobile li a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}
.nav-mobile li a:hover { color: var(--brand); }
.mobile-cta { padding-top: 12px; color: #fff; }
.mobile-cta:hover { color: #fff; }
.mobile-cta .btn { width: 100%; }

/* =========================================================
   HERO
   ========================================================= */
/* =========================================================
   HERO (Split Layout & Interactive 3D Glowing Globe)
   ========================================================= */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #070d19;
  background: radial-gradient(circle at 75% 45%, rgba(26, 81, 189, 0.22) 0%, rgba(15, 23, 42, 0.98) 60%), #070d19;
  color: #fff;
  min-height: calc(100vh - 104px);
  display: flex;
  align-items: center;
}

.hero-glow-bg {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70vw;
  height: 70vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.12) 0%, rgba(26, 81, 189, 0.05) 50%, transparent 70%);
  pointer-events: none;
  filter: blur(60px);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 56px var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-inner {
    padding: 64px 88px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    min-height: 680px;
  }
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(26, 81, 189, 0.18);
  border: 1px solid rgba(56, 189, 248, 0.3);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  width: fit-content;
}


@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

.hero-title {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.16;
  color: #fff;
  margin: 0;
  letter-spacing: -0.01em;
}

.title-highlight {
  background: linear-gradient(135deg, #60a5fa 0%, #38bdf8 50%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (min-width: 640px) { .hero-title { font-size: 40px; } }
@media (min-width: 1024px) { .hero-title { font-size: 48px; } }
@media (min-width: 1280px) { .hero-title { font-size: 54px; } }

.hero-body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

@media (min-width: 1024px) { .hero-body { font-size: 17px; } }

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding-top: 8px;
}

.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  flex-wrap: wrap;
}

.hero-stat-pill {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-value {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-stat-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.15);
}

/* Globe Container */
.hero-globe-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
  opacity: 0.55;
  pointer-events: auto;
}

.hero-text {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 640px;
}

@media (min-width: 1024px) {
  .hero-globe-container {
    position: relative;
    inset: auto;
    width: 100%;
    height: 680px;
    opacity: 1;
    z-index: 2;
  }
}

/* Globe Placeholder Circle before globe loads */
.globe-placeholder-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--brand, #1A51BD) 0%, var(--brand-dark, #164499) 70%, #070d19 100%);
  box-shadow: 0 0 60px rgba(26, 81, 189, 0.45), inset 0 0 40px rgba(22, 68, 153, 0.7);
  pointer-events: none;
  transition: opacity 1.8s ease-in-out;
  z-index: 1;
}

@media (min-width: 640px) {
  .globe-placeholder-circle { width: 340px; height: 340px; }
}

@media (min-width: 1024px) {
  .globe-placeholder-circle { width: 420px; height: 420px; }
}

.globe-canvas {
  width: 100%;
  height: 100%;
  cursor: grab;
  position: relative;
  z-index: 2;
}

.globe-canvas canvas {
  width: 100% !important;
  height: 100% !important;
  outline: none;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}

.globe-canvas canvas.globe-loaded {
  opacity: 1;
}

/* =========================================================
   WHO WE ARE
   ========================================================= */
.who-we-are { background: var(--surface); }
.who-we-are-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .who-we-are-grid { grid-template-columns: 1fr 1fr; gap: 90px; }
}
.who-we-are-img { width: 100%; height: 320px; object-fit: cover; border-radius: 2px; }
@media (min-width: 1024px) { .who-we-are-img { height: 517px; } }

.who-we-are-content { display: flex; flex-direction: column; gap: 24px; }
.who-we-are-copy { display: flex; flex-direction: column; gap: 24px; }
.ambition { display: flex; flex-direction: column; gap: 8px; }

/* =========================================================
   SERVICES
   ========================================================= */
.services { background: #fff; }
.services-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
@media (min-width: 1024px) {
  .services-header { flex-direction: row; align-items: center; }
}

.services-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: 1fr 1fr 1fr; } }

.service-card {
  position: relative;
  display: block;
  height: 300px;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
@media (min-width: 1024px) { .service-card { height: 360px; } }
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover img { transform: scale(1.05); }
.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,.85), rgba(15,23,42,.25) 55%, transparent 100%);
}
.service-title {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  font-size: 20px;
  font-weight: 700;
  line-height: 27px;
  color: #fff;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials { background: #fff; }
.testimonials-kicker {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink);
  margin: 0;
}

.testimonials-row {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media (min-width: 1024px) { .testimonials-row { gap: 64px; } }

.circle-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #F8FAFC;
  border: none;
  color: #000;
  cursor: pointer;
  transition: background-color .2s ease;
}
.circle-btn:hover { background: #E2E8F0; }
@media (min-width: 1024px) { .circle-btn { width: 56px; height: 56px; } }

.testimonial-viewport {
  position: relative;
  min-height: 330px;
  flex: 1;
  overflow: hidden;
}
@media (min-width: 640px) { .testimonial-viewport { min-height: 300px; } }

.testimonial-figure {
  margin: 0 auto;
  max-width: 686px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  transition: opacity .4s ease;
}

.testimonial-quote {
  font-size: 18px;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
}
@media (min-width: 1024px) { .testimonial-quote { font-size: 24px; line-height: 32.4px; } }

.testimonial-caption { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testimonial-name { font-size: 16px; font-weight: 700; color: var(--ink); }
.testimonial-role { font-size: 16px; color: var(--ink); text-align: center; }

.testimonial-dots {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.testimonial-dot {
  height: 8px;
  width: 8px;
  border-radius: 999px;
  background: #D9D9D9;
  border: none;
  cursor: pointer;
  transition: all .2s ease;
}
.testimonial-dot:hover { background: #B4B4B4; }
.testimonial-dot.active { width: 24px; background: #000; }

/* =========================================================
   FOUNDER
   ========================================================= */
.founder { background: var(--surface); }
.founder-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
@media (min-width: 1024px) {
  .founder-grid { flex-direction: row; align-items: center; gap: 51px; }
}
.founder-img {
  width: 100%;
  max-width: 400px;
  height: 360px;
  object-fit: cover;
  border-radius: 8px;
}
@media (min-width: 1024px) { .founder-img { height: 400px; } }

.founder-content { flex: 1; display: flex; flex-direction: column; gap: 32px; }
.founder-header { display: flex; align-items: center; gap: 16px; }
.founder-kicker { font-size: 16px; font-weight: 700; color: var(--brand); letter-spacing: 0.05em; margin: 0; }
.founder-copy { display: flex; flex-direction: column; gap: 18px; }
.founder-sign { display: flex; flex-direction: column; gap: 12px; }
.founder-name { font-size: 18px; font-weight: 700; color: #fff; margin: 0; }
.founder-title-block { display: flex; flex-direction: column; gap: 2px; }
.founder-title { font-size: 16px; font-weight: 500; font-style: italic; color: #fff; margin: 0; }

/* =========================================================
   GLOBAL REACH
   ========================================================= */
.global-reach { background: #fff; }
.global-grid {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
}
@media (min-width: 1024px) {
  .global-grid { flex-direction: row; gap: 64px; }
}

.global-list-wrap { width: 100%; max-width: 380px; display: flex; flex-direction: column; gap: 16px; }
.global-list { display: flex; flex-direction: column; gap: 4px; }

.global-item {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 12px;
  border-radius: 8px;
  padding: 8px 12px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: background-color .2s ease;
}
.global-item:hover { background: #F8FAFC; }
.global-item.active { background: #F1F5FB; }

.global-dot {
  height: 10px;
  width: 10px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #CBD5E1;
  transition: all .2s ease;
}
.global-item.active .global-dot {
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(26,81,189,.18);
}

.global-item-text { display: flex; flex-direction: column; }
.global-region { font-size: 16px; line-height: 24px; color: var(--graphite); }
.global-item.active .global-region { font-weight: 700; color: var(--brand); }
.global-city { font-size: 14px; color: var(--slate-text); display: none; }
.global-item.active .global-city { display: block; }

.global-map-wrap { position: relative; width: 100%; flex: 1; }
.global-map { width: 100%; object-fit: contain; }

.global-pin-wrap { position: absolute; }
.global-pin-btn {
  position: relative;
  margin-left: -12px;
  margin-top: -12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.global-pin-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(26,81,189,.3);
  animation: pinPulse 2.6s ease-out infinite;
}
.global-pin-pulse.hq { background: rgba(225,29,72,.3); }
.global-pin-pulse.active { animation-duration: 1.6s; }
@keyframes pinPulse {
  0% { transform: scale(1); opacity: .5; }
  50% { transform: scale(2.1); opacity: 0; }
  100% { transform: scale(1); opacity: .5; }
}
.global-pin-dot {
  position: relative;
  display: block;
  border-radius: 50%;
  background: var(--brand);
  height: 10px;
  width: 10px;
  box-shadow: 0 0 10px 3px rgba(26,81,189,.25);
  transition: all .3s ease;
}
.global-pin-dot.hq { background: #E11D48; }
.global-pin-dot.active {
  height: 14px;
  width: 14px;
  box-shadow: 0 0 18px 6px rgba(26,81,189,.45);
}

.global-tooltip {
  pointer-events: none;
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: max-content;
  max-width: 220px;
  border-radius: 8px;
  background: var(--surface);
  padding: 8px 12px;
  text-align: left;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  display: none;
}
.global-tooltip.show { display: block; }
.global-tooltip p { margin: 0; }
.global-tooltip-city { font-size: 14px; font-weight: 700; line-height: 20px; color: #fff; }
.global-tooltip-detail { font-size: 12px; line-height: 16px; color: rgba(255,255,255,.75); }
.global-tooltip-hq {
  margin-top: 4px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #F87171;
}

/* =========================================================
   CTA
   ========================================================= */
.cta-section { background: #fff; }
.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (min-width: 1024px) { .cta-inner { padding-top: 144px; padding-bottom: 144px; } }

.cta-copy { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.cta-heading {
  max-width: 600px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--brand);
  margin: 0;
}
@media (min-width: 1024px) { .cta-heading { font-size: 36px; line-height: 48.6px; } }

.cta-body {
  max-width: 820px;
  font-size: 16px;
  font-weight: 500;
  line-height: 27px;
  color: var(--slate-text);
  margin: 0;
}
@media (min-width: 1024px) { .cta-body { font-size: 18px; } }

.cta-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 24px; }
.cta-actions .btn { min-width: 235px; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--surface); }
.footer-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 56px;
}
@media (min-width: 1024px) {
  .footer-inner { flex-direction: row; gap: 56px; }
}

.footer-brand { max-width: 387px; display: flex; flex-direction: column; gap: 40px; }
@media (min-width: 1024px) { .footer-brand { gap: 58px; } }
.footer-brand-copy { display: flex; flex-direction: column; gap: 24px; }
.footer-brand-name { font-size: 20px; font-weight: 700; line-height: 30px; color: #fff; margin: 0; }
.footer-line { font-size: 14px; font-weight: 500; line-height: 21px; color: #fff; margin: 0 0 8px; }
.footer-line-bold { font-weight: 700; margin-bottom: 0; }

.footer-columns { display: flex; flex-direction: column; gap: 40px; }
@media (min-width: 640px) { .footer-columns { flex-direction: row; gap: 48px; } }

.footer-col-heading { font-size: 20px; font-weight: 700; line-height: 30px; color: #fff; margin: 0 0 32px; }
.footer-list { display: flex; flex-direction: column; gap: 8px; }
.footer-list li { font-size: 14px; font-weight: 500; line-height: 21px; color: #fff; }
.footer-list a { color: #fff; transition: color .2s ease; }
.footer-list a:hover { color: var(--brand); }

/* =========================================================
   ABOUT PAGE
   ========================================================= */

/* About Hero */
.about-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
}
.about-hero-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}
@media (min-width: 768px) { .about-hero-img { height: 460px; } }
@media (min-width: 1024px) { .about-hero-img { height: 544px; } }

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.25);
}

.about-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}
.about-hero-content {
  padding: 0 var(--gutter);
}
@media (min-width: 1024px) { .about-hero-content { padding: 0 88px; } }

.about-hero-kicker {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  color: var(--brand);
  margin: 0 0 16px;
}

.about-hero-title {
  max-width: 900px;
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
  color: #fff;
  margin: 0;
}
@media (min-width: 768px) { .about-hero-title { font-size: 44px; line-height: 58px; } }

/* About Intro */
.about-intro { background: #fff; }
.about-intro-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 56px;
  padding-bottom: 56px;
}
@media (min-width: 1024px) {
  .about-intro-inner { flex-direction: row; gap: 162px; }
}

.about-intro-heading {
  flex-shrink: 0;
  font-size: 28px;
  font-weight: 500;
  line-height: 40px;
  color: #333333;
  margin: 0;
}
@media (min-width: 768px) { .about-intro-heading { font-size: 36px; line-height: 52px; } }
@media (min-width: 1024px) { .about-intro-heading { width: 374px; } }
.hide-mobile { display: none; }
@media (min-width: 768px) { .hide-mobile { display: inline; } }

.about-intro-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1024px) { .about-intro-copy { max-width: 728px; } }
.about-intro-copy .body-dark { font-size: 18px; line-height: 27px; }

/* Values Section Setup */
.values {
  background: #fff;
}

.values-heading {
  text-align: center;
  font-size: 28px;
  font-weight: 500;
  line-height: 40px;
  color: var(--graphite, #1f2937);
  margin: 0;
}

@media (min-width: 768px) {
  .values-heading {
    font-size: 36px;
    line-height: 48.6px;
  }
}

/* Grid Layout */
.values-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
  list-style: none;
  padding: 0;
}

@media (min-width: 640px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(5, 1fr);
    margin-top: 64px;
  }
}

/* --------------------------------------
   3D Flip Card Styles
-------------------------------------- */

/* Container acts as the 3D Perspective viewport */
.value-item {
  background: transparent;
  min-height: 220px;
  perspective: 1000px;
  cursor: pointer;
}

/* 3D Wrapper that handles rotation */
.value-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s cubic-bezier(0.4, 0.2, 0.2, 1);
  transform-style: preserve-3d;
}

/* Trigger flip on hover & focus (desktop) */
@media (hover: hover) {
  .value-item:hover .value-card-inner,
  .value-item:focus-within .value-card-inner {
    transform: rotateY(180deg);
  }
}
/* Touch: tap toggles flipped state */
.value-item.is-flipped .value-card-inner {
  transform: rotateY(180deg);
}

/* Shared properties for Front & Back faces */
.value-face {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* FRONT FACE */
.value-front {
  background: #ffffff;
  border: 1px solid var(--border, #e5e7eb);
  color: #1f2937;
}

.value-icon {
  width: 42px;
  height: 42px;
  color: #2563eb;
  margin-bottom: 16px;
}

.value-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

/* BACK FACE */
.value-back {
  background: #2563eb;
  color: #ffffff;
  transform: rotateY(180deg);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.25);
}

.value-title-back {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px 0;
}

.value-description {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}
/* What Drives Us */
.drives-us { background: var(--surface); }
.drives-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 1024px) {
  .drives-inner { flex-direction: row; justify-content: space-between; gap: 171px; }
}
.drives-heading {
  flex-shrink: 0;
  font-size: 28px;
  font-weight: 500;
  line-height: 40px;
  color: #fff;
  margin: 0;
}
@media (min-width: 768px) { .drives-heading { font-size: 36px; line-height: 48.6px; } }

.drives-pillars {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) { .drives-pillars { flex-direction: row; gap: 96px; } }
@media (min-width: 1024px) { .drives-pillars { max-width: 842px; } }

.drives-pillar { display: flex; flex-direction: column; gap: 16px; }
@media (min-width: 768px) { .drives-pillar { width: 340px; } }
.drives-pillar-title { font-size: 18px; font-weight: 700; line-height: 27px; color: #fff; margin: 0; }
.drives-pillar-body { font-size: 16px; line-height: 24px; color: rgba(255,255,255,.9); margin: 0; }

/* =========================================================
   SOLUTIONS PAGE
   ========================================================= */
.solutions-page { background: #F8FAFC; }

/* Solutions Hero */
.solutions-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--surface);
}
.solutions-hero-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center center;
}
@media (min-width: 768px) { .solutions-hero-img { height: 544px; object-position: center top; } }

.solutions-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,.5);
}
@media (min-width: 768px) { .solutions-hero-overlay { background: transparent; } }

.solutions-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 var(--gutter);
}
@media (min-width: 1024px) { .solutions-hero-content { padding: 0 88px; } }

.solutions-hero-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 690px;
}
.solutions-hero-title {
  max-width: 623px;
  font-size: 32px;
  font-weight: 500;
  line-height: 42px;
  color: #fff;
  margin: 0;
}
@media (min-width: 768px) { .solutions-hero-title { font-size: 44px; line-height: 58px; } }

.solutions-hero-body {
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  color: #fff;
  margin: 0;
}
@media (min-width: 768px) { .solutions-hero-body { font-size: 20px; } }

.solutions-hero-btn { min-width: 188px; }

/* Solution cards */
.solution-cards {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 64px var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media (min-width: 1024px) {
  .solution-cards { padding: 64px 88px; gap: 124px; }
}

.solution-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #fff;
  padding: 32px 24px;
}
@media (min-width: 768px) { .solution-card { padding: 48px 40px; } }
@media (min-width: 1024px) {
  .solution-card { flex-direction: row; gap: 100px; }
  .solution-card.reversed { flex-direction: row-reverse; }
}

.solution-media {
  width: 100%;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #D48F8F;
}
@media (min-width: 1024px) { .solution-media { width: 537px; } }
.solution-media img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
@media (min-width: 768px) { .solution-media img { height: 400px; } }
@media (min-width: 1024px) { .solution-media img { height: 517px; } }

.solution-content { display: flex; flex-direction: column; gap: 32px; width: 100%; }
@media (min-width: 1024px) { .solution-content { width: 537px; } }

.solution-content-head { display: flex; flex-direction: column; gap: 8px; }
.solution-title {
  font-size: 28px;
  font-weight: 500;
  line-height: 38px;
  color: #333333;
  margin: 0;
}
@media (min-width: 768px) { .solution-title { font-size: 36px; line-height: 48.6px; } }
.solution-desc { font-size: 18px; line-height: 27px; color: #333333; margin: 0; }

.solution-services { display: flex; flex-direction: column; gap: 16px; }
.solution-services-heading { font-size: 20px; font-weight: 500; line-height: 30px; color: #333333; margin: 0; }
.solution-list { display: flex; flex-direction: column; gap: 8px; list-style: disc; padding-left: 20px; }
.solution-list li { font-size: 16px; line-height: 24px; color: #333333; }

/* Solutions CTA */
.solutions-cta {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--surface);
}
.solutions-cta-img { width: 100%; height: 400px; object-fit: cover; }
.solutions-cta-overlay { position: absolute; inset: 0; background: rgba(15,23,42,.6); }
.solutions-cta-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 0 var(--gutter);
  text-align: center;
}
.solutions-cta-heading {
  font-size: 28px;
  font-weight: 500;
  line-height: 40px;
  color: #fff;
  margin: 0;
}
@media (min-width: 768px) { .solutions-cta-heading { font-size: 36px; line-height: 48.6px; } }
.solutions-cta-body {
  max-width: 420px;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  color: #fff;
  margin: -16px 0 0;
}

/* =========================================================
   INDUSTRIES PAGE
   ========================================================= */
.industries-page { background: #fff; }

/* Industries Hero */
.industries-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--surface);
}
.industries-hero-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
@media (min-width: 768px) { .industries-hero-img { height: 544px; } }

.industries-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,.6);
}
@media (min-width: 768px) {
  .industries-hero-overlay {
    background: linear-gradient(to right, var(--surface) 0%, rgba(15,23,42,.7) 55%, transparent 100%);
  }
}

.industries-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 var(--gutter);
}
@media (min-width: 1024px) { .industries-hero-content { padding: 0 88px; } }

.industries-hero-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 623px;
}
.industries-hero-title {
  font-size: 32px;
  font-weight: 500;
  line-height: 42px;
  color: #fff;
  margin: 0;
}
@media (min-width: 768px) { .industries-hero-title { font-size: 44px; line-height: 58px; } }

.industries-hero-body {
  max-width: 567px;
  font-size: 16px;
  font-weight: 500;
  line-height: 27px;
  color: #fff;
  margin: 0;
}
@media (min-width: 768px) { .industries-hero-body { font-size: 18px; } }

.industries-hero-btn { min-width: 188px; }

/* Industries grid section */
.industries-grid-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 64px var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (min-width: 1024px) { .industries-grid-section { padding: 64px 88px; } }

.industries-heading {
  text-align: center;
  font-size: 28px;
  font-weight: 500;
  line-height: 40px;
  color: var(--graphite);
  margin: 0;
}
@media (min-width: 768px) { .industries-heading { font-size: 36px; line-height: 48.6px; } }

.industries-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}
@media (min-width: 640px) { .industries-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .industries-grid { grid-template-columns: repeat(4, 1fr); } }

.industry-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
  background: #000;
  height: 360px;
  transform: translateY(0);
  box-shadow: 0 2px 12px rgba(0,0,0,.18);
  transition: transform .3s cubic-bezier(.2,1,.37,1), box-shadow .3s cubic-bezier(.2,1,.37,1);
}
.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.32);
}
@media (min-width: 1024px) {
  .industry-card--financial-services { height: 480px; }
  .industry-card--healthcare { height: 440px; align-self: start; }
  .industry-card--retail { height: 488px; }
  .industry-card--technology { height: 488px; align-self: start; }
  .industry-card--telecom { height: 408px; align-self: center; }
  .industry-card--manufacturing { height: 448px; }
  .industry-card--travel { height: 408px; align-self: center; }
  .industry-card--government { height: 408px; align-self: center; }
}

.industry-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .4s cubic-bezier(.2,1,.37,1);
}
.industry-card:hover img {
  transform: scale(1.04);
}
@media (max-width: 767px) {
  .industry-card img { object-position: center center; }
}
.industry-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85), rgba(0,0,0,.4) 55%, rgba(0,0,0,.1) 100%);
}
.industry-card-text {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.industry-card-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 32.4px;
  color: #fff;
}
.industry-card-desc {
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  color: #fff;
}

/* Industries CTA */
.industries-cta-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter) 64px;
}
@media (min-width: 1024px) { .industries-cta-section { padding: 0 88px 64px; } }

.industries-cta-panel {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 16px;
  background: var(--surface);
}
@media (min-width: 1024px) { .industries-cta-panel { flex-direction: row; } }

.industries-cta-copy {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 48px 24px;
}
@media (min-width: 1024px) {
  .industries-cta-copy { padding: 102px 88px; width: 624px; flex-shrink: 0; }
}

.industries-cta-text { display: flex; flex-direction: column; gap: 16px; }
.industries-cta-heading {
  font-size: 28px;
  font-weight: 700;
  line-height: 38px;
  color: #fff;
  margin: 0;
}
@media (min-width: 768px) { .industries-cta-heading { font-size: 36px; line-height: 48.6px; } }
.industries-cta-body {
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  color: #fff;
  margin: 0;
}

.industries-cta-media { width: 100%; }
@media (min-width: 1024px) { .industries-cta-media { flex: 1; } }
.industries-cta-media img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
@media (min-width: 1024px) { .industries-cta-media img { height: 452px; } }

/* =========================================================
   APPROACH PAGE (How We Work)
   ========================================================= */
.approach-page { background: #fff; }

.approach-section-head { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.approach-eyebrow { font-size: 20px; font-weight: 700; line-height: 30px; color: var(--brand); margin: 0; }
.approach-heading {
  font-size: 28px;
  font-weight: 500;
  line-height: 40px;
  color: #333333;
  margin: 0;
}
@media (min-width: 768px) { .approach-heading { font-size: 36px; line-height: 48.6px; } }

/* Approach Hero */
.approach-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
}
.approach-hero-img { width: 100%; height: 380px; object-fit: cover; }
@media (min-width: 768px) { .approach-hero-img { height: 460px; } }
@media (min-width: 1024px) { .approach-hero-img { height: 544px; } }

.approach-hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.3); }

.approach-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 0 var(--gutter);
}
@media (min-width: 1024px) { .approach-hero-content { padding: 0 88px; } }

.approach-hero-kicker { font-size: 20px; font-weight: 700; line-height: 30px; color: var(--brand); margin: 0; }
.approach-hero-title {
  max-width: 600px;
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
  color: #fff;
  margin: 0;
}
@media (min-width: 768px) { .approach-hero-title { font-size: 44px; line-height: 58px; } }

/* Engagement Models */
.engagement { background: #fff; }
.engagement-inner { display: flex; flex-direction: column; }

.engagement-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) { .engagement-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .engagement-grid { grid-template-columns: repeat(3, 1fr); margin-top: 64px; gap: 32px 60px; } }

.engagement-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 4px;
  background: #F8FAFC;
  padding: 24px;
}
.engagement-card-top { display: flex; gap: 20px; }
.engagement-icon { flex-shrink: 0; color: var(--brand); }
.engagement-card-text { display: flex; flex-direction: column; gap: 8px; }
.engagement-card-title { font-size: 16px; font-weight: 700; line-height: 24px; color: #333333; margin: 0; }
.engagement-card-desc { font-size: 14px; line-height: 18.9px; color: #333333; margin: 0; }
.engagement-card-foot { margin-top: auto; display: flex; flex-direction: column; gap: 8px; }
.engagement-divider { display: block; height: 1px; width: 100%; background: var(--border); }
.engagement-ideal { font-size: 12px; line-height: 16.2px; color: #333333; margin: 0; }
.engagement-ideal-label { font-weight: 500; color: var(--brand); }

/* Methodology / How We Work */
.methodology { background: #fff; }
.methodology-inner { display: flex; flex-direction: column; }

.methodology-timeline {
  position: relative;
  margin: 48px auto 0;
  max-width: 1040px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  list-style: none;
  padding: 0;
}
@media (min-width: 1024px) {
  .methodology-timeline { margin-top: 64px; gap: 64px; }
}

/* vertical connector line, desktop only */
@media (min-width: 1024px) {
  .methodology-timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 24px;
    bottom: 24px;
    width: 1px;
    transform: translateX(-50%);
    background: #E5E7EB;
  }
}

.methodology-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
@media (min-width: 1024px) {
  .methodology-step {
    display: grid;
    grid-template-columns: 1fr 48px 1fr;
    column-gap: 0;
    align-items: center;
  }
}

.methodology-node {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--brand);
  background: #fff;
  z-index: 2;
}
.methodology-node span {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brand);
}

@media (min-width: 1024px) {
  .methodology-node { grid-column: 2; justify-self: center; }
}

/* Dotted horizontal connector lines */
.methodology-connector {
  display: none;
}
@media (min-width: 1024px) {
  .methodology-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    z-index: 1;
  }
  .methodology-connector span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #CBD5E1;
  }
  .methodology-step--right .methodology-connector {
    grid-column: 3;
    grid-row: 1;
    justify-self: start;
    margin-left: -28px;
    margin-right: 16px;
  }
  .methodology-step--left .methodology-connector {
    grid-column: 1;
    grid-row: 1;
    justify-self: end;
    margin-right: -28px;
    margin-left: 16px;
  }
}

.methodology-content { display: flex; flex-direction: column; gap: 4px; }
@media (min-width: 1024px) {
  .methodology-step--right .methodology-content {
    grid-column: 3;
    text-align: left;
    padding-left: 56px;
    max-width: 460px;
  }
  .methodology-step--left .methodology-content {
    grid-column: 1;
    grid-row: 1;
    text-align: left;
    padding-right: 56px;
    max-width: 460px;
    justify-self: end;
  }
}

.methodology-step-title {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.3;
  color: #1E293B;
  margin: 0;
}
.methodology-step-subtitle {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: var(--brand);
  margin: 2px 0 6px;
}
.methodology-step-desc {
  font-size: 15px;
  line-height: 23px;
  color: #475569;
  margin: 0;
}

/* Approach CTA */
.approach-cta-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter) 64px;
}
@media (min-width: 1024px) { .approach-cta-section { padding: 0 88px 64px; } }

.approach-cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: var(--surface);
}
.approach-cta-img { width: 100%; height: 420px; object-fit: cover; }
@media (min-width: 1024px) { .approach-cta-img { height: 452px; } }
.approach-cta-overlay { position: absolute; inset: 0; background: rgba(15,23,42,.7); }

.approach-cta-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 var(--gutter);
}
@media (min-width: 1024px) { .approach-cta-content { padding: 0 88px; } }

.approach-cta-text { display: flex; flex-direction: column; gap: 8px; max-width: 600px; }
.approach-cta-heading { font-size: 28px; font-weight: 700; line-height: 38px; color: #fff; margin: 0; }
@media (min-width: 768px) { .approach-cta-heading { font-size: 36px; line-height: 48.6px; } }
.approach-cta-body { font-size: 18px; font-weight: 500; line-height: 27px; color: #fff; margin: 0; }

.approach-cta-actions {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
@media (min-width: 640px) { .approach-cta-actions { flex-direction: row; align-items: center; gap: 32px; } }

.approach-cta-content > .approach-cta-text { margin-bottom: 0; }


/* =========================================================
   CAREERS PAGE
   ========================================================= */
.careers-page { background: #fff; }
 
/* Careers Hero */
.careers-hero { background: #fff; }
.careers-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
@media (min-width: 1024px) { .careers-hero-inner { flex-direction: row; gap: 92px; } }
 
.careers-hero-copy { display: flex; flex-direction: column; gap: 40px; width: 100%; }
@media (min-width: 1024px) { .careers-hero-copy { max-width: 537px; } }
.careers-hero-heading-block { display: flex; flex-direction: column; gap: 16px; }
.careers-hero-title {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
  color: #333333;
  margin: 0;
}
@media (min-width: 1024px) { .careers-hero-title { font-size: 44px; line-height: 58px; } }
.careers-hero-body { font-size: 16px; line-height: 27px; color: #333333; margin: 0; }
@media (min-width: 1024px) { .careers-hero-body { font-size: 18px; } }
.careers-hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
@media (min-width: 1024px) { .careers-hero-actions { gap: 24px; } }
.careers-outline-black { border-color: #000; color: #333333; }
.careers-outline-black:hover { background: #F8FAFC; color: #333333; }
 
.careers-hero-collage {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (min-width: 1024px) { .careers-hero-collage { width: 635px; gap: 11px; } }
 
.careers-collage-tall { height: 300px; overflow: hidden; }
@media (min-width: 1024px) { .careers-collage-tall { height: 496px; } }
.careers-collage-tall img { width: 100%; height: 100%; object-fit: cover; }
 
.careers-collage-stack { display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 1024px) { .careers-collage-stack { gap: 19px; } }
.careers-collage-top { height: 170px; overflow: hidden; }
@media (min-width: 1024px) { .careers-collage-top { height: 292px; } }
.careers-collage-bottom { height: 118px; overflow: hidden; }
@media (min-width: 1024px) { .careers-collage-bottom { height: 185px; } }
.careers-collage-top img, .careers-collage-bottom img { width: 100%; height: 100%; object-fit: cover; }
 
/* Why Work */
.why-work { background: #fff; }
.why-work-eyebrow { font-size: 20px; font-weight: 700; line-height: 30px; color: var(--brand); margin: 0; }
 
.benefits-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) { .benefits-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); margin-top: 64px; gap: 32px 60px; } }
 
.benefit-card {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 200px;
  border-radius: 4px;
  background: #F8FAFC;
  padding: 24px;
  transition: box-shadow .2s ease;
}
.benefit-card:hover { box-shadow: 0 4px 20px rgba(26,81,189,.25); }
.benefit-icon { flex-shrink: 0; color: var(--brand); }
.benefit-text { display: flex; flex-direction: column; gap: 8px; }
.benefit-title { font-size: 16px; font-weight: 700; line-height: 24px; color: #333333; margin: 0; }
.benefit-desc { font-size: 14px; line-height: 18.9px; color: #333333; margin: 0; }
 
/* Culture */
.culture { background: var(--surface); }
.culture-eyebrow { font-size: 16px; font-weight: 700; line-height: 24px; color: var(--brand); margin: 0; }
.culture-heading { font-size: 28px; font-weight: 700; line-height: 48.6px; color: #fff; margin: 0; }
@media (min-width: 1024px) { .culture-heading { font-size: 36px; } }
 
.culture-grid {
  margin: 40px 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 640px) { .culture-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .culture-grid { grid-template-columns: repeat(4, 1fr); gap: 48px 90px; margin-top: 48px; } }
 
.culture-item { display: flex; flex-direction: column; gap: 8px; }
.culture-letter { font-size: 32px; font-weight: 700; line-height: 43.2px; color: var(--brand); }
.culture-title { font-size: 18px; font-weight: 700; line-height: 27px; color: #fff; margin: 0; }
.culture-desc { font-size: 14px; font-weight: 500; line-height: 21px; color: #FAFAFA; margin: 0; }
 
/* Learning & Development */
.learning { background: #fff; }
.learning-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (min-width: 1024px) { .learning-inner { flex-direction: row; justify-content: space-between; gap: 155px; } }
 
.learning-copy { display: flex; flex-direction: column; gap: 24px; width: 100%; }
@media (min-width: 1024px) { .learning-copy { max-width: 593px; } }
.learning-eyebrow { font-size: 16px; font-weight: 500; line-height: 24px; color: var(--brand); margin: 0; }
.learning-heading-block { display: flex; flex-direction: column; gap: 8px; }
.learning-heading { font-size: 28px; font-weight: 500; line-height: 1.4; color: #333333; margin: 0; }
@media (min-width: 1024px) { .learning-heading { font-size: 36px; } }
.learning-body { font-size: 16px; line-height: 27px; color: #333333; margin: 0; }
@media (min-width: 1024px) { .learning-body { font-size: 18px; } }
 
.learning-qualities { display: flex; flex-direction: column; gap: 24px; width: 100%; }
@media (min-width: 1024px) { .learning-qualities { max-width: 516px; padding-top: 48px; } }
.learning-qualities-heading { font-size: 20px; font-weight: 700; line-height: 30px; color: #333333; margin: 0; }
 
.qualities-list { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .qualities-list { grid-template-columns: 1fr 1fr; column-gap: 48px; } }
.qualities-list li { display: flex; align-items: center; gap: 8px; }
.qualities-list svg { flex-shrink: 0; color: var(--brand); }
.qualities-list span { font-size: 16px; line-height: 24px; color: #333333; }
 
/* Open Positions */
.open-positions { background: #F8FAFC; }
.open-positions-eyebrow { font-size: 20px; font-weight: 700; line-height: 30px; color: var(--brand); margin: 0; }
 
.positions-layout {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 1024px) { .positions-layout { flex-direction: row; justify-content: space-between; gap: 98px; margin-top: 56px; } }
 
.positions-tabs {
  display: flex;
  flex-direction: row;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  flex-shrink: 0;
  width: 100%;
}
@media (min-width: 1024px) { .positions-tabs { flex-direction: column; width: 268px; overflow: visible; padding-bottom: 0; } }
 
.positions-tab {
  height: 56px;
  flex-shrink: 0;
  white-space: nowrap;
  border-radius: 8px;
  padding: 0 16px;
  font-size: 18px;
  color: #333333;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease;
}
.positions-tab:hover { background: #fff; }
.positions-tab.active { background: #1E1E1E; color: #fff; }
 
.positions-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #fff;
  padding: 24px;
}
@media (min-width: 1024px) { .positions-panel { max-width: 898px; padding: 40px; } }
 
.positions-panel-title { font-size: 24px; font-weight: 500; line-height: 37.8px; color: #333333; margin: 0; }
@media (min-width: 1024px) { .positions-panel-title { font-size: 28px; } }
 
.positions-roles { display: grid; grid-template-columns: 1fr; gap: 20px; list-style: none; padding: 0; margin: 0; }
@media (min-width: 768px) { .positions-roles { grid-template-columns: 1fr 1fr; column-gap: 24px; } }
 
.positions-role {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 56px;
  border-radius: 8px;
  border: 1px solid var(--border);
  padding: 0 16px;
  color: #333333;
  transition: border-color .2s ease, color .2s ease;
}
.positions-role:hover { border-color: var(--brand); color: var(--brand); }
.positions-role span { font-size: 16px; line-height: 27px; }
@media (min-width: 1024px) { .positions-role span { font-size: 18px; } }
.positions-role svg { flex-shrink: 0; }
 
/* Recruitment Process */
.recruitment { background: #fff; }
.recruitment-eyebrow { font-size: 20px; font-weight: 700; line-height: 30px; color: var(--brand); margin: 0; }
 
.recruitment-steps {
  margin: 40px 0 0;
  display: grid;
  grid-template-columns: 1fr;
  list-style: none;
  padding: 0;
}
@media (min-width: 768px) { .recruitment-steps { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .recruitment-steps { grid-template-columns: repeat(3, 1fr); margin-top: 56px; } }
 
.recruitment-step {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 1024px) {
  .recruitment-step { min-height: 144px; padding-right: 32px; }
  .recruitment-step:nth-child(3n+1),
  .recruitment-step:nth-child(3n+2) { border-right: 1px solid var(--border); }
  .recruitment-step:nth-child(-n+3) { border-bottom: 1px solid var(--border); }
  .recruitment-step:nth-child(n+4) { border-bottom: none; }
}
 
.recruitment-step-label { font-size: 12px; font-weight: 500; letter-spacing: .04em; color: var(--brand); }
.recruitment-step-title { font-size: 16px; font-weight: 700; line-height: 24px; color: #1E1E1E; margin: 0; }
.recruitment-step-desc { font-size: 14px; line-height: 19px; color: #333333; margin: 0; }
 
/* Careers CTA / Apply */
.careers-cta { background: #F8FAFC; }
.careers-cta-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (min-width: 1024px) { .careers-cta-inner { flex-direction: row; align-items: flex-start; justify-content: space-between; gap: 100px; } }
 
.careers-cta-copy { display: flex; flex-direction: column; gap: 16px; width: 100%; }
@media (min-width: 1024px) { .careers-cta-copy { max-width: 544px; } }
.careers-cta-heading { font-size: 28px; font-weight: 700; line-height: 48.6px; color: #333333; margin: 0; }
@media (min-width: 1024px) { .careers-cta-heading { font-size: 36px; } }
.careers-cta-body { font-size: 16px; line-height: 27px; color: #333333; margin: 0; }
@media (min-width: 1024px) { .careers-cta-body { font-size: 18px; } }
 
.careers-apply-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  width: 100%;
  border-radius: 8px;
  background: var(--surface);
  padding: 32px;
}
@media (min-width: 1024px) { .careers-apply-panel { max-width: 498px; padding: 40px; } }
 
.careers-apply-head { display: flex; flex-direction: column; gap: 8px; }
.careers-apply-title { font-size: 20px; font-weight: 700; line-height: 27px; color: #fff; margin: 0; }
.careers-apply-desc { font-size: 14px; line-height: 21px; color: #A8ABB1; margin: 0; }
 
.careers-apply-actions { display: flex; flex-direction: column; gap: 16px; }
.careers-apply-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  border-radius: 8px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 700;
  transition: background-color .2s ease;
}
.careers-apply-btn--primary { background: var(--brand); color: #fff; }
.careers-apply-btn--primary:hover { background: var(--brand-dark); }
.careers-apply-btn--outline { border: 1px solid #fff; color: #fff; }
.careers-apply-btn--outline:hover { background: rgba(255,255,255,.1); }


/* =========================================================
   WHY PINNAVON PAGE
   ========================================================= */
.why-page { background: #fff; }
 
/* Why Hero */
.why-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--surface);
}
.why-hero-img { width: 100%; height: 420px; object-fit: cover; }
@media (min-width: 1024px) { .why-hero-img { height: 496px; } }
 
.why-hero-overlay { position: absolute; inset: 0; background: rgba(15,23,42,.65); }
 
.why-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 var(--gutter);
}
@media (min-width: 1024px) { .why-hero-content { padding: 0 88px; } }
 
.why-hero-inner { display: flex; flex-direction: column; gap: 24px; max-width: 666px; }
.why-hero-title {
  font-size: 34px;
  font-weight: 900;
  line-height: 1.2;
  color: #fff;
  margin: 0;
}
@media (min-width: 1024px) { .why-hero-title { font-size: 44px; line-height: 58px; } }
.why-hero-body {
  font-size: 16px;
  font-weight: 500;
  line-height: 27px;
  color: #fff;
  margin: 0;
}
@media (min-width: 1024px) { .why-hero-body { font-size: 18px; } }
.why-hero-btn { min-width: 148px; }
 
/* Competitive Edge */
.competitive-edge { background: #fff; }
.edge-eyebrow { font-size: 16px; font-weight: 700; line-height: 24px; color: var(--brand); margin: 0; }
 
.edge-grid {
  margin: 40px 0 0;
  display: grid;
  grid-template-columns: 1fr;
  list-style: none;
  padding: 0;
}
@media (min-width: 768px) { .edge-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .edge-grid { grid-template-columns: repeat(3, 1fr); margin-top: 48px; } }
 
.edge-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: background-color .2s ease;
}
.edge-item:hover {
  background-color: #F8FAFC;
}
@media (min-width: 1024px) {
  .edge-item { min-height: 160px; padding: 36px 40px; }
  .edge-item:nth-child(3n+1) { padding-left: 0; }
  .edge-item:nth-child(3n+2),
  .edge-item:nth-child(3n+1) { border-right: 1px solid var(--border); }
  .edge-item:nth-child(3n) { border-right: none; padding-right: 0; }
  .edge-item:nth-child(-n+6) { border-bottom: 1px solid var(--border); }
  .edge-item:nth-child(n+7) { border-bottom: none; }
}
 
.edge-title { font-size: 16px; font-weight: 700; line-height: 24px; color: #1E1E1E; margin: 0; }
.edge-desc { font-size: 14px; line-height: 19px; color: #333333; margin: 0; }
 
/* Why Testimonials (dedicated page) */
.why-testimonials { background: #F8FAFC; }
.why-testimonials-inner { display: flex; flex-direction: column; align-items: center; gap: 32px; }
.why-testimonials-heading {
  font-size: 28px;
  font-weight: 700;
  line-height: 48.6px;
  color: #333333;
  margin: 0;
  text-align: center;
}
@media (min-width: 1024px) { .why-testimonials-heading { font-size: 36px; } }
 
.why-testimonials-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media (min-width: 1024px) { .why-testimonials-row { gap: 64px; } }
 
/* Our Promise */
.our-promise { background: #fff; }
.promise-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 1024px) { .promise-inner { flex-direction: row; align-items: center; gap: 77px; } }
 
.promise-copy { display: flex; flex-direction: column; gap: 8px; width: 100%; }
@media (min-width: 1024px) { .promise-copy { max-width: 593px; } }
.promise-heading { font-size: 28px; font-weight: 500; line-height: 1.4; color: #333333; margin: 0; }
@media (min-width: 1024px) { .promise-heading { font-size: 36px; } }
.promise-body { font-size: 16px; line-height: 27px; color: #333333; margin: 0; }
@media (min-width: 1024px) { .promise-body { font-size: 18px; } }
 
.promise-list-wrap { display: flex; flex-direction: column; gap: 24px; width: 100%; }
@media (min-width: 1024px) { .promise-list-wrap { max-width: 594px; } }
.promise-list-heading { font-size: 16px; font-weight: 500; line-height: 24px; color: var(--brand); margin: 0; }
 
/* Transform CTA */
.transform-cta {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--surface);
}
.transform-cta-img { width: 100%; height: 420px; object-fit: cover; object-position: right; }
@media (min-width: 1024px) { .transform-cta-img { height: 480px; } }
 
.transform-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--surface) 0%, rgba(15,23,42,.85) 55%, rgba(15,23,42,.3) 100%);
}
 
.transform-cta-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  padding: 0 var(--gutter);
}
@media (min-width: 1024px) { .transform-cta-content { padding: 0 88px; } }
 
.transform-cta-text { display: flex; flex-direction: column; gap: 8px; max-width: 536px; }
.transform-cta-heading {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin: 0;
}
@media (min-width: 1024px) { .transform-cta-heading { font-size: 36px; line-height: 52px; } }
.transform-cta-body {
  font-size: 16px;
  font-weight: 500;
  line-height: 27px;
  color: #fff;
  margin: 0;
}
@media (min-width: 1024px) { .transform-cta-body { font-size: 18px; } }

/* =========================================================
   REQUEST PROPOSAL PAGE
   ========================================================= */
.proposal-page { background: #fff; }

.proposal-layout {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (min-width: 1024px) {
  .proposal-layout {
    flex-direction: row;
    justify-content: space-between;
    gap: 80px;
  }
}

/* Form Styles */
.proposal-form-container {
  flex: 1;
  max-width: 800px;
}

.proposal-header {
  margin-bottom: 40px;
}

.proposal-header .kicker {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.proposal-header h1 {
  font-size: 32px;
  font-weight: 500;
  color: var(--graphite);
  margin: 0;
}
@media (min-width: 1024px) {
  .proposal-header h1 { font-size: 44px; }
}

.proposal-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #F8FAFC;
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94A3B8;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(26, 81, 189, 0.1);
}

.form-group textarea {
  min-height: 160px;
  resize: vertical;
}

.proposal-form .btn-submit {
  width: 100%;
  margin-top: 16px;
}

/* Sidebar Styles */
.proposal-sidebar {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 1024px) {
  .proposal-sidebar {
    width: 380px;
    flex-shrink: 0;
  }
}

.sidebar-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sidebar-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.sidebar-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  flex-shrink: 0;
}

.sidebar-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--graphite);
}

.sidebar-value {
  font-size: 14px;
  color: #64748B;
}

.sidebar-value a:hover {
  color: var(--brand);
  text-decoration: underline;
}

.booking-card {
  border-left: 4px solid var(--brand);
  background: #F8FAFC;
}

.booking-text {
  font-size: 16px;
  line-height: 1.5;
  color: var(--graphite);
}

.booking-text strong {
  color: var(--brand);
  cursor: pointer;
}

.booking-text strong:hover {
  text-decoration: underline;
}
