:root {
  --navy: #07162f;
  --navy-2: #0d2347;
  --blue: #2d74a8;
  --sky: #b9dff4;
  --sky-2: #e6f5fc;
  --ivory: #f7f3ec;
  --paper: #fffaf1;
  --ink: #111827;
  --muted: #667085;
  --line: rgba(7, 22, 47, 0.12);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(7, 22, 47, 0.16);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --serif: "Baskervville SC", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 18px 24px auto;
  z-index: 1000;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 14px 10px 22px;
  background: rgba(255, 250, 241, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(7, 22, 47, 0.12);
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 45px rgba(7, 22, 47, 0.15);
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 112px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 12px 14px;
  border-radius: 999px;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  background: var(--navy);
  color: var(--white);
}

.site-nav .language-pill {
  background: var(--sky-2);
  color: var(--navy);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--navy);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 0.2s ease;
}

.nav-toggle.is-open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle.is-open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 150px 24px 88px;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 22, 47, 0.98) 0%, rgba(7, 22, 47, 0.86) 44%, rgba(7, 22, 47, 0.52) 100%),
    url("../images/courthouse.jpg") center / cover no-repeat;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  width: 44vw;
  height: 44vw;
  right: -14vw;
  bottom: -22vw;
  background: radial-gradient(circle, rgba(185, 223, 244, 0.38), transparent 68%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1260px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.48fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.hero-copy {
  max-width: 850px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--sky);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(4.4rem, 8.4vw, 9rem);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: -0.085em;
  text-wrap: balance;
}

.hero-text {
  max-width: 680px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.5vw, 1.32rem);
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.5;
}

.hero-panel-list {
  display: grid;
  gap: 10px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.hero-panel-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(7, 22, 47, 0.78);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.45;
}

.hero-panel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(45, 116, 168, 0.12);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--sky);
  color: var(--navy);
  box-shadow:
    0 18px 40px rgba(185, 223, 244, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.btn-primary:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.btn-light {
  background: var(--white);
  color: var(--navy);
}

.hero-actions .btn {
  min-height: 58px;
  padding: 0 28px;
  font-size: 0.96rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 760px;
  margin-top: 46px;
  border: 1px solid rgba(185, 223, 244, 0.2);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(18px);
}

.trust-strip div {
  padding: 18px 20px;
  border-right: 1px solid rgba(185, 223, 244, 0.18);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--white);
  font-size: 0.95rem;
}

.trust-strip span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
}

.hero-panel {
  position: relative;
  padding: 34px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 250, 241, 0.98), rgba(230, 245, 252, 0.94));
  border: 1px solid rgba(185, 223, 244, 0.78);
  box-shadow:
    0 34px 80px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: rgba(185, 223, 244, 0.52);
}

