
:root {
  --ink-navy: #0F1F3D;
  --deep-blue: #1B3A6B;
  --accent-blue: #2F6FED;
  --accent-blue-dark: #1E54C4;
  --bg-cloud: #F2F6FD;
  --white: #FFFFFF;
  --slate: #5B6472;
  --slate-light: #8993A4;
  --border: #DCE4F2;

  --font-display: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;

  --max-width: 1160px;
  --radius: 14px;
  --transition: 0.25s ease;
}


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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink-navy);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.01em; }

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

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-blue-dark);
  margin-bottom: 14px;
  display: block;
}

.eyebrow--center { text-align: center; }
.eyebrow--light { color: #9DBBFF; }

.section__title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--ink-navy);
}

.section__title--center { text-align: center; max-width: 680px; margin-left: auto; margin-right: auto; }

.section__text {
  color: var(--slate);
  font-size: 1.02rem;
  max-width: 560px;
  margin-bottom: 16px;
}

.section__title--center + .section__text { margin-left: auto; margin-right: auto; text-align: center; }


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  border: none;
  cursor: pointer;
}

.btn--primary {
  background: var(--accent-blue);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(47, 111, 237, 0.32);
}

.btn--primary:hover {
  background: var(--accent-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(47, 111, 237, 0.42);
}

.btn--ghost {
  background: transparent;
  color: var(--ink-navy);
  border: 1.5px solid var(--border);
}

.btn--ghost:hover {
  border-color: var(--ink-navy);
  transform: translateY(-2px);
}

.btn--ghost-light {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}


.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 22px 0;
}

.nav.scrolled, .nav.nav--solid {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--border);
  padding: 14px 0;
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-navy);
}

.nav__logo-mark { display: flex; color: var(--ink-navy); }

.nav__logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
}

.nav__logo-thin { font-weight: 500; color: var(--slate); }

.nav__links {
  display: flex;
  gap: 36px;
  margin-left: auto;
  margin-right: 24px;
}

.nav__links a {
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
}

.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-blue);
  transition: width var(--transition);
}

.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }

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

.nav__burger span {
  width: 22px;
  height: 2px;
  background: var(--ink-navy);
  transition: transform var(--transition), opacity var(--transition);
}


.nav--on-dark:not(.scrolled):not(.nav--solid) .nav__logo,
.nav--on-dark:not(.scrolled):not(.nav--solid) .nav__logo-thin,
.nav--on-dark:not(.scrolled):not(.nav--solid) .nav__links a,
.nav--on-dark:not(.scrolled):not(.nav--solid) .nav__burger span {
  color: var(--white);
}
.nav--on-dark:not(.scrolled):not(.nav--solid) .nav__burger span { background: var(--white); }
.nav--on-dark:not(.scrolled):not(.nav--solid) .nav__logo-mark { color: var(--white); }

.hero-carousel {
  position: relative;
  height: 92vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-carousel__slides { position: absolute; inset: 0; }

.hero-carousel__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-carousel__slide.is-active { opacity: 1; }

.hero-carousel__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 14, 30, 0.72) 0%, rgba(6, 14, 30, 0.6) 45%, rgba(6, 14, 30, 0.82) 100%);
}

.hero-carousel__content-stack {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 760px;
  padding: 0 32px;
  min-height: 260px;
}

.hero-carousel__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s ease;
}

.hero-carousel__content.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-carousel__content .eyebrow { margin-bottom: 16px; }

.hero-carousel__title {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 22px;
}

.hero-carousel__subtitle {
  font-size: 1.1rem;
  color: #D7DEEC;
  max-width: 600px;
  margin: 0 auto 34px;
}

.hero-carousel__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-carousel__dots {
  position: absolute;
  bottom: 34px;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.hero-carousel__dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}

.hero-carousel__dots .dot.is-active {
  background: var(--white);
  transform: scale(1.25);
}


.page-header {
  padding: 168px 0 40px;
  background: linear-gradient(180deg, var(--bg-cloud) 0%, var(--white) 100%);
  text-align: center;
}

.page-header .eyebrow { text-align: center; }

.page-header__title {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  line-height: 1.15;
  max-width: 760px;
  margin: 0 auto 18px;
}

.page-header__text {
  color: var(--slate);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto;
}


.intro { padding: 100px 0; }

.intro__inner { max-width: 780px; margin: 0 auto; text-align: center; }

.intro .section__title, .intro .section__text { margin-left: auto; margin-right: auto; text-align: center; }


.services-overview { padding: 100px 0; background: var(--bg-cloud); }

