:root {
  --navy: #0d2742;
  --navy-2: #123a5f;
  --blue: #1c77c3;
  --cyan: #42b9c6;
  --light: #f5f8fb;
  --white: #ffffff;
  --text: #182536;
  --muted: #607087;
  --border: #dfe7ef;
  --shadow: 0 18px 55px rgba(12, 38, 66, 0.12);
  --radius: 20px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(223, 231, 239, 0.8);
}

.nav-wrap {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: auto;
  height: 62px;
  max-width: 345px;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.brand:hover .brand-logo {
  transform: scale(1.03);
}

.nav-wrap > .brand {
  margin-left: -25px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.25rem;
  box-shadow: 0 10px 24px rgba(28, 119, 195, 0.24);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 1rem;
  color: var(--navy);
}

.brand-text small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.03em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 600;
}

.main-nav a:hover {
  color: var(--blue);
}

.nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  color: var(--white) !important;
  background: var(--navy);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--navy);
  display: block;
  margin: 5px 0;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 90px;
  background:
    radial-gradient(circle at 85% 20%, rgba(66,185,198,0.18), transparent 28%),
    linear-gradient(180deg, #f9fbfd 0%, #eef5fa 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(13,39,66,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,39,66,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 85%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 54px;
}

.eyebrow {
  display: inline-block;
  color: var(--blue);
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(3.1rem, 6vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  color: var(--navy);
  max-width: 760px;
}

.hero-copy > p {
  margin-top: 28px;
  font-size: 1.16rem;
  color: var(--muted);
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--navy-2));
  color: var(--white);
  box-shadow: 0 14px 30px rgba(28,119,195,0.24);
}

.btn-secondary {
  background: var(--white);
  border-color: var(--border);
  color: var(--navy);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 34px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-proof span::before {
  content: "✓";
  color: var(--cyan);
  margin-right: 8px;
}

.hero-panel {
  position: relative;
  animation: hero-float 4.5s ease-in-out infinite;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.12 / 1;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(223,231,239,0.9);
  border-radius: 28px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
  isolation: isolate;
}

@keyframes hero-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,39,66,0.82), transparent 38%);
  pointer-events: none;
}

.hero-visual-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease;
}

.hero-visual:hover .hero-visual-image {
  transform: scale(1.025);
}

.hero-visual-caption {
  position: absolute;
  z-index: 1;
  left: 28px;
  right: 28px;
  bottom: 26px;
  color: var(--white);
}

.hero-visual-caption span,
.hero-visual-caption strong {
  display: block;
}

.hero-visual-caption span {
  margin-bottom: 5px;
  color: #8ce5ed;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-visual-caption strong {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.15;
}

.metric strong {
  color: var(--cyan);
}

.metric h3 {
  color: var(--navy);
  margin-bottom: 3px;
}

.metric p {
  color: var(--muted);
  font-size: 0.92rem;
}

.trust-strip {
  background: var(--navy);
  color: var(--white);
}

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

.trust-grid div {
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.trust-grid div:last-child {
  border-right: 0;
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  font-size: 1.1rem;
}

.trust-grid span {
  margin-top: 5px;
  color: rgba(255,255,255,0.66);
  font-size: 0.82rem;
}

.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--light);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.section-heading h2,
.about-copy h2,
.contact-section h2 {
  color: var(--navy);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.section-heading p,
.about-copy p,
.contact-section p {
  color: var(--muted);
  font-size: 1.02rem;
  margin-top: 18px;
}

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

.service-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  transition: 0.25s ease;
}

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

.card-number {
  display: inline-block;
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 32px;
}

.service-card h3 {
  color: var(--navy);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--muted);
  font-size: 0.94rem;
}

.two-column {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.section-heading.left {
  margin-bottom: 0;
  position: sticky;
  top: 120px;
}

.industry-list {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}

.industry-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 20px;
  padding: 25px 28px;
  border-bottom: 1px solid var(--border);
}

.industry-item:last-child {
  border-bottom: 0;
}

.industry-item span {
  color: var(--cyan);
  font-weight: 800;
}

.industry-item h3 {
  color: var(--navy);
  font-size: 1.15rem;
}

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

.about-visual {
  min-height: 500px;
  padding: 36px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 20% 20%, rgba(66,185,198,0.4), transparent 30%),
    linear-gradient(135deg, var(--navy), #194e78);
  display: flex;
  align-items: end;
}

.visual-card {
  max-width: 420px;
  background: rgba(255,255,255,0.95);
  padding: 30px;
  border-radius: 20px;
}

.visual-card h2 {
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 14px;
}

.visual-card p {
  color: var(--muted);
}

.about-copy p + p {
  margin-top: 16px;
}

.text-link {
  display: inline-block;
  color: var(--blue);
  font-weight: 700;
  margin-top: 24px;
}