.hero-panel::after {
  content: "TRAINING";
  position: absolute;
  right: -12px;
  bottom: 18px;
  color: rgba(7, 22, 47, 0.055);
  font-size: 4.5rem;
  font-weight: 900;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.hero-panel > * {
  position: relative;
  z-index: 1;
}

.panel-label,
.card-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 20px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--sky-2);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-panel h2 {
  margin: 0;
  max-width: 390px;
  color: var(--navy);
  font-size: clamp(2rem, 3vw, 3.05rem);
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.hero-panel p {
  max-width: 390px;
  margin: 22px 0 26px;
  color: rgba(7, 22, 47, 0.7);
  line-height: 1.72;
}

.hero-panel a,
.service-card a {
  display: inline-flex;
  color: var(--blue);
  font-weight: 900;
}

.hero-panel a {
  align-items: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
}

.hero-panel a:hover {
  background: var(--blue);
}

.quick-actions {
  position: relative;
  z-index: 5;
  width: min(1180px, calc(100% - 48px));
  margin: -44px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.action-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 138px;
  padding: 26px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(7, 22, 47, 0.1);
  box-shadow: 0 18px 50px rgba(7, 22, 47, 0.08);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.action-card::after {
  content: "→";
  position: absolute;
  right: 22px;
  top: 22px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sky-2);
  color: var(--navy);
  font-weight: 900;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.action-card:hover {
  transform: translateY(-6px);
  border-color: rgba(45, 116, 168, 0.25);
  box-shadow: 0 26px 70px rgba(7, 22, 47, 0.13);
}

.action-card:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.action-card span {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
}

.action-card p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.action-card h2 {
  margin: 0;
  max-width: 260px;
  color: var(--navy);
  font-size: clamp(1.35rem, 2vw, 1.95rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.primary-action {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.9), transparent 34%),
    linear-gradient(135deg, var(--sky) 0%, var(--sky-2) 58%, var(--white) 100%);
  border-color: rgba(45, 116, 168, 0.22);
}

.primary-action span {
  background: var(--white);
  color: var(--navy);
}

.section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 110px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading .eyebrow,
.about-copy .eyebrow,
.contact-copy .eyebrow {
  color: var(--blue);
}

.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.3rem, 5vw, 4.9rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.service-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 18px;
}

.service-card {
  min-height: 470px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(7, 22, 47, 0.06);
}

.service-card.featured {
  background: var(--navy);
  color: var(--white);
}

.service-card.featured .card-kicker {
  background: rgba(185, 223, 244, 0.14);
  color: var(--sky);
}

.service-card h3 {
  margin: 0;
  color: inherit;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.service-card p {
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.service-card.featured p,
.service-card.featured li {
  color: rgba(255, 255, 255, 0.72);
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: 26px 0 30px;
  padding: 0;
  list-style: none;
}

.service-card li {
  color: var(--navy);
  font-weight: 800;
}

.service-card li::before {
  content: "•";
  margin-right: 10px;
  color: var(--blue);
}

.service-card a {
  margin-top: 0;
}

.service-card.featured a {
  color: var(--sky);
}

.service-card a {
  width: fit-content;
  align-items: center;
  min-height: 44px;
  margin-top: auto;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--sky-2);
  color: var(--navy);
  font-weight: 900;
}

.service-card a:hover {
  background: var(--sky);
}

.service-card.featured a {
  background: var(--sky);
  color: var(--navy);
}

.service-card.featured a:hover {
  background: var(--white);
}

.service-card.featured {
  position: relative;
  overflow: hidden;
}

.service-card.featured::after {
  content: "TRAIN";
  position: absolute;
  right: -18px;
  bottom: 18px;
  color: rgba(255, 255, 255, 0.045);
  font-size: 6rem;
  font-weight: 900;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.service-card.featured > * {
  position: relative;
  z-index: 1;
}

.focus-badge {
  width: fit-content;
  margin: 8px 0 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--sky);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.training-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: auto 0 18px;
}

.training-mini-grid span {
  display: grid;
  place-items: center;
  min-height: 38px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(185, 223, 244, 0.13);
  color: var(--sky);
  font-size: 0.78rem;
  font-weight: 900;
}

.training-forward {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: stretch;
  padding: 100px max(24px, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(circle at top left, rgba(185, 223, 244, 0.52), transparent 34%),
    var(--navy);
  color: var(--white);
}

.training-forward-copy {
  padding: 34px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.training-forward-copy .eyebrow {
  color: var(--sky);
}

.training-forward-copy h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.training-forward-copy p {
  max-width: 620px;
  margin: 24px 0 28px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
  line-height: 1.75;
}

.training-points {
  display: grid;
  gap: 16px;
}

.training-point {
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--paper);
  color: var(--navy);
  border: 1px solid rgba(185, 223, 244, 0.45);
}

.training-point span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  border-radius: 50%;
  background: var(--sky);
  color: var(--navy);
  font-weight: 900;
}

.training-point h3 {
  margin: 0;
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.training-point p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.training-forward-copy {
  position: relative;
  overflow: hidden;
}

.training-forward-copy::after {
  content: "RESOLUTION";
  position: absolute;
  left: 24px;
  bottom: -10px;
  color: rgba(255, 255, 255, 0.045);
  font-size: clamp(3.6rem, 8vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.training-forward-copy > * {
  position: relative;
  z-index: 1;
}

.training-point {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.training-point:hover {
  transform: translateX(8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16);
}

.about-preview {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 46px;
  align-items: center;
  padding: 100px max(24px, calc((100vw - 1180px) / 2));
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy-2) 100%);
}

.about-image {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: end center;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.38), transparent 38%),
    rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.about-image img {
  width: min(420px, 88%);
  filter: drop-shadow(0 26px 35px rgba(0, 0, 0, 0.22));
}

.about-copy {
  color: var(--white);
}

.about-copy .eyebrow {
  color: var(--sky);
}

.about-copy h2 {
  color: var(--white);
}

.about-copy p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.04rem;
  line-height: 1.85;
}

.about-credentials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 30px 0;
}

.about-credentials div {
  padding: 18px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(185, 223, 244, 0.18);
}

.about-credentials strong {
  display: block;
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.about-credentials span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  line-height: 1.35;
}

@media (max-width: 640px) {
  .about-credentials {
    grid-template-columns: 1fr;
  }
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.process-step {
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--paper);
  border: 1px solid var(--line);
}

.process-step span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 34px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
}

