:root {
  --bg: #ffffff;
  --text: #0b1b2a;
  --muted: rgba(11, 27, 42, 0.72);
  /* Brand blues */
  --brand: #2596be;
  /* User-provided "lighter" value matches primary; keeping alias for flexibility */
  --brand-light: #2596be;
  --brand-dark: #1054a4;

  /* Back-compat aliases used throughout the file */
  --navy: var(--brand-dark);
  --navy-2: var(--brand);
  --card: #f4f7fb;
  --sky: #dfeef7;
  --shadow: 0 10px 30px rgba(10, 28, 45, 0.12);
  --radius-lg: 28px;
  --radius-md: 16px;
  --container: 1180px;
  --ink: #062852;
  /* Typography + sizing scale (keep consistent across the site) */
  --fw-heading: 700;
  --fw-heading-soft: 600;
  --fs-body: 16px;
  --fs-body-md: 18px;
  --fs-body-lg: 20px;
  --fs-kicker: 12px;
  /* More modern type scale (smaller + cleaner) */
  --fs-title: clamp(30px, 3.1vw, 40px);
  --fs-copy: clamp(13px, 1.25vw, 16px);
  --control-h: 52px;
  /* Optional: set these to `url("...")` when you have real images */
  --hero-image: url("./assets/hero.jpg");
  /* Mission matches reference strip background */
  --mission-image: url("./assets/mission.jpg");
  --process-1-image: url("./assets/process-1.jpg");
  --process-2-image: url("./assets/process-2.jpg");
  --process-3-image: url("./assets/process-3.jpg");
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  font-size: var(--fs-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-optical-sizing: auto;
}

/* smoother typography defaults */
p {
  margin: 0;
}

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

.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;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 10px 12px;
  background: #fff;
  color: #000;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transform: translateY(-160%);
  transition: transform 160ms ease;
  z-index: 1000;
}
.skip-link:focus {
  transform: translateY(0);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(10, 28, 45, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.header-right {
  display: inline-flex;
  align-items: center;
  gap: 26px;
}

.brand-logo {
  width: 310px;
  height: 48px;
  object-fit: contain;
  display: block;
}

.nav {
  justify-self: auto;
}

.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-link {
  text-decoration: none;
  color: rgba(11, 27, 42, 0.75);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: color 180ms ease;
}
.nav-link:hover {
  color: var(--brand-dark);
}
.nav-link.is-active {
  color: var(--brand-dark);
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.btn-pill {
  justify-self: end;
  background: #fff;
  border: 1px solid rgba(10, 28, 45, 0.16);
  color: rgba(11, 27, 42, 0.85);
  min-height: var(--control-h);
  padding: 0 18px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(10, 28, 45, 0.1);
  transition: transform 150ms ease, box-shadow 150ms ease;
}
.btn-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(10, 28, 45, 0.14);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 10px;
  border-radius: 12px;
}
.nav-toggle-bars {
  display: inline-block;
  width: 22px;
  height: 2px;
  background: rgba(11, 27, 42, 0.8);
  position: relative;
}
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: rgba(11, 27, 42, 0.8);
}
.nav-toggle-bars::before {
  top: -7px;
}
.nav-toggle-bars::after {
  top: 7px;
}

/* HERO */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 70px 0 88px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(7, 26, 44, 0.78), rgba(7, 26, 44, 0.34)),
    radial-gradient(1200px 600px at 20% 40%, rgba(255, 255, 255, 0.2), transparent 60%),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
  transform: none;
}
.hero-inner {
  position: relative;
  padding: 18px 0;
  max-width: 980px;
}

.eyebrow {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.28em;
}

.hero-title {
  margin: 0 0 14px;
  color: #fff;
  font-weight: var(--fw-heading);
  letter-spacing: -0.03em;
  font-size: clamp(40px, 5.2vw, 74px);
  line-height: 1.03;
}

.hero-subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(15px, 1.45vw, 20px);
  line-height: 1.7;
  max-width: 760px;
}

/* SECTION TITLES */
.section-kicker {
  margin: 0 0 6px;
  text-align: center;
  font-size: var(--fs-kicker);
  letter-spacing: 0.38em;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
}

.section-kicker-dark {
  text-align: left;
  color: rgba(11, 27, 42, 0.55);
}

.section-title {
  margin: 0;
  text-align: center;
  color: #fff;
  font-weight: var(--fw-heading);
  letter-spacing: -0.03em;
  font-size: var(--fs-title);
}

/* PORTFOLIO */
.portfolio-band {
  background: var(--ink);
  padding: 0;
  box-shadow: 0 18px 26px rgba(10, 28, 45, 0.22);
  position: relative;
  z-index: 2;
}

