@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Rajdhani";
  src: url("../fonts/rajdhani-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Rajdhani";
  src: url("../fonts/rajdhani-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Rajdhani";
  src: url("../fonts/rajdhani-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --blue: #4682b4;
  --blue-deep: #004c70;
  --blue-panel: #003a55;
  --ink: #080808;
  --white: #f7f7f7;
  --muted: rgba(247, 247, 247, 0.65);
  --line-light: rgba(255, 255, 255, 0.68);
  --content: 1120px;
  --nav-height: 80px;
  --radius: 18px;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 116px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background: var(--ink);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body::selection {
  color: var(--white);
  background: var(--blue-deep);
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--white);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 48px), var(--content));
  margin-inline: auto;
}

.blue-section {
  color: #071018;
  background-color: var(--blue);
}

.dark-section,
.dark-grid {
  color: var(--white);
  background-color: var(--ink);
}

.dark-grid {
  background-image:
    linear-gradient(rgba(0, 76, 112, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 76, 112, 0.09) 1px, transparent 1px);
  background-size: 44px 44px;
}

.section-pad {
  padding: 110px 0;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 20px;
  left: 50%;
  width: min(calc(100% - 32px), 500px);
  transform: translateX(-50%);
  transition: top 220ms ease, transform 220ms ease;
}

.site-header.is-compact {
  top: 10px;
}

.nav-pill {
  display: grid;
  grid-template-columns: 1fr 1.25fr 70px 1fr 0.75fr;
  align-items: center;
  min-height: var(--nav-height);
  padding: 0 24px;
  overflow: visible;
  color: var(--white);
  background: rgba(64, 64, 64, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 999px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.nav-link {
  position: relative;
  padding: 18px 8px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
}

.nav-link::after {
  position: absolute;
  right: 28%;
  bottom: 13px;
  left: 28%;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.brand-mark {
  position: relative;
  align-self: stretch;
}

.brand-mark img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 78px;
  height: 78px;
  object-fit: contain;
  transform: translate(-50%, -50%);
}

.hero {
  position: relative;
  display: grid;
  min-height: 955px;
  align-items: center;
  padding: 170px 0 135px;
  background-image: url("../images/blue-ajust.webp");
  background-position: center;
  background-size: cover;
}

.hero-content {
  max-width: 850px;
  text-align: center;
}

.eyebrow,
.section-label {
  margin: 0 0 28px;
  font-family: "Rajdhani", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  margin: 0 auto 22px;
  font-family: "Roboto", sans-serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.08;
}

.hero-lead {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(16px, 1.55vw, 20px);
  line-height: 1.45;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button-row.centered,
.hero .button-row {
  justify-content: center;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-light {
  color: var(--blue-deep);
  background: var(--white);
}

.button-light:hover,
.button-light:focus-visible {
  color: var(--white);
  background: var(--blue-deep);
}

.button-ghost,
.button-ghost-dark {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
}

.button-ghost-dark {
  color: #0b2634;
  border-color: rgba(3, 45, 64, 0.38);
}

.button-ghost:hover,
.button-ghost:focus-visible,
.button-ghost-dark:hover,
.button-ghost-dark:focus-visible {
  color: var(--white);
  background: var(--blue-deep);
  border-color: var(--blue-deep);
}

.scroll-cue {
  position: absolute;
  bottom: 110px;
  left: 50%;
  display: grid;
  gap: 12px;
  justify-items: center;
  transform: translateX(-50%);
}

.scroll-cue img:last-child {
  animation: float-arrow 1.8s ease-in-out infinite;
}

@keyframes float-arrow {
  50% { transform: translateY(10px); }
}

.team {
  position: relative;
  min-height: 890px;
}

.team-card {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), 930px);
  margin: 0 auto -115px;
  padding: 34px 46px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.team-card h2 {
  max-width: 660px;
  margin: 0 auto 30px;
  font-size: 22px;
  line-height: 1.25;
  text-align: center;
}

.team-copy {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 38px;
}

.team-copy h3 {
  color: var(--blue-deep);
  font-size: 14px;
}

.team-copy p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.45;
}

.team-photo {
  min-height: 720px;
  background-color: var(--blue);
  background-image: url("../images/mulhervestblue.webp");
  background-position: center;
  background-size: cover;
}

.section-title {
  max-width: 1050px;
  margin: 0 auto 35px;
  font-family: "Roboto", sans-serif;
  font-size: clamp(38px, 4.2vw, 62px);
  font-weight: 400;
  line-height: 1.12;
  text-align: center;
}

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

.split-accent {
  color: #0c1720;
}

.security-intro {
  max-width: 1050px;
  margin: 0 auto 62px;
  text-align: center;
}

.security-intro p {
  margin: 14px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

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

.feature-card {
  min-height: 345px;
  padding: 40px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  transition: background 200ms ease, transform 200ms ease;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.feature-card h3 {
  margin: 30px 0 24px;
  font-size: 23px;
  line-height: 1.25;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.88);
}

.double-check {
  position: relative;
  display: block;
  width: 40px;
  height: 32px;
}

.double-check::before,
.double-check::after {
  position: absolute;
  width: 26px;
  height: 13px;
  content: "";
  border-bottom: 7px solid var(--white);
  border-left: 7px solid var(--white);
  transform: rotate(-45deg);
}

.double-check::before {
  top: 0;
  left: 7px;
}

.double-check::after {
  top: 12px;
  left: 7px;
}

.outline-panel {
  padding: 44px 40px;
  border: 2px solid var(--blue-deep);
  border-radius: var(--radius);
}

.outline-panel > p {
  max-width: 970px;
  margin: 0 auto 32px;
  font-size: 18px;
  text-align: center;
}

.outline-panel h3 {
  margin: 0 0 18px;
  color: var(--blue-deep);
  font-size: 19px;
}

.dot-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dot-list li {
  position: relative;
  padding-left: 22px;
}

.dot-list li::before {
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--blue-deep);
  border-radius: 50%;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 74px;
  align-items: center;
}

.about-copy .section-title {
  margin-bottom: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: left;
  text-transform: uppercase;
}

.about-copy > p:not(.section-label) {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
}

.about-copy .dot-list {
  margin-top: 30px;
  font-size: 17px;
}

.about-photo {
  position: relative;
  margin: 0;
}

.about-photo::after {
  position: absolute;
  top: 4%;
  right: 2%;
  width: 52px;
  height: 2px;
  content: "";
  background: var(--white);
}

.about-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
}

.consultancy {
  position: relative;
  display: grid;
  min-height: 740px;
  align-items: center;
  overflow: hidden;
}

.consultancy-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.consultancy::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.12));
}

