:root {
  --blue-deep: #0b3d6e;
  --blue-mid: #1565c0;
  --blue-bright: #1976d2;
  --blue-light: #e8f1fb;
  --blue-xlight: #f0f6ff;
  --sky: #dbeafe;
  --accent: #f59e0b;
  --accent-light: #fcd34d;
  --white: #ffffff;
  --grey-100: #f8fafc;
  --grey-200: #f1f5f9;
  --grey-300: #e2e8f0;
  --grey-500: #64748b;
  --grey-700: #334155;
  --text: #0f172a;
  --shadow-sm: 0 1px 3px rgba(11, 61, 110, .08), 0 1px 2px rgba(11, 61, 110, .06);
  --shadow-md: 0 4px 16px rgba(11, 61, 110, .10), 0 2px 6px rgba(11, 61, 110, .06);
  --shadow-lg: 0 12px 40px rgba(11, 61, 110, .14);
  --r: 12px;
  --rl: 20px;
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Outfit', sans-serif;
  background: #fff;
  color: var(--text);
  overflow-x: hidden
}

::-webkit-scrollbar {
  width: 4px
}

::-webkit-scrollbar-thumb {
  background: var(--blue-mid);
  border-radius: 10px
}

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

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--grey-300);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s
}

nav.scrolled {
  box-shadow: var(--shadow-md)
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none
}

.logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.logo-icon svg {
  width: 22px;
  height: 22px;
  color: #fff
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.15
}

.logo-main {
  font-size: 1rem;
  font-weight: 800;
  color: var(--blue-deep);
  letter-spacing: -.02em
}

.logo-tagline {
  font-size: .58rem;
  font-weight: 600;
  color: var(--blue-bright);
  letter-spacing: .14em;
  text-transform: uppercase
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none
}

.nav-links a {
  text-decoration: none;
  font-size: .9rem;
  font-weight: 600;
  color: var(--grey-700);
  transition: color .2s
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue-mid)
}

.nav-cta {
  background: var(--blue-mid);
  color: #fff !important;
  padding: .5rem 1.4rem;
  border-radius: 8px;
  font-weight: 700 !important;
  transition: background .2s, transform .15s !important
}

.nav-cta:hover {
  background: var(--blue-deep) !important;
  transform: translateY(-1px)
}

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

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--blue-deep);
  border-radius: 4px;
  transition: .3s
}

.mob-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: #fff;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem
}

.mob-overlay.open {
  display: flex
}

.mob-overlay a {
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue-deep);
  text-decoration: none
}

.mob-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--blue-deep)
}

/* SECTIONS */
section {
  display: none
}

section.active {
  display: block
}

/* UTILS */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%
}

.sp {
  padding: 20px 0
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-xlight);
  color: var(--blue-mid);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 100px;
  border: 1px solid #c7ddf9;
  margin-bottom: 1rem
}

.chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-mid)
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--blue-deep);
  line-height: 1.1;
  letter-spacing: -.03em
}

.section-title span {
  color: var(--blue-bright)
}

.section-sub {
  font-size: 1rem;
  color: var(--grey-500);
  line-height: 1.75;
  max-width: 580px;
  margin-top: .9rem
}

.btn-blue {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--blue-mid);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: .92rem;
  font-weight: 700;
  padding: .85rem 2rem;
  border-radius: 9px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 14px rgba(21, 101, 192, .3)
}

.btn-blue:hover {
  background: var(--blue-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(21, 101, 192, .35)
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: var(--blue-mid);
  font-family: 'Outfit', sans-serif;
  font-size: .92rem;
  font-weight: 700;
  padding: .82rem 2rem;
  border-radius: 9px;
  text-decoration: none;
  border: 2px solid var(--blue-mid);
  cursor: pointer;
  transition: all .2s
}

.btn-outline:hover {
  background: var(--blue-xlight)
}

.arrow {
  font-size: 1rem;
  transition: transform .2s
}

.btn-blue:hover .arrow,
.btn-outline:hover .arrow {
  transform: translateX(4px)
}

.anim {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease
}

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

/* HERO */
.hero {
  min-height: 100vh;
  padding-top: 72px;
  background: linear-gradient(150deg, #f0f6ff 0%, #fff 55%, #e8f4fb 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column
}

.hero-blob {
  position: absolute;
  top: -60px;
  right: -80px;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 101, 192, .07) 0%, transparent 70%);
  pointer-events: none
}

