:root {
  --blue: #092a8b;
  --blue-dark: #071b5b;
  --green: #7ed957;
  --green-dark: #4dae2b;
  --sage: #d4dcc9;
  --sage-light: #eef3e9;
  --grey: #bdbfbe;
  --ink: #132033;
  --muted: #5d6878;
  --white: #ffffff;
  --surface: #f7f9f5;
  --shadow: 0 24px 60px rgba(9, 42, 139, 0.14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --header-height: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}

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

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

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

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

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

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  transition: transform 0.2s ease;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(189, 191, 190, 0.32);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 14px 30px rgba(7, 27, 91, 0.08);
  background: rgba(255, 255, 255, 0.98);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 158px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 3px;
  border-radius: 999px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 11px 18px !important;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 10px 24px rgba(9, 42, 139, 0.18);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--blue-dark);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: var(--sage-light);
  cursor: pointer;
  padding: 12px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 3px;
  width: 100%;
  margin: 4px 0;
  border-radius: 999px;
  background: var(--blue);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(126, 217, 87, 0.24), transparent 34%),
    linear-gradient(135deg, var(--white), var(--sage-light));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -120px -180px auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(9, 42, 139, 0.08);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  align-items: center;
  gap: 54px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 32px;
  height: 4px;
  border-radius: 999px;
  background: var(--green);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  color: var(--blue);
  font-size: clamp(3rem, 6vw, 5.9rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
  font-weight: 800;
}

h2 {
  color: var(--blue);
  font-size: clamp(2.05rem, 4vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  font-weight: 800;
}

h3 {
  color: var(--blue);
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 800;
}

.hero-lede {
  max-width: 680px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 18px 34px rgba(9, 42, 139, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--blue-dark);
}

.button-secondary {
  color: var(--blue);
  background: var(--white);
  border-color: rgba(9, 42, 139, 0.16);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--green);
  box-shadow: 0 14px 26px rgba(9, 42, 139, 0.1);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(126, 217, 87, 0.17);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-card {
  position: relative;
  min-height: 580px;
  border-radius: 44px;
  overflow: hidden;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(7, 27, 91, 0.02), rgba(7, 27, 91, 0.34));
}

.hero-card img {
  width: 100%;
  height: 100%;
  min-height: 580px;
  object-fit: cover;
}

.floating-panel {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 24px;
  color: var(--white);
  background: rgba(9, 42, 139, 0.84);
  backdrop-filter: blur(12px);
}

.floating-panel strong,
.floating-panel span {
  display: block;
}

.floating-panel strong {
  font-size: 1.35rem;
  line-height: 1.15;
}

.floating-panel span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.84);
}

.mission-strip {
  padding: 54px 0;
  color: var(--white);
  background: var(--blue);
}

.mission-strip .section-kicker,
.mission-strip h2 {
  color: var(--white);
}

.mission-strip .section-kicker::before {
  background: var(--green);
}

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

.mission-grid h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.mission-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.06rem;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

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

.service-card,
.rate-card,
.conditions-card,
.training-panel,
.timeline-item,
.contact-form {
  border: 1px solid rgba(189, 191, 190, 0.34);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(19, 32, 51, 0.06);
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -48px -62px auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(126, 217, 87, 0.18);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(126, 217, 87, 0.72);
  box-shadow: var(--shadow);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  border-radius: 18px;
  color: var(--blue);
  background: var(--sage-light);
  font-size: 0.9rem;
  font-weight: 800;
}

.service-card p,
.timeline-item p,
.rate-card p,
.conditions-card p,
.compliance-copy p,
.value-copy p,
.contact-copy p {
  color: var(--muted);
}

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

.value-grid,
.compliance-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 58px;
}

.value-copy p,
.compliance-copy p,
.contact-copy p {
  font-size: 1.04rem;
}

.check-list,
.mini-list,
.training-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.check-list.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.check-list li,
.mini-list li,
.training-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before,
.mini-list li::before,
.training-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(126, 217, 87, 0.18);
}

.image-stack {
  position: relative;
}

.image-primary {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
  border-radius: 42px;
  box-shadow: var(--shadow);
}

.insight-card,
.platform-card {
  position: absolute;
  right: 26px;
  bottom: 26px;
  width: min(310px, calc(100% - 52px));
  padding: 22px;
  border-radius: 24px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 18px 40px rgba(7, 27, 91, 0.16);
}

.insight-card span,
.platform-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.insight-card strong,
.platform-card strong {
  display: block;
  line-height: 1.25;
}

.pathway-section {
  background:
    radial-gradient(circle at 10% 0, rgba(126, 217, 87, 0.24), transparent 28%),
    var(--sage-light);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.timeline-item {
  position: relative;
  min-height: 320px;
  padding: 28px 22px;
  overflow: hidden;
}

.timeline-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  font-size: 1.45rem;
  font-weight: 800;
}

.timeline-item::after {
  content: "";
  position: absolute;
  inset: auto -36px -54px auto;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: rgba(126, 217, 87, 0.2);
}

.training-panel {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 34px;
  padding: 34px;
}

.training-panel h3 {
  margin-bottom: 0;
  font-size: 1.55rem;
}