.services-overview__grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: block;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(15, 31, 61, 0.1);
  border-color: var(--accent-blue);
}

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--ink-navy);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card__title { font-size: 1.08rem; margin-bottom: 10px; }

.card__text { font-size: 0.92rem; color: var(--slate); }

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--accent-blue);
}


.banner {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.banner__img { width: 100%; height: 100%; object-fit: cover; }

.banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 31, 61, 0.88) 0%, rgba(15, 31, 61, 0.55) 60%, rgba(15, 31, 61, 0.35) 100%);
  display: flex;
  align-items: center;
  padding: 0 32px;
}

.banner__text {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  font-weight: 600;
  line-height: 1.35;
  max-width: 560px;
  margin: 0 auto 0 max(32px, calc((100vw - var(--max-width)) / 2));
}


.closing-cta { padding: 100px 0; background: var(--ink-navy); color: var(--white); text-align: center; }

.closing-cta .eyebrow { color: var(--accent-blue); text-align: center; }

.closing-cta__title { font-size: clamp(1.9rem, 3.4vw, 2.6rem); max-width: 700px; margin: 0 auto 18px; }

.closing-cta__text { color: #B9C2D4; max-width: 560px; margin: 0 auto 34px; font-size: 1.02rem; }

.closing-cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }


.service-block { padding: 84px 0; }

.service-block--tint { background: var(--bg-cloud); }

.service-block__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}

.service-block__icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: var(--ink-navy);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.service-block__title { font-size: clamp(1.4rem, 2.4vw, 1.8rem); margin-bottom: 16px; }

.service-block__text { color: var(--slate); font-size: 1rem; max-width: 460px; }

.service-block__list-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 18px;
  color: var(--ink-navy);
}

.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; }

.checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.94rem;
  color: var(--ink-navy);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-block--tint .checklist__item { background: var(--white); }

.checklist__item:hover { transform: translateY(-3px); box-shadow: 0 10px 22px rgba(15,31,61,0.08); border-color: var(--accent-blue); }

.checklist__item svg { flex-shrink: 0; color: var(--accent-blue); margin-top: 2px; }

.checklist__item strong { display: block; margin-bottom: 2px; }
.checklist__item span.sub { color: var(--slate); font-size: 0.86rem; font-weight: 400; }


.about-intro { padding: 30px 0 60px; }

.about-intro__inner { max-width: 780px; margin: 0 auto; text-align: center; }

.about-intro .section__title, .about-intro .section__text { margin-left: auto; margin-right: auto; text-align: center; }

.about-intro__text {
  text-align: left;
  max-width: 700px;
  margin: 0 auto 16px;
  color: var(--slate);
  font-size: 1.02rem;
}

.mission-vision { padding: 20px 0 90px; }

.mission-vision__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.mv-card {
  background: var(--bg-cloud);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 34px;
}

.mv-card__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--accent-blue-dark);
  margin-bottom: 12px;
  display: block;
}

.mv-card__text { font-size: 1.04rem; color: var(--ink-navy); line-height: 1.55; }

.offices { padding: 90px 0; background: var(--bg-cloud); }

.office-map {
  margin-top: 46px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 31, 61, 0.16);
}

.office-map__frame { position: relative; width: 100%; line-height: 0; }

.office-map__svg { width: 100%; height: auto; display: block; }

.office-map__land { fill: #33456e; }

.office-map__link {
  stroke: var(--accent-blue);
  stroke-width: 0.3;
  opacity: 0.7;
  fill: none;
}

.office-map__pulse {
  fill: var(--accent-blue);
  opacity: 0.5;
  transform-origin: center;
  transform-box: fill-box;
  animation: pulse 2.4s ease-out infinite;
}

.office-map__dot-marker {
  fill: var(--white);
  stroke: var(--accent-blue);
  stroke-width: 0.5;
}

.office-map__callout--pos {
  position: absolute;
  transform: translateY(-50%);
  white-space: nowrap;
  background: rgba(10, 18, 38, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 8px 14px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  backdrop-filter: blur(2px);
}

.office-map__callout--pos strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  color: var(--white);
}

.office-map__callout--pos span {
  font-size: 0.68rem;
  color: #B9C4DD;
}

@keyframes pulse {
  0% { transform: scale(0.6); opacity: 0.55; }
  70% { transform: scale(2.8); opacity: 0; }
  100% { transform: scale(2.8); opacity: 0; }
}

.office-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
}

.office-legend__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-navy);
}

.office-legend__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent-blue);
  display: inline-block;
}

@media (prefers-reduced-motion: reduce) {
  .office-map__pulse { animation: none; opacity: 0.45; }
}