.portfolio-band-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding: 74px 0 70px;
}

.portfolio-band .section-kicker {
  margin: 0;
}

.portfolio-logos {
  background: #ffffff;
  padding: 40px 0;
  border-bottom: 1px solid rgba(10, 28, 45, 0.06);
  position: relative;
  z-index: 1;
}

.logo-img {
  max-height: 86px;
  max-width: 220px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.logo-marquee {
  overflow: hidden;
  width: 100%;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: marquee 26s linear infinite;
  padding: 10px 0;
}

.logo-item {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
}

@media (prefers-reduced-motion: no-preference) {
  .logo-item .logo-img {
    transition: transform 180ms ease, filter 180ms ease;
    transform-origin: center;
  }

  .logo-item:hover .logo-img {
    transform: scale(1.08);
    filter: drop-shadow(0 10px 16px rgba(10, 28, 45, 0.18));
  }

  .logo-marquee:hover .logo-track {
    animation-play-state: paused;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-track {
    animation: none;
  }
}

/* PORTFOLIO PAGE (separate page) */
.portfolio-page-hero {
  background: #ffffff;
  padding: 74px 0 34px;
}

.portfolio-page-title {
  margin: 0;
  text-align: center;
  color: #051f44;
  font-weight: var(--fw-heading);
  letter-spacing: -0.03em;
  font-size: var(--fs-title);
  line-height: 1.2;
}

.portfolio-page-subtitle {
  margin: 18px auto 0;
  text-align: center;
  color: rgba(5, 31, 68, 0.9);
  line-height: 1.6;
  font-size: var(--fs-copy);
  max-width: 920px;
}

.portfolio-page-grid {
  background: #ffffff;
  padding: 18px 0 84px;
}

.portfolio-tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.portfolio-tile {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 4.96px -0.61px 10px rgba(0, 0, 0, 0.33);
  background: #000;
}

.portfolio-tile-img {
  width: 100%;
  height: 100%;
  min-height: 18vw;
  object-fit: cover;
  display: block;
}

.portfolio-tile-label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 26px;
  line-height: 1.3;
  color: #fff;
  opacity: 0;
  transition: opacity 220ms ease;
}

.portfolio-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .portfolio-tile-img {
    transition: transform 320ms ease;
  }
  .portfolio-tile:hover .portfolio-tile-img {
    transform: scale(1.03);
  }
  .portfolio-tile:hover .portfolio-tile-label,
  .portfolio-tile:hover::after {
    opacity: 1;
  }
}

@media (max-width: 1000px) {
  .portfolio-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .portfolio-tile-img {
    min-height: 28vw;
  }
}

@media (max-width: 750px) {
  .portfolio-page-title,
  .portfolio-page-subtitle {
    text-align: left;
  }
  .portfolio-page-hero {
    padding: 56px 0 26px;
  }
  .portfolio-tiles {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .portfolio-tile {
    border-radius: 300px;
    box-shadow: none;
  }
  .portfolio-tile-img {
    min-height: 60vw;
    opacity: 0.6;
  }
  .portfolio-tile-label {
    opacity: 1;
    font-size: 25px;
  }
  .portfolio-tile::after {
    opacity: 1;
    background: rgba(0, 0, 0, 0.22);
  }
}

/* PROJECTS / PORTFOLIO (screenshot-matching layout) */
.projects-hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 54px;
  background: #fff;
}

.projects-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("./assets/portfolio-hero.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(1.02);
}

.projects-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.62);
}

.projects-hero-inner {
  position: relative;
  text-align: center;
  padding: 10px 0;
}

.projects-kicker {
  margin: 0 0 10px;
  font-size: var(--fs-kicker);
  letter-spacing: 0.42em;
  font-weight: 500;
  color: rgba(11, 27, 42, 0.72);
}

.projects-title {
  margin: 0;
  font-weight: var(--fw-heading);
  letter-spacing: -0.02em;
  color: #051f44;
  font-size: var(--fs-title);
  line-height: 1.1;
}

.projects-subtitle {
  margin: 10px auto 0;
  max-width: 720px;
  color: rgba(11, 27, 42, 0.82);
  font-size: var(--fs-copy);
  line-height: 1.6;
}