.hero-blob2 {
  position: absolute;
  bottom: 60px;
  left: -60px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 101, 192, .05) 0%, transparent 70%);
  pointer-events: none
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  flex: 1;
  padding: 4rem 5% 7rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #c7ddf9;
  padding: .38rem 1rem .38rem .45rem;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--blue-mid);
  margin-bottom: 1.4rem;
  box-shadow: var(--shadow-sm)
}

.hero-badge-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-deep));
  display: flex;
  align-items: center;
  justify-content: center
}

.hero-badge-icon svg {
  width: 12px;
  height: 12px;
  color: #fff
}

.hero-h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 900;
  color: var(--blue-deep);
  line-height: 1.03;
  letter-spacing: -.04em;
  margin-bottom: 1.2rem
}

.hero-h1 em {
  font-style: normal;
  color: var(--blue-bright)
}

.underline-wrap {
  position: relative;
  display: inline-block
}

.underline-wrap::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent);
  border-radius: 4px
}

.hero-p {
  font-size: 1.05rem;
  color: var(--grey-500);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2.2rem
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--grey-300)
}

.trust-avatars {
  display: flex
}

.trust-av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-deep));
  margin-right: -9px;
  font-size: .62rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center
}

.trust-text {
  font-size: .82rem;
  font-weight: 500;
  color: var(--grey-700);
  margin-left: 18px
}

.trust-text strong {
  color: var(--blue-deep)
}

.hero-right {
  position: relative
}

.hero-img-main {
  width: 100%;
  height: 460px;
  border-radius: var(--rl);
  box-shadow: var(--shadow-lg)
}

.float-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #fff;
  border-radius: 14px;
  padding: .9rem 1.2rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: .8rem;
  animation: float 4s ease-in-out infinite
}

.float-card2 {
  position: absolute;
  top: 20px;
  right: -16px;
  background: var(--blue-deep);
  border-radius: 12px;
  padding: .8rem 1.1rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: .6rem;
  animation: float 4s ease-in-out .8s infinite
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

.fc-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--blue-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.fc-icon svg {
  width: 18px;
  height: 18px;
  color: var(--blue-mid)
}

.fc-num {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--blue-deep);
  line-height: 1
}

.fc-lbl {
  font-size: .7rem;
  color: var(--grey-500);
  margin-top: 1px
}

.fc2-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, .25);
  flex-shrink: 0
}

.fc2-text {
  font-size: .78rem;
  font-weight: 600;
  color: #fff
}

.hero-wavy {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: var(--grey-100);
  clip-path: ellipse(120% 100% at 50% 100%)
}

/* STATS */
.stats-bar {
  background: var(--blue-deep);
  padding: 2.5rem 5%
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr)
}

.stat-item {
  text-align: center;
  padding: .8rem 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, .15)
}

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

.stat-n {
  font-size: 2.6rem;
  font-weight: 900;
  background: linear-gradient(135deg, #fff, #93c5fd);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1
}

.stat-l {
  font-size: .78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .6);
  margin-top: .3rem;
  text-transform: uppercase;
  letter-spacing: .07em
}

/* TICKER */
.ticker {
  background: var(--accent);
  padding: .75rem 0;
  overflow: hidden
}

.ticker-track {
  display: flex;
  gap: 2.5rem;
  animation: tick 28s linear infinite;
  white-space: nowrap
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-shrink: 0
}

.ticker-item span {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-deep)
}

.tick-sep {
  color: var(--blue-deep);
  opacity: .4;
  font-size: .9rem
}

@keyframes tick {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* CLIENTS MARQUEE */
.clients-section {
  background: var(--white);
  padding: 4rem 0 5rem
}

.clients-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  margin-bottom: 2.5rem
}

.clients-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #f96302;
  text-transform: uppercase;
  letter-spacing: .03em;
  display: inline-block;
  position: relative;
  padding-bottom: .4rem
}

.clients-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #f96302
}

.clients-marquee {
  overflow: hidden;
  padding: 1rem 0;
  position: relative;
  width: 100%
}

.clients-marquee::before,
.clients-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none
}

.clients-marquee::before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, transparent 100%)
}

.clients-marquee::after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, transparent 100%)
}

.clients-track {
  display: flex;
  width: max-content;
  animation: tick 35s linear infinite
}

.clients-track:hover {
  animation-play-state: paused
}

.client-logo-box {
  width: 260px;
  height: 120px;
  border: 1px solid var(--grey-300);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.8rem;
  background: #fff;
  transition: all .3s;
  flex-shrink: 0;
  margin-right: 2rem
}

.client-logo-box:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--blue-mid);
  transform: translateY(-2px)
}

.client-logo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain
}


/* WHY */
.why-section {
  background: #fff
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem
}