@media (max-width: 640px) {
  .office-map__callout--pos { padding: 6px 10px; }
  .office-map__callout--pos strong { font-size: 0.6rem; }
  .office-map__callout--pos span { font-size: 0.56rem; }
}

.tag-section { padding: 90px 0; }

.tag-grid {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.tag-pill {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-navy);
  background: var(--bg-cloud);
  border: 1px solid var(--border);
  padding: 12px 22px;
  border-radius: 999px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.tag-pill:hover {
  transform: translateY(-3px);
  border-color: var(--accent-blue);
  background: var(--white);
  box-shadow: 0 10px 22px rgba(15,31,61,0.08);
}

.tag-section--dark { background: var(--ink-navy); }
.tag-section--dark .section__title { color: var(--white); }
.tag-section--dark .section__text { color: #B9C2D4; }
.tag-section--dark .tag-pill {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.16);
  color: var(--white);
}
.tag-section--dark .tag-pill:hover { background: rgba(255,255,255,0.12); border-color: var(--accent-blue); }


.split-section { padding: 90px 0; }

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.split-layout__intro-text { color: var(--slate); font-size: 1.02rem; margin-bottom: 24px; max-width: 480px; }


.info-card {
  position: relative;
  background: var(--ink-navy);
  color: var(--white);
  border-radius: 20px;
  padding: 34px;
  overflow: hidden;
}

.info-card__glow {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(47, 111, 237, 0.45) 0%, rgba(47, 111, 237, 0) 70%);
  pointer-events: none;
}

.info-card__eyebrow {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  color: var(--accent-blue);
  margin-bottom: 8px;
  position: relative;
}

.info-card__title { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 22px; position: relative; }

.info-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px 12px;
  border-radius: 12px;
  background: transparent;
  border: none;
  text-align: left;
  font-family: inherit;
  transition: background var(--transition), transform var(--transition);
}

a.info-row, button.info-row { cursor: pointer; }

.info-row:hover { background: rgba(255, 255, 255, 0.06); transform: translateX(4px); }

.info-row__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(47, 111, 237, 0.16);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-row__text { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }

.info-row__label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: #8FA3CC;
}

.info-row__value { font-size: 0.98rem; font-weight: 600; color: var(--white); overflow-wrap: anywhere; }

.info-row__action { font-size: 0.8rem; font-weight: 600; color: var(--accent-blue); flex-shrink: 0; }

.info-card__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
}

.info-chip {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.7rem;
  color: #C3D0EA;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 12px;
  border-radius: 999px;
}

.form-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 34px;
  box-shadow: 0 20px 50px rgba(15,31,61,0.06);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-field { display: flex; flex-direction: column; gap: 6px; }

.form-field label { font-size: 0.82rem; font-weight: 600; color: var(--ink-navy); }

.form-field input, .form-field textarea {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink-navy);
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
  background: var(--white);
}

.form-field input:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(47, 111, 237, 0.16);
}

.form-submit { margin-top: 4px; width: 100%; }

.form-note { font-size: 0.85rem; color: var(--deep-blue); min-height: 1.2em; }


.footer { padding: 40px 0; border-top: 1px solid var(--border); }

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__links { display: flex; gap: 24px; flex-wrap: wrap; }

.footer__links a { font-size: 0.88rem; color: var(--slate); transition: color var(--transition); }

.footer__links a:hover { color: var(--ink-navy); }

.footer__copy { font-size: 0.82rem; color: var(--slate-light); width: 100%; text-align: center; margin-top: 8px; }


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

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

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}


@media (max-width: 960px) {
  .service-block__inner, .mission-vision__grid, .split-layout { grid-template-columns: 1fr; }
  .services-overview__grid { grid-template-columns: repeat(2, 1fr); }
  .office-map__callout strong { font-size: 0.68rem; }
  .checklist { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .banner { height: 260px; }
  .hero-carousel { height: 82vh; }
  .nav__links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 32px;
    gap: 18px;
    box-shadow: 0 12px 24px rgba(15,31,61,0.08);
    display: none;
  }
  .nav__links a { color: var(--ink-navy) !important; }
  .nav__links.open { display: flex; }
  .nav__burger { display: flex; }
  .nav__cta { display: none; }
  .page-header { padding: 130px 0 60px; }
}

@media (max-width: 560px) {
  .services-overview__grid { grid-template-columns: 1fr; }
  .section__inner { padding: 0 20px; }
  .nav__inner, .footer__inner { padding: 0 20px; }
  .form-panel, .info-card { padding: 24px; }
}