.consultancy-card {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 48px), 690px);
  margin-left: max(48px, calc((100vw - var(--content)) / 2));
  padding: 68px 44px;
  background: rgba(0, 58, 85, 0.86);
  border: 1px solid rgba(2, 95, 134, 0.55);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.consultancy-card h2 {
  margin: 0 0 22px;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.13;
}

.consultancy-card p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.partners {
  padding: 44px 0;
  overflow: hidden;
  background: #151515;
  border-block: 1px solid rgba(255, 255, 255, 0.12);
}

.partner-track {
  display: flex;
  width: max-content;
  animation: partner-marquee 28s linear infinite;
}

.partners:hover .partner-track {
  animation-play-state: paused;
}

.partner-set {
  display: flex;
  min-width: 1300px;
  align-items: center;
  justify-content: space-around;
  gap: 72px;
  padding: 0 48px;
}

.partner-set img {
  width: 180px;
  max-height: 82px;
  object-fit: contain;
}

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

.services-overview .section-intro {
  max-width: 980px;
  margin: 0 auto 45px;
  color: var(--muted);
  font-size: 18px;
  text-align: center;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin: 40px 0 82px;
}

.metric-card {
  min-height: 340px;
  padding: 42px;
  text-align: center;
  border: 2px solid var(--blue-deep);
  border-radius: 8px;
}

.metric-card .trend {
  display: block;
  height: 70px;
  color: var(--blue-deep);
  font-family: "Rajdhani", sans-serif;
  font-size: 90px;
  line-height: 0.72;
}

.metric-card strong {
  display: block;
  margin: 18px 0 28px;
  font-size: clamp(70px, 8vw, 112px);
  line-height: 1;
}

.metric-card p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.section-title-small {
  font-size: clamp(34px, 3.8vw, 52px);
}

.service-carousel {
  padding: 0 0 120px;
}

.carousel-shell {
  position: relative;
  width: min(calc(100% - 48px), var(--content));
  margin: 0 auto;
}

.carousel-viewport {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 520ms cubic-bezier(0.22, 0.72, 0.26, 1);
}

.service-slide {
  min-width: 50%;
  margin: 0;
  padding: 0 10px;
}

.service-slide img {
  width: 100%;
  aspect-ratio: 530 / 850;
  object-fit: cover;
}

.carousel-button {
  position: absolute;
  z-index: 3;
  top: 46%;
  display: grid;
  width: 54px;
  height: 76px;
  padding: 0;
  color: var(--white);
  background: rgba(0, 0, 0, 0.24);
  border: 0;
  border-radius: 10px;
  place-items: center;
  font: 400 70px/1 "Rajdhani", sans-serif;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, color 180ms ease;
}

.carousel-button:hover,
.carousel-button:focus-visible {
  color: #7fd8ff;
  background: rgba(0, 76, 112, 0.82);
}

.carousel-button.previous { left: 14px; }
.carousel-button.next { right: 14px; }

.carousel-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  background: rgba(255, 255, 255, 0.28);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.carousel-dot.is-active {
  background: var(--blue-deep);
  box-shadow: 0 0 0 4px rgba(0, 76, 112, 0.26);
}

.service-cta {
  padding-top: 90px;
  text-align: center;
}

.service-cta h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 3.5vw, 48px);
}

.service-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.faq-container {
  max-width: 900px;
}

.faq-kicker {
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(70px, 9vw, 120px);
  line-height: 1;
  text-align: center;
}