.why-card {
  background: var(--grey-100);
  border: 1px solid var(--grey-300);
  border-radius: var(--rl);
  padding: 2rem;
  transition: all .3s;
  position: relative;
  overflow: hidden
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-mid), var(--blue-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s
}

.why-card:hover {
  background: #fff;
  box-shadow: var(--shadow-md);
  border-color: transparent;
  transform: translateY(-4px)
}

.why-card:hover::before {
  transform: scaleX(1)
}

.why-icon {
  width: 50px;
  height: 50px;
  background: var(--blue-xlight);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem
}

.why-icon svg {
  width: 22px;
  height: 22px;
  color: var(--blue-mid)
}

.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: .55rem
}

.why-card p {
  font-size: .88rem;
  color: var(--grey-500);
  line-height: 1.7
}

/* INDUSTRIES */
.ind-section {
  background: var(--grey-100)
}

.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem
}

.ind-card {
  border-radius: var(--rl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .3s;
  background: #fff
}

.ind-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg)
}

.ind-img {
  width: 100%;
  height: 190px;
  transition: transform .5s
}

.ind-card:hover .ind-img {
  transform: scale(1.06)
}

.ind-body {
  padding: 1.4rem
}

.ind-num {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: .3rem
}

.ind-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: .5rem
}

.ind-body p {
  font-size: .85rem;
  color: var(--grey-500);
  line-height: 1.65
}

/* PROCESS */
.proc-section {
  background: var(--blue-deep);
  padding: 80px 5%
}

.proc-inner {
  max-width: 1200px;
  margin: 0 auto
}

.proc-chip {
  background: rgba(255, 255, 255, .12);
  color: #93c5fd;
  border-color: rgba(255, 255, 255, .2)
}

.proc-title {
  color: #fff
}

.proc-title span {
  color: #93c5fd
}

.proc-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 3.5rem;
  position: relative
}

.proc-steps::before {
  content: '';
  position: absolute;
  top: 29px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .15), var(--accent), rgba(255, 255, 255, .15), transparent)
}

.proc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 .6rem
}

.proc-num {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  border: 2px solid rgba(255, 255, 255, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 1.1rem;
  position: relative;
  z-index: 1;
  transition: all .3s
}

.proc-step:hover .proc-num {
  background: var(--accent);
  color: var(--blue-deep);
  border-color: var(--accent);
  transform: scale(1.1)
}

.proc-step h4 {
  font-size: .92rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .45rem
}

.proc-step p {
  font-size: .78rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.55
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-mid) 100%);
  padding: 72px 5%;
  position: relative;
  overflow: hidden
}

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

.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap
}

.cta-inner h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1
}

.cta-inner p {
  font-size: .98rem;
  color: rgba(255, 255, 255, .68);
  margin-top: .65rem;
  max-width: 480px
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #fff;
  color: var(--blue-deep);
  font-family: 'Outfit', sans-serif;
  font-size: .92rem;
  font-weight: 700;
  padding: .9rem 2.2rem;
  border-radius: 9px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: all .2s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .18)
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .22)
}

/* SERVICES */
.svc-hero {
  padding: 100px 5% 40px;
  background: linear-gradient(150deg, var(--blue-xlight) 0%, #fff 60%)
}

.svc-hero-inner {
  max-width: 1200px;
  margin: 0 auto
}

.svc-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5% 50px
}

.svc-img {
  width: 100%;
  height: 250px;
  border-radius: var(--rl);
  box-shadow: var(--shadow-md)
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5% 80px
}

.svc-card {
  background: #fff;
  border: 1px solid var(--grey-300);
  border-radius: var(--rl);
  padding: 2rem;
  transition: all .3s;
  position: relative;
  overflow: hidden
}

.svc-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-mid);
  transform: translateY(-4px)
}

.svc-num {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-bottom: 1.4rem;
  display: block
}

.svc-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-xlight), #dbeafe);
  border: 1px solid #c7ddf9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem
}

.svc-icon svg {
  width: 26px;
  height: 26px;
  color: var(--blue-mid)
}

.svc-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: .75rem;
  line-height: 1.2
}

.svc-card p {
  font-size: .88rem;
  color: var(--grey-500);
  line-height: 1.7
}

.svc-feats {
  list-style: none;
  margin-top: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: .4rem
}

.svc-feats li {
  font-size: .82rem;
  color: var(--grey-700);
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  line-height: 1.45
}

.svc-feats li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-mid);
  flex-shrink: 0;
  margin-top: .46em
}