.process-step h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.process-step p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.process-step {
  display: flex;
  flex-direction: column;
}

.process-step a {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-top: auto;
  padding: 0 15px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
  font-size: 0.9rem;
}

.process-step a:hover {
  background: var(--blue);
}

.contact-band {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 36px;
  align-items: start;
  padding: 100px max(24px, calc((100vw - 1180px) / 2));
  background: var(--white);
}

.contact-copy {
  position: sticky;
  top: 130px;
}

.contact-copy p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--ivory);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(7, 22, 47, 0.08);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(7, 22, 47, 0.15);
  border-radius: 18px;
  padding: 16px 18px;
  background: var(--white);
  color: var(--ink);
  outline: 0;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(45, 116, 168, 0.14);
}

.contact-form button {
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  background: var(--blue);
}

.contact-paths {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.contact-paths span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 999px;
  background: var(--sky-2);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 900;
}

.contact-form {
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: "CONTACT";
  position: absolute;
  right: -12px;
  bottom: -8px;
  color: rgba(7, 22, 47, 0.035);
  font-size: clamp(4rem, 9vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.contact-form > * {
  position: relative;
  z-index: 1;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.6fr;
  gap: 44px;
  align-items: start;
  padding: 64px max(24px, calc((100vw - 1180px) / 2)) 30px;
  background: var(--navy);
  color: var(--white);
}

.footer-cta {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 18px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--sky) 0%, var(--sky-2) 100%);
  color: var(--navy);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.footer-cta p {
  margin: 0 0 8px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-cta h2 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.footer-cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-cta-actions a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
  white-space: nowrap;
}

.footer-cta-actions a:last-child {
  background: var(--white);
  color: var(--navy);
}

.footer-brand img {
  width: 150px;
  margin-bottom: 14px;
}

.footer-brand p {
  max-width: 340px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.footer-links,
.footer-social {
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-social a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.footer-links a:hover,
.footer-social a:hover {
  color: var(--sky);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 8px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    inset: 12px 14px auto;
    min-height: 62px;
    padding: 8px 10px 8px 14px;
    border-radius: 28px;
  }

  .brand img {
    width: 82px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 250, 241, 0.98);
    box-shadow: 0 22px 60px rgba(7, 22, 47, 0.16);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 14px 16px;
  }

  .hero {
    min-height: auto;
    padding: 128px 18px 76px;
  }

  .hero-inner,
  .about-preview,
  .contact-band,
  .training-forward {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    gap: 28px;
  }

  .hero h1 {
    max-width: 760px;
    font-size: clamp(3.8rem, 15vw, 6.8rem);
  }

  .hero-panel {
    max-width: 620px;
  }

  .quick-actions,
  .service-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .about-image {
    min-height: 430px;
  }

  .contact-copy {
    position: static;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-cta {
    grid-template-columns: 1fr;
  }

  .footer-cta-actions {
    display: grid;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 108px 18px 64px;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 17vw, 4.8rem);
    line-height: 0.86;
    letter-spacing: -0.075em;
  }

  .hero-text {
    margin-top: 22px;
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
    margin-top: 24px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 54px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .trust-strip div {
    padding: 15px;
    border-right: 0;
    border-bottom: 1px solid rgba(185, 223, 244, 0.16);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .hero-panel {
    padding: 24px;
    border-radius: 28px;
  }

  .hero-panel h2 {
    font-size: 2rem;
  }

  .hero-panel::after {
    font-size: 3.2rem;
  }

  .quick-actions {
    width: min(100% - 28px, 1180px);
    margin-top: -28px;
  }

 .action-card {
  min-height: 112px;
  padding: 20px;
}

.action-card::after {
  opacity: 1;
  transform: none;
}
  .section {
    width: min(100% - 28px, 1180px);
    padding: 78px 0;
  }

  .section-heading h2,
  .about-copy h2,
  .contact-copy h2 {
    font-size: clamp(2.1rem, 12vw, 3.4rem);
  }

  .training-forward,
  .about-preview,
  .contact-band {
    padding: 72px 18px;
  }

  .training-forward-copy {
    padding: 24px;
  }

  .training-forward-copy h2 {
    font-size: clamp(2.2rem, 12vw, 3.5rem);
  }

  .training-point {
    padding: 22px;
  }

  .about-image {
    min-height: 360px;
  }

  .contact-form {
    padding: 20px;
  }

  .footer-cta {
    padding: 22px;
  }

  .footer-cta-actions a {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}