.section-dark {
  background: linear-gradient(135deg, #081d31, #0e3555);
  color: var(--white);
}

.section-heading.light h2 {
  color: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-grid > div {
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
}

.why-grid h3 {
  margin-bottom: 12px;
}

.why-grid p {
  color: rgba(255,255,255,0.68);
  font-size: 0.94rem;
}

.contact-section {
  background: #eef5fa;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
}

.contact-details {
  margin-top: 34px;
}

.contact-details p {
  margin-top: 18px;
}

.contact-details a {
  color: var(--blue);
}

.contact-form {
  background: var(--white);
  border-radius: 24px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: block;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 13px 14px;
  font: inherit;
  color: var(--text);
  background: #fbfdff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(28,119,195,0.18);
  border-color: var(--blue);
}

.contact-form small {
  display: block;
  margin-top: 14px;
  color: var(--muted);
}

.site-footer {
  background: #061522;
  color: var(--white);
  padding: 70px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
}

.footer-brand .brand-text strong {
  color: var(--white);
}

.footer-logo {
  height: 58px;
  max-width: 330px;
}

@media (max-width: 768px) {
  .brand-logo {
    height: 46px;
    max-width: 240px;
  }

  .nav-wrap > .brand {
    margin-left: 0;
  }

  .footer-logo {
    height: 48px;
    max-width: 260px;
  }
}

.footer-grid p {
  color: rgba(255,255,255,0.6);
  max-width: 420px;
  margin-top: 18px;
}

.footer-grid h4 {
  margin-bottom: 14px;
}

.footer-grid > div:not(:first-child) a {
  display: block;
  color: rgba(255,255,255,0.67);
  margin: 9px 0;
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.48);
  font-size: 0.84rem;
}

.privacy-page {
  min-height: 70vh;
  padding: 90px 0;
}

.privacy-page h1 {
  color: var(--navy);
  font-size: 3rem;
  margin-bottom: 20px;
}

.privacy-page h2 {
  color: var(--navy);
  margin-top: 30px;
  margin-bottom: 10px;
}

.privacy-page p {
  color: var(--muted);
  margin-bottom: 14px;
}

.expertise-section {
  padding: 72px 0 78px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.expertise-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 34px;
}

.expertise-heading .eyebrow {
  margin-bottom: 8px;
}

.expertise-heading h2 {
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.1;
}

.expertise-heading p {
  max-width: 430px;
  color: var(--muted);
}

.credential-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.credential-badge {
  min-height: 132px;
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fbfdff;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.credential-badge:hover {
  transform: translateY(-5px);
  border-color: rgba(28,119,195,0.35);
  box-shadow: 0 15px 35px rgba(13,39,66,0.1);
}

.credential-badge span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 2px solid var(--navy);
  border-radius: 50%;
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.credential-badge strong {
  color: var(--navy);
  font-size: 0.78rem;
  line-height: 1.25;
}

.methodology-section {
  background: linear-gradient(180deg, #ffffff, #f5f9fc);
}

.methodology-heading {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.methodology-flow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}

.method-step {
  position: relative;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(13,39,66,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.method-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  z-index: 2;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  color: var(--cyan);
  font-weight: 800;
}

.method-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(13,39,66,0.11);
}

.method-step span {
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.method-step strong {
  color: var(--navy);
  font-size: 0.86rem;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

.leadership-section {
  background: var(--white);
}

.leadership-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  align-items: center;
  gap: 72px;
}

.leadership-photo-wrap {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.leadership-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,39,66,0.92), transparent 48%);
  pointer-events: none;
}

.leadership-photo {
  width: 100%;
  height: 100%;
  min-height: 480px;
  display: block;
  object-fit: cover;
  object-position: center 28%;
  transition: transform 0.7s ease;
}

.leadership-photo-wrap:hover .leadership-photo {
  transform: scale(1.025);
}

.leadership-photo-wrap figcaption {
  position: absolute;
  z-index: 1;
  left: 28px;
  right: 28px;
  bottom: 24px;
  color: var(--white);
}

.leadership-photo-wrap figcaption strong,
.leadership-photo-wrap figcaption span {
  display: block;
}

.leadership-photo-wrap figcaption strong {
  font-size: 1.12rem;
}

.leadership-photo-wrap figcaption span {
  margin-top: 3px;
  color: #9ee8ee;
  font-size: 0.78rem;
  font-weight: 700;
}

.leadership-copy h2,
.proof-heading h2 {
  color: var(--navy);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.leadership-copy p {
  max-width: 720px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.02rem;
}

.leadership-copy strong {
  color: var(--navy);
}

.leadership-copy .text-link {
  display: inline-block;
  margin-top: 24px;
}

.proof-section {
  padding: 72px 0 82px;
  background: var(--light);
  border-top: 1px solid var(--border);
}

.proof-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.proof-grid div {
  min-height: 124px;
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.proof-grid div:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(13,39,66,0.1);
}

.proof-grid strong {
  color: var(--blue);
  font-size: 1.45rem;
  line-height: 1;
}

.proof-grid span {
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
}

@media (max-width: 980px) {
  .hero-grid,
  .two-column,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .section-heading.left {
    position: static;
  }

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

  .methodology-flow {
    grid-template-columns: repeat(4, 1fr);
  }

  .leadership-grid {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 42px;
  }

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

  .method-step::after {
    display: none;
  }

  .hero-visual {
    aspect-ratio: 16 / 10;
    max-width: 720px;
  }
}

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

  .hero-visual-image {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 18px 20px 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .main-nav.open {
    display: flex;
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    padding: 78px 0 65px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-visual {
    aspect-ratio: 4 / 3;
    border-radius: 22px;
  }

  .hero-visual-caption {
    left: 22px;
    right: 22px;
    bottom: 20px;
  }

  .expertise-heading {
    display: block;
  }

  .expertise-heading p {
    margin-top: 14px;
  }

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

  .methodology-flow {
    grid-template-columns: 1fr 1fr;
  }

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

  .leadership-photo-wrap {
    min-height: 300px;
  }

  .leadership-photo {
    min-height: 420px;
    object-position: center 22%;
  }

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

  .section {
    padding: 76px 0;
  }

  .cards-grid,
  .why-grid,
  .trust-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid div {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }

  .trust-grid div:last-child {
    border-bottom: 0;
  }

  .about-visual {
    min-height: 380px;
  }

  .footer-grid {
    gap: 34px;
  }
}