/* ABOUT */
.about-hero {
  padding: 120px 5% 70px;
  background: linear-gradient(150deg, var(--blue-xlight) 0%, #fff 60%)
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center
}

.img-stack {
  position: relative;
  height: 470px
}

.img-main {
  width: 82%;
  height: 410px;
  border-radius: var(--rl);
  box-shadow: var(--shadow-lg);
  position: absolute;
  top: 0;
  left: 0
}

.img-sec {
  width: 52%;
  height: 250px;
  border-radius: var(--rl);
  box-shadow: var(--shadow-lg);
  position: absolute;
  bottom: 0;
  right: 0;
  border: 4px solid #fff
}

.exp-badge {
  position: absolute;
  top: 50%;
  left: 58%;
  transform: translate(-50%, -50%);
  background: var(--blue-deep);
  color: #fff;
  border-radius: 50%;
  width: 88px;
  height: 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 2
}

.exp-badge .n {
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1
}

.exp-badge .l {
  font-size: .5rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-align: center;
  opacity: .8
}

.about-right p {
  font-size: .98rem;
  color: var(--grey-500);
  line-height: 1.8;
  margin-top: .9rem
}

.checks {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin: 1.4rem 0 2rem
}

.check-item {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .93rem;
  font-weight: 600;
  color: var(--blue-deep)
}

.chk-ico {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.chk-ico svg {
  width: 12px;
  height: 12px;
  color: var(--blue-mid)
}

.vals-section {
  background: var(--grey-100);
  padding: 80px 5%
}

.vals-inner {
  max-width: 1200px;
  margin: 0 auto
}

.vals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 3rem
}

.val-card {
  background: #fff;
  border-radius: var(--rl);
  padding: 1.8rem 1.5rem;
  border: 1px solid var(--grey-300);
  text-align: center;
  transition: all .3s
}

.val-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--blue-mid);
  transform: translateY(-4px)
}

.val-n {
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: .4rem
}

.val-card h3 {
  font-size: .98rem;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: .55rem
}

.val-card p {
  font-size: .84rem;
  color: var(--grey-500);
  line-height: 1.65
}

.team-section {
  background: #fff;
  padding: 60px 5%
}

.team-inner {
  max-width: 1200px;
  margin: 0 auto
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem
}

.team-card {
  background: var(--grey-100);
  border-radius: var(--rl);
  overflow: hidden;
  border: 1px solid var(--grey-300);
  transition: all .3s
}

.team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px)
}

.team-img-wrap {
  position: relative;
  height: 235px;
  overflow: hidden
}

.team-img {
  width: 100%;
  height: 100%;
  transition: transform .5s
}

.team-card:hover .team-img {
  transform: scale(1.06)
}

.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 61, 110, .55), transparent 50%)
}

.team-body {
  padding: 1.4rem
}

.team-role {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: .25rem
}

.team-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: .5rem
}

.team-bio {
  font-size: .85rem;
  color: var(--grey-500);
  line-height: 1.6
}

.certs-bar {
  background: var(--blue-deep);
  padding: 2.5rem 5%
}

.certs-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap
}

.certs-lbl {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  flex-shrink: 0
}

.cert-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem
}

.cert-tag {
  padding: .4rem 1rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, .2);
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .75);
  background: rgba(255, 255, 255, .06);
  transition: all .2s
}

.cert-tag:hover {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .4)
}

/* CONTACT */
.contact-hero {
  padding: 120px 5% 50px;
  background: linear-gradient(150deg, var(--blue-xlight) 0%, #fff 60%)
}

.contact-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center
}

.contact-hero-inner .section-sub {
  margin: 0 auto
}

.contact-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 5% 80px
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: 3rem;
  align-items: start
}

.info-card {
  background: var(--blue-deep);
  border-radius: var(--rl);
  padding: 2.5rem;
  color: #fff
}

.info-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.8rem
}

.info-block {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  margin-bottom: 1.7rem
}

.info-block:last-of-type {
  margin-bottom: 0
}

.info-ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.info-ico svg {
  width: 16px;
  height: 16px;
  color: #93c5fd
}

.info-lbl {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #93c5fd;
  margin-bottom: .25rem
}

.info-val {
  font-size: .9rem;
  color: rgba(255, 255, 255, .82);
  line-height: 1.6
}

.info-div {
  height: 1px;
  background: rgba(255, 255, 255, .12);
  margin: 1.8rem 0
}

.info-note {
  font-size: .8rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.65
}

.form-card {
  background: #fff;
  border-radius: var(--rl);
  padding: 2.5rem;
  border: 1px solid var(--grey-300);
  box-shadow: var(--shadow-md)
}

.form-card-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--blue-deep);
  margin-bottom: .35rem
}

.form-card-sub {
  font-size: .88rem;
  color: var(--grey-500);
  margin-bottom: 1.8rem
}