.projects-social {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.projects-social-btn {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  text-decoration: none;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.projects-social-btn--in {
  background: transparent;
}

.projects-social-btn--tp {
  background: transparent;
  box-shadow: none;
  width: auto;
  height: auto;
  font-size: 18px;
  color: #00b67a;
}

.projects-social-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.projects-grid {
  background: #f7f6f2;
  padding: 54px 0 96px;
}

.projects-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(30px, 4vw, 84px);
  row-gap: clamp(38px, 5vw, 92px);
  align-items: start;
}

.project-card {
  display: grid;
  justify-items: center;
  text-align: center;
}

.project-mockup {
  width: min(320px, 92%);
  height: auto;
  margin-bottom: 18px;
}

.project-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(320px, 92%);
  padding: 18px 22px;
  border-radius: 999px;
  background: #fff;
  color: rgba(11, 27, 42, 0.86);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(10, 28, 45, 0.14);
  border: 1px solid rgba(10, 28, 45, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.project-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 44px rgba(10, 28, 45, 0.18);
}

@media (max-width: 1000px) {
  .projects-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .projects-hero-inner {
    text-align: left;
  }
  .projects-social {
    justify-content: flex-start;
  }
  .projects-cards {
    grid-template-columns: 1fr;
  }
  .project-pill {
    min-width: 100%;
  }
}

/* PROCESS */
.process {
  background: var(--sky);
  padding: 64px 0 54px;
  box-shadow: 0 -12px 40px rgba(10, 28, 45, 0.1) inset;
}

.process-title {
  margin: 0 0 12px;
  font-weight: var(--fw-heading);
  letter-spacing: -0.03em;
  font-size: var(--fs-title);
}

.process-subtitle {
  margin: 0 0 26px;
  max-width: 760px;
  color: var(--muted);
  line-height: 1.8;
  font-size: var(--fs-copy);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
}

.process-item-title {
  margin: 16px 0 8px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.process-item-body {
  margin: 0;
  color: rgba(11, 27, 42, 0.8);
  line-height: 1.9;
  font-size: var(--fs-copy);
  max-width: 340px;
}

.process-card {
  border-radius: var(--radius-lg);
  min-height: 230px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  background-image:
    linear-gradient(180deg, rgba(11, 40, 66, 0.16), rgba(11, 40, 66, 0.06)),
    var(--process-1-image);
  background-size: cover;
  background-position: center;
}

.process-card-2 {
  background-image:
    linear-gradient(180deg, rgba(11, 40, 66, 0.16), rgba(11, 40, 66, 0.06)),
    var(--process-2-image);
}
.process-card-3 {
  background-image:
    linear-gradient(180deg, rgba(11, 40, 66, 0.16), rgba(11, 40, 66, 0.06)),
    var(--process-3-image);
}

.process-num {
  position: absolute;
  left: 14px;
  bottom: 14px;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--brand-dark);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
}

/* MISSION / STATS */
.mission {
  position: relative;
  overflow: hidden;
  padding: 86px 0;
  color: #fff;
}

.mission-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(16, 84, 164, 0.78), rgba(16, 84, 164, 0.44)),
    radial-gradient(1200px 520px at 70% 30%, rgba(255, 255, 255, 0.12), transparent 55%),
    var(--mission-image);
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
  transform: none;
}

/* SERVICES */
.services {
  background: #ffffff;
  padding: 0 0 86px;
}

.services-head {
  background: #dff0fb;
  padding: 62px 0 44px;
  box-shadow: 0 14px 26px rgba(10, 28, 45, 0.14);
}

.services-head .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
}

.services > .container {
  padding-top: 26px;
}

.services-kicker {
  margin: 0;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.38em;
  color: rgba(11, 27, 42, 0.55);
  font-weight: 500;
}

.services-title {
  margin: 0;
  text-align: center;
  font-weight: var(--fw-heading);
  letter-spacing: -0.03em;
  font-size: var(--fs-title);
}

.services-tabs {
  display: flex;
  gap: 14px;
  align-items: center;
  overflow-x: auto;
  /* padding provides room for hover-scale without clipping */
  padding: 10px 10px;
  margin: 0;
  scrollbar-width: none;
}
.services-tabs::-webkit-scrollbar {
  display: none;
}

.services-tabs-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  overflow: visible;
}

.tabs-scroll {
  border: 0;
  background: #e9e9ee;
  color: rgba(11, 27, 42, 0.9);
  width: var(--control-h);
  height: var(--control-h);
  border-radius: 999px;
  box-shadow: 0 10px 18px rgba(10, 28, 45, 0.08);
  font: inherit;
  font-size: 22px;
  line-height: 1;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  transform-origin: center;
  will-change: transform;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.tab {
  border: 0;
  background: #e9e9ee;
  color: rgba(11, 27, 42, 0.9);
  min-height: var(--control-h);
  padding: 0 22px;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  box-shadow: 0 10px 18px rgba(10, 28, 45, 0.08);
  position: relative;
  z-index: 1;
  transform-origin: center;
  will-change: transform;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}
.tab.is-active {
  background: var(--ink);
  color: #fff;
}

.tab:hover,
.tabs-scroll:hover {
  background: var(--brand-dark);
  color: #fff;
  transform: scale(1.03);
  z-index: 5;
}
.tab-arrow span {
  margin-left: 6px;
  font-weight: 800;
}

.services-panels {
  margin-top: 10px;
}

.services-card {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--ink);
}

