:root {
  --blue: #0077b6;
  --blue-dark: #00699f;
  --navy: #0a376e;
  --navy-deep: #072b59;
  --ink: #15263d;
  --muted: #5b6b7d;
  --line: #d9dde2;
  --surface: #f9f9f9;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(10, 55, 110, 0.08);
  --radius: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Avenir Next", "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--navy);
  font-family: Montserrat, Inter, sans-serif;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3.35rem);
}

h3 {
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
}

ul,
ol {
  margin-top: 0;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.experience-panel :focus-visible,
.final-cta :focus-visible,
.site-footer :focus-visible {
  outline-color: var(--white);
}

.skip-link {
  position: fixed;
  top: -5rem;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--navy);
  color: var(--white);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(calc(100% - 3rem), var(--max-width));
  margin-inline: auto;
}

.section {
  padding: 6.5rem 0;
}

.section--bordered {
  border-top: 1px solid var(--line);
}

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

.section-heading > p:last-child {
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: 1.06rem;
}

.eyebrow {
  margin-bottom: 1.15rem;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.78rem 1.24rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button:hover {
  background: var(--blue-dark);
  box-shadow: 0 9px 22px rgba(0, 119, 182, 0.2);
  transform: translateY(-2px);
}

.button--outline {
  border-color: var(--navy);
  background: transparent;
  color: var(--navy);
}

.button--outline:hover {
  background: var(--navy);
  color: var(--white);
}

.button--light {
  border-color: var(--white);
  background: var(--white);
  color: var(--navy);
}

.button--light:hover {
  background: var(--surface);
}

.text-link {
  display: inline-block;
  width: fit-content;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.text-link::after {
  content: "  →";
  color: var(--blue);
}

.text-link:hover {
  color: var(--blue);
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(217, 221, 226, 0.85);
  background: rgba(249, 249, 249, 0.96);
  backdrop-filter: blur(14px);
}

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

.logo {
  width: 190px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.65rem;
}

.main-nav a {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.main-nav a:not(.button):hover,
.main-nav a[aria-current="page"] {
  color: var(--blue);
}

.main-nav a:not(.button)[aria-current="page"] {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.35rem;
}

.main-nav .button {
  color: var(--white);
}

.menu-toggle {
  display: none;
  padding: 0.5rem;
  border: 0;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  font-weight: 700;
}

.hero,
.page-hero {
  background: var(--surface);
}

.hero {
  overflow: hidden;
  padding: 5.7rem 0 5.4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(490px, 1.06fr);
  align-items: center;
  gap: 4.2rem;
}

.hero-copy h1 {
  max-width: 700px;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 1.6rem 0 1.95rem;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-note {
  margin-top: 1.9rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.hero-visual {
  margin: 0;
}

.hero-visual-frame {
  padding: 1.05rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: auto;
}

.page-hero {
  padding: 5rem 0;
  border-bottom: 1px solid var(--line);
}

.page-hero .breadcrumbs {
  margin-bottom: 2.1rem;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(2.7rem, 5vw, 4.7rem);
}

.page-hero-copy {
  max-width: 760px;
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 1.12rem;
}

.page-hero .button-row {
  margin-top: 2rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 0.5rem;
  color: var(--line);
  content: "/";
}

.breadcrumbs a {
  text-decoration: none;
}

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

.problem-grid,
.service-grid,
.card-grid {
  display: grid;
  gap: 1rem;
  margin-top: 3.1rem;
}

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

.problem-card {
  padding: 1.65rem;
  border-top: 2px solid var(--blue);
}

.problem-card h3 {
  margin-top: 2.2rem;
}

.problem-card p,
.service-card p,
.content-card p,
.feature-row p {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 1rem;
}

.problem-label,
.number-label,
.service-label {
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.services-top,
.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.services-top > p,
.split-heading > p {
  max-width: 430px;
  color: var(--muted);
}

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

.service-card,
.content-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.service-card {
  min-height: 285px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

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

.service-card h2,
.service-card h3 {
  margin-top: 2.35rem;
  font-size: 1.34rem;
}

.service-card .text-link {
  margin-top: auto;
}

.approach-grid,
.content-split,
.profile-grid,
.contact-grid {
  display: grid;
  align-items: start;
  gap: 5rem;
}

.approach-grid {
  grid-template-columns: 0.86fr 1.14fr;
}

.approach-copy p,
.content-copy > p {
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 1.03rem;
}

.approach-list,
.feature-list {
  border-top: 1px solid var(--line);
}

.approach-step {
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}

.feature-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 1rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}

.feature-row > span {
  color: var(--blue);
  font-family: Montserrat, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.approach-step p,
.feature-row p {
  margin-top: 0.35rem;
}

.experience-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.14fr 0.86fr;
  align-items: center;
  gap: 4rem;
  overflow: hidden;
  padding: 4rem;
  border-radius: 28px;
  background: var(--navy);
  color: var(--white);
}

.experience-panel::after {
  position: absolute;
  top: -130px;
  right: -110px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.03), 0 0 0 60px rgba(255, 255, 255, 0.03);
  content: "";
}

.experience-panel h2,
.experience-panel .eyebrow {
  color: var(--white);
}

.experience-panel p {
  max-width: 610px;
  margin: 1.2rem 0 1.7rem;
  color: rgba(255, 255, 255, 0.8);
}

.experience-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.experience-stat {
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.experience-stat strong {
  display: block;
  color: var(--white);
  font-family: Montserrat, sans-serif;
  font-size: 1.55rem;
}

.experience-stat span {
  display: block;
  margin-top: 0.3rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  line-height: 1.4;
}

.training-promo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.training-promo .section-heading {
  max-width: 720px;
}

.content-split {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
}

.content-copy h2:not(:first-child),
.content-copy h3:not(:first-child) {
  margin-top: 2.4rem;
}

.content-copy ul {
  padding-left: 1.25rem;
  margin: 1.2rem 0 0;
}

.content-copy li + li {
  margin-top: 0.48rem;
}

.content-card h3 + p {
  margin-bottom: 1.3rem;
}

.content-card .text-link {
  margin-top: auto;
}

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

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

.check-list {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 1.4rem 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
}

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

.profile-grid {
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  align-items: stretch;
}

.profile-image {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-radius: 24px;
  background: var(--surface);
}

.profile-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.profile-copy p {
  margin-top: 1.2rem;
  color: var(--muted);
}

.faq-list {
  max-width: 900px;
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.faq-list details {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  color: var(--navy);
  cursor: pointer;
  font-family: Montserrat, Inter, sans-serif;
  font-weight: 650;
}

.faq-list details p {
  max-width: 760px;
  margin-top: 0.8rem;
  color: var(--muted);
}

.contact-grid {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
}

.contact-intro p {
  margin-top: 1.2rem;
  color: var(--muted);
}

.contact-details {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.contact-details a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
}

.form-field {
  display: grid;
  gap: 0.4rem;
}

.form-field[hidden] {
  display: none;
}

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

.form-field label,
.checkbox-field label {
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.82rem 0.9rem;
  border: 1px solid #bcc4cc;
  border-radius: 9px;
  background: var(--white);
  color: var(--ink);
}

.form-field textarea {
  min-height: 170px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  outline: 2px solid rgba(0, 119, 182, 0.18);
}

.checkbox-field {
  display: flex;
  grid-column: 1 / -1;
  align-items: start;
  gap: 0.7rem;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 0.25rem;
}

.checkbox-field label {
  color: var(--muted);
  font-weight: 500;
}

.checkbox-field a {
  color: var(--blue);
}

.form-actions {
  grid-column: 1 / -1;
  margin-top: 0.4rem;
}

.legal-copy {
  max-width: 820px;
}

.legal-copy h2 {
  margin-top: 2.5rem;
  font-size: 1.65rem;
}

.legal-copy p,
.legal-copy ul {
  margin-top: 1rem;
  color: var(--muted);
}

.final-cta {
  padding: 5.7rem 0;
  background: var(--blue);
  color: var(--white);
  text-align: center;
}

.final-cta h2 {
  color: var(--white);
}

.final-cta p {
  max-width: 590px;
  margin: 1rem auto 1.6rem;
  color: rgba(255, 255, 255, 0.9);
}

.final-cta .button-row {
  justify-content: center;
}

.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.78);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(230px, 1.1fr) repeat(2, minmax(150px, 0.45fr));
  gap: 3rem;
  padding: 3.4rem 0 2.6rem;
}

.footer-logo {
  width: 165px;
  filter: brightness(0) invert(1);
  opacity: 0.94;
}

.footer-brand p {
  max-width: 330px;
  margin-top: 0.8rem;
  font-size: 0.84rem;
}

.footer-column h2 {
  color: var(--white);
  font-size: 0.88rem;
  letter-spacing: 0;
}

.footer-links {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.8rem;
}

.footer-links a {
  width: fit-content;
  color: inherit;
  font-size: 0.875rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.76rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .approach-grid,
  .experience-panel,
  .content-split,
  .profile-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.8rem;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    max-width: 720px;
  }

  .profile-image {
    width: min(100%, 420px);
    aspect-ratio: 4 / 5;
  }

  .footer-main {
    grid-template-columns: 1.25fr 0.75fr 0.75fr;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 2rem), var(--max-width));
  }

  .section {
    padding: 4.5rem 0;
  }

  .header-inner {
    min-height: 74px;
  }

  .logo {
    width: 158px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 68px;
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100vh - 88px);
    overflow-y: auto;
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .main-nav[data-open="true"] {
    display: flex;
  }

  .main-nav a {
    padding: 0.68rem 0.65rem;
  }

  .main-nav .button {
    margin-top: 0.45rem;
  }

  .hero {
    padding: 4rem 0;
  }

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

  .hero-copy > p:not(.eyebrow),
  .page-hero-copy {
    font-size: 1rem;
  }

  .hero-visual-frame {
    padding: 0.6rem;
    border-radius: 18px;
  }

  .page-hero {
    padding: 3.8rem 0;
  }

  .problem-grid,
  .service-grid,
  .card-grid,
  .card-grid--two,
  .experience-stats,
  .contact-form,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .services-top,
  .split-heading,
  .training-promo,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .services-top > p,
  .split-heading > p {
    margin-top: 1rem;
  }

  .experience-panel {
    padding: 2.1rem 1.4rem;
    border-radius: 20px;
  }

  .service-card {
    min-height: 0;
  }

  .contact-form {
    padding: 1.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