.fg {
  display: flex;
  flex-direction: column;
  gap: .38rem;
  margin-bottom: .9rem
}

.fg label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue-deep)
}

.fg input,
.fg select,
.fg textarea {
  background: #f8fafc;
  border: 1.5px solid var(--grey-300);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: .93rem;
  padding: .78rem 1rem;
  border-radius: 9px;
  outline: none;
  transition: border-color .2s, background .2s;
  -webkit-appearance: none;
  appearance: none
}

.fg select option {
  background: #fff
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--blue-mid);
  background: #fff
}

.fg input::placeholder,
.fg textarea::placeholder {
  color: #94a3b8;
  font-weight: 400
}

.fg textarea {
  resize: vertical;
  min-height: 108px
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem
}

.form-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.1rem;
  flex-wrap: wrap
}

.form-note {
  font-size: .76rem;
  color: var(--grey-500);
  max-width: 230px;
  line-height: 1.5
}

/* Form alerts */
.form-success {
  display: none;
  margin-top: 1rem;
  padding: .85rem 1.1rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 9px;
  color: #166534;
  font-size: .86rem;
  font-weight: 600
}

.form-success.show {
  display: block
}

.form-error {
  display: none;
  margin-top: 1rem;
  padding: .85rem 1.1rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 9px;
  color: #b91c1c;
  font-size: .86rem;
  font-weight: 600
}

.form-error.show {
  display: block
}

/* FOOTER */
footer {
  background: var(--blue-deep);
  padding: 60px 5% 28px
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.footer-brand p {
  font-size: .86rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.75;
  margin-top: .9rem;
  max-width: 260px
}

.footer-col h4 {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .88);
  margin-bottom: 1.1rem
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .65rem
}

.footer-col ul a {
  text-decoration: none;
  font-size: .86rem;
  color: rgba(255, 255, 255, .48);
  transition: color .2s
}

.footer-col ul a:hover {
  color: rgba(255, 255, 255, .9)
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.8rem;
  flex-wrap: wrap;
  gap: 1rem
}

.footer-bottom p {
  font-size: .78rem;
  color: rgba(255, 255, 255, .32)
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none
}

.footer-links a {
  font-size: .78rem;
  color: rgba(255, 255, 255, .32);
  text-decoration: none;
  transition: color .2s
}

.footer-links a:hover {
  color: rgba(255, 255, 255, .7)
}

/* RESPONSIVE */
@media(max-width:1024px) {
  .nav-links {
    display: none
  }

  .hamburger {
    display: flex
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 4rem 4% 5rem;
    gap: 3rem
  }

  .hero-right {
    display: none
  }

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

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

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

  .ind-grid {
    grid-template-columns: 1fr 1fr
  }

  .proc-steps {
    grid-template-columns: 1fr 1fr;
    gap: 2rem
  }

  .proc-steps::before {
    display: none
  }

  .svc-img-row {
    grid-template-columns: 1fr
  }

  .svc-grid {
    grid-template-columns: 1fr 1fr
  }

  .about-inner {
    grid-template-columns: 1fr
  }

  .img-stack {
    height: 300px;
    margin-bottom: 2rem
  }

  .vals-grid {
    grid-template-columns: 1fr 1fr
  }

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

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

  .footer-top {
    grid-template-columns: 1fr 1fr
  }

  .cta-inner {
    flex-direction: column
  }

  .certs-bar-inner {
    flex-direction: column;
    gap: 1rem
  }

  nav {
    padding: 0 4%
  }
}

@media(max-width:640px) {

  .why-grid,
  .ind-grid,
  .svc-grid,
  .vals-grid,
  .team-grid,
  .footer-top {
    grid-template-columns: 1fr
  }

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

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

  .proc-steps {
    grid-template-columns: 1fr
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}
/* PROJECT CARDS */
.project-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.project-card {
  background: #fff;
  height: 420px;
  border: 1px solid var(--grey-300);
  border-radius: var(--rl);
  padding: 23px 24px 24px 24px;
  transition: all .3s;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
}

.project-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--blue-mid);
  transform: translateY(-4px);
}

.pc-header {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.pc-proj-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--blue-deep);
}

.pc-client-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent);
}

.pc-proj-location {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--grey-500);
}

.pc-logo-box {
  height: 110px;
  border: 1px solid var(--grey-300);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 8px;
}

.pc-logo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.pc-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

@media(max-width: 900px) {
  .project-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 650px) {
  .project-card-grid {
    grid-template-columns: 1fr;
  }
}
.current-menu-item > a { color: var(--blue-mid) !important; }