.faq .section-title {
  font-weight: 700;
}

.accordion {
  margin-top: 36px;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.accordion details + details {
  border-top: 1px solid rgba(255, 255, 255, 0.55);
}

.accordion summary {
  position: relative;
  padding: 19px 58px 19px 44px;
  color: var(--white);
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::before {
  position: absolute;
  top: 17px;
  left: 14px;
  color: var(--blue-deep);
  content: "+";
  font-size: 25px;
  line-height: 1;
}

.accordion details[open] summary {
  color: #07658d;
}

.accordion details[open] summary::before {
  content: "−";
}

.accordion details p {
  margin: 0;
  padding: 10px 44px 30px;
  color: var(--muted);
  font-size: 18px;
}

.brand-banner {
  display: grid;
  min-height: 330px;
  place-items: center;
}

.brand-banner img {
  width: min(90%, 1000px);
}

.site-footer {
  color: var(--white);
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 42px;
  padding: 60px 0 48px;
}

.footer-brand img {
  width: 190px;
}

.footer-grid h2 {
  margin: 0 0 14px;
  font-size: 19px;
}

.footer-grid a:not(.button) {
  display: block;
  width: fit-content;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.footer-grid a:not(.button):hover,
.footer-grid a:not(.button):focus-visible {
  color: #4ca4ce;
}

.footer-button {
  margin-top: 20px;
  white-space: nowrap;
}

.copyright {
  margin: 0;
  padding: 36px 24px;
  color: var(--blue-deep);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 900px) {
  :root { --nav-height: 62px; }

  .section-pad { padding: 84px 0; }
  .site-header { top: 16px; width: min(calc(100% - 24px), 620px); }
  .nav-pill { grid-template-columns: repeat(4, 1fr); min-height: var(--nav-height); padding: 0 12px; }
  .brand-mark { display: none; }
  .nav-link { padding-inline: 4px; font-size: 12px; }
  .hero { min-height: 900px; padding-top: 160px; }
  .hero h1 { max-width: 680px; }
  .team-copy { grid-template-columns: 1fr; gap: 20px; }
  .team-card { margin-bottom: -90px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { width: min(100%, 560px); margin: 0 auto; }
  .consultancy-card { margin-inline: auto; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 32px), var(--content)); }
  .section-pad { padding: 70px 0; }
  .site-header { width: calc(100% - 24px); }
  .nav-pill { padding: 0 9px; }
  .nav-link { font-size: 11px; }
  .hero {
    min-height: 844px;
    padding: 160px 16px 115px;
    background-position: center top;
  }
  .hero h1 { font-size: 31px; }
  .hero-lead { color: rgba(255, 255, 255, 0.72); font-size: 15px; }
  .eyebrow { font-size: 12px; letter-spacing: 0.26em; }
  .hero .button-row { display: grid; }
  .button { min-height: 52px; }
  .scroll-cue { bottom: 78px; }
  .team { padding-top: 34px; }
  .team-card { width: calc(100% - 58px); margin-bottom: -80px; padding: 28px 18px; }
  .team-card h2 { font-size: 18px; }
  .team-copy p { font-size: 15px; }
  .team-photo { min-height: 720px; background-image: url("../images/mulhervestblue-tablet.webp"); background-position: center; }
  .section-label { margin-bottom: 22px; }
  .section-title { margin-bottom: 28px; font-size: 36px; }
  .security-intro { text-align: left; }
  .security-intro p { font-size: 16px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 280px; padding: 30px; }
  .outline-panel { padding: 32px 20px; }
  .outline-panel > p { font-size: 16px; text-align: left; }
  .about-grid { gap: 44px; }
  .about-copy .section-title { font-size: 42px; }
  .about-copy > p:not(.section-label), .about-copy .dot-list { font-size: 16px; }
  .consultancy { min-height: 660px; }
  .consultancy-card { width: calc(100% - 32px); padding: 42px 24px; }
  .consultancy-card p { font-size: 16px; }
  .partner-set { min-width: 980px; gap: 48px; padding-inline: 28px; }
  .partner-set img { width: 130px; max-height: 60px; }
  .metrics-grid { grid-template-columns: 1fr; gap: 18px; }
  .metric-card { min-height: 280px; padding: 32px 22px; }
  .service-slide { min-width: 100%; padding: 0 2px; }
  .carousel-shell { width: calc(100% - 32px); }
  .carousel-button { width: 44px; height: 62px; font-size: 58px; }
  .carousel-button.previous { left: 6px; }
  .carousel-button.next { right: 6px; }
  .service-cta { padding-top: 70px; }
  .faq-kicker { font-size: 80px; }
  .accordion summary { padding: 17px 38px 17px 38px; font-size: 14px; }
  .accordion summary::before { left: 12px; }
  .accordion details p { padding: 8px 20px 24px 38px; font-size: 15px; }
  .brand-banner { min-height: 220px; }
  .footer-grid { grid-template-columns: 1fr; padding-top: 48px; }
  .footer-brand { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