.training-list {
  columns: 2;
  column-gap: 34px;
}

.training-list li {
  break-inside: avoid;
  margin-bottom: 14px;
  color: var(--muted);
}

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

.rates-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.rate-card {
  display: flex;
  flex-direction: column;
  min-height: 400px;
  overflow: hidden;
}

.rate-card-head {
  padding: 24px;
  color: var(--white);
  background: var(--blue);
}

.rate-card-head h3 {
  margin-bottom: 8px;
  color: var(--white);
}

.rate-card-head p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}

.rate-line {
  padding: 22px 24px 16px;
  border-bottom: 1px solid rgba(189, 191, 190, 0.34);
}

.rate-line span,
.rate-line strong,
.rate-line small {
  display: block;
}

.rate-line span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.rate-line strong,
.placement-price {
  margin: 7px 0;
  color: var(--blue);
  font-size: 1.75rem;
  line-height: 1;
  font-weight: 800;
}

.rate-line small {
  color: var(--muted);
  font-size: 0.75rem;
}

.penalty-grid {
  display: grid;
  gap: 10px;
  padding: 22px 24px 24px;
  margin-top: auto;
}

.penalty-grid span {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 14px;
  background: var(--sage-light);
  font-size: 0.88rem;
}

.placement-price {
  padding: 28px 24px 12px;
  margin: 0;
  font-size: 2.1rem;
}

.mini-list {
  display: grid;
  gap: 12px;
  padding: 0 24px 26px;
  color: var(--muted);
  font-size: 0.92rem;
}

.conditions-card {
  margin-top: 20px;
  padding: 28px;
  background: linear-gradient(135deg, var(--sage-light), var(--white));
}

.conditions-card h3 {
  margin-bottom: 18px;
}

.conditions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.conditions-grid span {
  min-height: 82px;
  padding: 16px;
  border: 1px solid rgba(9, 42, 139, 0.08);
  border-radius: 18px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 600;
}

.compliance-section {
  background:
    linear-gradient(90deg, rgba(9, 42, 139, 0.06), transparent 48%),
    var(--surface);
}

.compliance-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.compliance-media {
  position: relative;
  min-height: 560px;
}

.compliance-media img {
  width: min(360px, 92%);
  margin-inline: auto;
  border-radius: 38px;
  filter: drop-shadow(0 24px 34px rgba(7, 27, 91, 0.18));
}

.platform-card {
  left: 0;
  right: auto;
  bottom: 10px;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  min-height: 260px;
  border-top: 8px solid var(--blue);
  border-bottom: 8px solid var(--green);
}

.gallery-strip img {
  width: 100%;
  height: 310px;
  object-fit: cover;
}

.contact-section {
  background:
    radial-gradient(circle at 90% 10%, rgba(126, 217, 87, 0.24), transparent 32%),
    var(--blue);
  color: var(--white);
}

.contact-section .section-kicker,
.contact-section h2 {
  color: var(--white);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.84);
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-details a,
.contact-details span {
  display: inline-flex;
  width: fit-content;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 700;
}

.contact-form {
  padding: 30px;
  color: var(--ink);
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(189, 191, 190, 0.72);
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--ink);
  background: var(--surface);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(126, 217, 87, 0.22);
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.form-note.is-success {
  color: var(--blue);
  font-weight: 700;
}

.site-footer {
  padding: 56px 0 28px;
  color: rgba(255, 255, 255, 0.84);
  background: var(--blue-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 48px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 64px;
  margin-bottom: 18px;
  border-radius: 20px;
  color: var(--white);
  background: var(--blue);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.08em;
}

.site-footer h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-bottom: 10px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--green);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.86rem;
}

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

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

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

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

@media (max-width: 1080px) {
  .hero-grid,
  .value-grid,
  .compliance-grid,
  .contact-grid,
  .mission-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 480px;
  }

  .hero-card img {
    min-height: 480px;
  }

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

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

  .training-panel {
    grid-template-columns: 1fr;
  }

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

  .compliance-media {
    min-height: auto;
  }

  .platform-card {
    position: relative;
    inset: auto;
    margin-top: -30px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 76px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

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

  .brand img {
    width: 138px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 14px;
    right: 14px;
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid rgba(189, 191, 190, 0.42);
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 12px 14px;
    border-radius: 14px;
  }

  .site-nav a:not(.nav-cta)::after {
    display: none;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: var(--sage-light);
  }

  h1 {
    font-size: clamp(2.7rem, 16vw, 4.4rem);
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-card,
  .hero-card img,
  .image-primary {
    min-height: 420px;
  }

  .check-list.two-col,
  .training-list {
    columns: 1;
    grid-template-columns: 1fr;
  }

  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .gallery-strip img {
    height: 240px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 620px) {
  .service-grid,
  .rates-grid,
  .timeline,
  .conditions-grid {
    grid-template-columns: 1fr;
  }

  .timeline-item,
  .service-card,
  .rate-card {
    min-height: auto;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-card {
    border-radius: 30px;
  }

  .floating-panel {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .conditions-grid span {
    min-height: auto;
  }

  .contact-form,
  .training-panel,
  .conditions-card {
    padding: 22px;
  }
}