.services-media {
  background: var(--ink);
  padding: 22px;
  overflow: visible;
}
.services-media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  border-radius: 44px;
  transform-origin: center;
  will-change: transform;
  transition: transform 280ms ease;
}

.services-panel {
  background: var(--ink);
  color: #fff;
  padding: 26px 30px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.services-panel-kicker {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.34em;
  opacity: 0.85;
  font-weight: 500;
}

.services-panel-title {
  margin: 0 0 10px;
  font-size: var(--fs-title);
  letter-spacing: -0.03em;
  font-weight: var(--fw-heading);
  line-height: 1.1;
}

.services-panel-body {
  margin: 0;
  font-size: var(--fs-copy);
  line-height: 1.7;
  opacity: 0.9;
  max-width: 980px;
}

/* CRO list card (image left + bullet columns) */
.services-list-card {
  margin-top: 0;
  border-radius: 0;
  box-shadow: none;
  background: var(--ink);
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 26px;
  align-items: center;
  padding: 22px 22px 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.services-list-media {
  border-radius: 44px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  height: 100%;
}
.services-list-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.services-list-body {
  padding: 0;
  color: #fff;
}

.services-list-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

.services-list {
  margin: 0;
  padding-left: 18px;
  line-height: 1.7;
  font-size: var(--fs-copy);
  opacity: 0.94;
}

/* subtle expand animations */
@media (prefers-reduced-motion: no-preference) {
  .btn-pill,
  .process-card,
  .faq-card,
  .services-card,
  .services-list-media,
  .discovery-btn {
    transition: transform 180ms ease, box-shadow 180ms ease;
  }

  .btn-pill:hover,
  .discovery-btn:hover {
    transform: translateY(-1px) scale(1.01);
  }

  .process-card:hover {
    transform: scale(1.015);
  }

  .faq-card:hover {
    transform: translateY(-2px);
  }

  .services-card:hover .services-media img {
    transform: scale(1.02);
    transition: transform 280ms ease;
  }
}

/* TRUSTPILOT STRIP + DISCOVERY */
.trustpilot-strip {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  color: rgba(11, 27, 42, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-bottom: 1px solid rgba(10, 28, 45, 0.08);
  text-decoration: none;
  cursor: pointer;
}

.trustpilot-strip:hover {
  background: #ffffff;
  box-shadow: 0 10px 18px rgba(10, 28, 45, 0.08);
}

.trustpilot-mark {
  margin-left: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trustpilot-star {
  color: #00b67a;
  font-size: 16px;
  line-height: 1;
}

.trustpilot-text {
  font-weight: 700;
}

.discovery {
  position: relative;
  background: #1c66b4;
  padding: 0 0 82px;
  overflow: hidden;
}

.discovery::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(28, 102, 180, 0.9), rgba(28, 102, 180, 0.9)),
    url("./assets/wix/9ec069_6e1cac9463a946a3890abf58ee9444a6~mv2.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

.discovery-card {
  margin-top: 18px;
  border-radius: 34px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: #e6f5ff;
  position: relative;
}

.discovery .container {
  position: relative;
  z-index: 1;
}

.discovery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: 0 30px 70px rgba(10, 28, 45, 0.22);
  pointer-events: none;
  border-radius: 34px;
}

.discovery-left {
  background: #062852;
  color: #fff;
  padding: 62px 62px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.discovery-kicker {
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: 0.38em;
  opacity: 0.85;
  font-weight: 500;
}

.discovery-title {
  margin: 0 0 14px;
  font-size: var(--fs-title);
  letter-spacing: -0.02em;
  line-height: 1.06;
  font-weight: 600;
}

.discovery-body {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
  font-size: var(--fs-copy);
  max-width: 620px;
}

.discovery-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 16px 26px;
  border-radius: 999px;
  background: #fff;
  color: rgba(11, 27, 42, 0.9);
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
}

.discovery-right {
  padding: 44px;
  display: grid;
  place-items: center;
  background: #e6f5ff;
}

.discovery-photo {
  width: min(420px, 80%);
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 22px 40px rgba(10, 28, 45, 0.18);
}

.discovery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* FAQ */
.faq-head {
  background: #dff0fb;
  padding: 42px 0 36px;
  box-shadow: 0 14px 26px rgba(10, 28, 45, 0.14);
}

.faq-head .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
}

.faq-kicker {
  margin: 0;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.38em;
  color: rgba(11, 27, 42, 0.55);
  font-weight: 500;
}

.faq-title {
  margin: 0;
  text-align: center;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: var(--fs-title);
}

.faq-body {
  background: #f7f7f7;
  padding: 54px 0 76px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.faq-grid + .faq-grid {
  margin-top: 34px;
}

.faq-grid-wide {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-card {
  background: #f3f3f3;
  border-radius: 26px;
  padding: 28px 28px 26px;
  box-shadow: 0 18px 40px rgba(10, 28, 45, 0.16);
}

.faq-q {
  margin: 0 0 16px;
  font-size: clamp(18px, 2vw, 22px);
  letter-spacing: -0.01em;
  font-weight: 600;
  color: rgba(11, 27, 42, 0.95);
}

.faq-a {
  margin: 0;
  color: rgba(11, 27, 42, 0.8);
  line-height: 1.9;
  font-size: var(--fs-copy);
  max-width: 520px;
}

/* CONTACT US */
.contact-us {
  padding: 40px 0 72px;
  background: #fff;
}

.contact-card {
  border-radius: 30px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  box-shadow: 0 20px 60px rgba(10, 28, 45, 0.18);
}

.contact-left {
  background: #062852;
  color: #fff;
  padding: 52px 44px;
}

.contact-kicker {
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: 0.38em;
  opacity: 0.85;
  font-weight: 500;
}

.contact-title {
  margin: 0 0 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: var(--fs-title);
  line-height: 1.05;
}

.contact-line {
  margin: 0 0 18px;
  font-size: var(--fs-copy);
  line-height: 1.9;
}

.contact-label {
  color: rgba(255, 255, 255, 0.9);
}

.contact-link {
  color: rgba(255, 255, 255, 0.98);
  text-decoration: none;
}

.contact-link-underline {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-muted {
  display: inline;
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.86);
}

.contact-social {
  margin-top: 34px;
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  overflow: hidden;
}

.social-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-right {
  background: #dff0fb;
  padding: 52px 44px;
}

.contact-form {
  display: grid;
  gap: 26px;
}

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

.field {
  display: grid;
  gap: 10px;
}

.field-full {
  grid-column: 1 / -1;
}

.field-label {
  font-weight: 600;
  color: rgba(11, 27, 42, 0.9);
  font-size: 16px;
}

.field-input {
  border: 0;
  border-bottom: 2px solid rgba(6, 40, 82, 0.95);
  background: transparent;
  padding: 10px 0 12px;
  font: inherit;
  font-size: 16px;
  outline: none;
}

.field-textarea {
  resize: none;
  padding-top: 14px;
}

.contact-submit {
  width: 160px;
  height: var(--control-h);
  border-radius: 999px;
  border: 2px solid rgba(6, 40, 82, 0.95);
  background: transparent;
  font: inherit;
  font-weight: 700;
  font-size: 16px;
  color: rgba(11, 27, 42, 0.95);
}

.contact-submit:hover {
  background: rgba(6, 40, 82, 0.06);
}

.mission-inner {
  position: relative;
}

.mission-kicker {
  margin: 0 0 26px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.38em;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  align-items: end;
  justify-items: center;
}

.stat-value {
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
}

.stat-label {
  margin-top: 8px;
  font-size: 12px;
  opacity: 0.82;
  text-align: center;
}

/* (old placeholder contact styles removed) */

/* RESPONSIVE */
@media (max-width: 980px) {
  .header-inner {
    flex-wrap: wrap;
    row-gap: 10px;
  }

  .nav-links {
    gap: 22px;
  }

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

  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 22px;
  }

  .services-tabs-wrap {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .tabs-scroll {
    display: none;
  }

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

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

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

  .discovery-left {
    padding: 44px 26px;
  }

  .discovery-right {
    padding: 34px 20px 48px;
  }

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

  .faq-grid-wide {
    grid-template-columns: 1fr;
  }

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

  .contact-left,
  .contact-right {
    padding: 44px 26px;
  }

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

@media (max-width: 560px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 12px 0 2px;
  }

  .nav-links.is-open {
    display: flex;
  }

  .hero {
    padding: 46px 0 64px;
  }

  .hero-title {
    font-size: clamp(36px, 9vw, 56px);
  }
}

/* Parallax intentionally removed */

