:root {
  --font-body: "Lora";
  --font-heading: "Nunito Sans";
  --blue: #507cbf;
  --blue-dark: #34588e;
  --white: #ffffff;
  --neutral: #f5f5f5;
  --charcoal: #212121;
  --deep: #15191e;
  --deep-2: #262626;
  --gray: #595959;
  --border: #dfe3e8;
  --orange: #ef6c12;
  --red: #c32622;
  --purple: #68429a;
  --container: 1200px;
  --shadow: 0 24px 60px rgba(18, 28, 40, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--charcoal);
  font-family: var(--font-body), Georgia, serif;
  font-size: 16px;
  line-height: 1.7;
}

body,
button,
input,
select,
textarea {
  font-family: var(--font-body), Georgia, serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand,
.button,
.eyebrow,
nav,
summary,
.card-index,
.hero-points,
.footer-bottom {
  font-family: var(--font-heading), Arial, sans-serif;
}

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

h1,
h2,
h3 {
  color: var(--charcoal);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.8rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 800;
}

h3 {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 750;
}

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

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

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

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 18px;
  top: 18px;
  padding: 12px 18px;
  border-radius: 4px;
  background: var(--white);
  color: var(--charcoal);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

:focus-visible {
  outline: 3px solid #89b7ff;
  outline-offset: 4px;
}

.site-header {
  position: relative;
  z-index: 50;
  background: var(--deep);
  color: var(--white);
}

.utility-bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-heading), Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
}

.utility-message {
  color: #b9d1f6;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand img {
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-transform: uppercase;
}

.brand-copy strong {
  font-size: 1.18rem;
  letter-spacing: 0.08em;
}

.brand-copy small {
  margin-top: 6px;
  color: #a9c9f8;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.26em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(13px, 1.5vw, 23px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding-block: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 13px;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--font-heading), Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.cart-link {
  position: relative;
}

.cart-count {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 0.65rem;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 24px;
  border: 1px solid var(--blue);
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.055em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.button:hover {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding: 10px 18px;
  font-size: 0.7rem;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
}

.button-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.arrow-icon {
  display: inline-block;
  font-size: 1.2em;
  transition: transform 0.2s ease;
}

a:hover .arrow-icon {
  transform: translateX(4px);
}

.mobile-menu {
  display: none;
}

.home-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 15%, rgba(80, 124, 191, 0.23), transparent 28%),
    linear-gradient(115deg, #11161c 0%, #1a2027 55%, #101419 100%);
  color: var(--white);
}

.hero-grid {
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  align-items: stretch;
  gap: 56px;
}

.hero-copy {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 84px 0 70px;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--blue-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 34px;
  height: 2px;
  margin-right: 12px;
  vertical-align: middle;
  background: currentColor;
  content: "";
}

.eyebrow-light {
  color: #8eb9f8;
}

.hero-copy h1 {
  max-width: 790px;
  margin-bottom: 28px;
  color: var(--white);
  font-size: clamp(3.4rem, 6vw, 5.95rem);
}

.hero-lede {
  max-width: 660px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.13rem;
  line-height: 1.8;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 27px 0 0;
  margin: 42px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  list-style: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.hero-points span {
  margin-right: 7px;
  color: #8eb9f8;
}

.hero-visual {
  position: relative;
  min-height: 720px;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #171d24 0%, transparent 23%, transparent 70%, rgba(16, 20, 25, 0.36) 100%);
  content: "";
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  filter: saturate(0.78) contrast(1.08);
}

.hero-seal {
  position: absolute;
  z-index: 2;
  right: -28px;
  bottom: 44px;
  display: flex;
  width: 156px;
  height: 156px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(17, 22, 28, 0.8);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.26);
  color: var(--white);
  font-family: var(--font-heading), Arial, sans-serif;
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-seal i {
  display: block;
  width: 52px;
  height: 1px;
  margin: 12px;
  background: var(--blue);
}

.section {
  padding: 112px 0;
}

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

.section-heading h2 {
  margin-bottom: 22px;
}

.section-heading-center {
  margin-inline: auto;
  text-align: center;
}

.section-heading-center .eyebrow::before {
  display: none;
}

.section-intro {
  color: var(--gray);
  font-size: 1.04rem;
}

.section-intro p:last-child {
  margin-bottom: 0;
}

.path-choices {
  background: var(--white);
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.path-card {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  border-radius: 8px;
  background: var(--deep);
  box-shadow: var(--shadow);
}

.path-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.path-card-training img {
  object-position: center 22%;
}

.path-card:hover img {
  transform: scale(1.035);
}

.path-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 14, 18, 0.05), rgba(10, 14, 18, 0.92) 78%);
}

.path-card-content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 42px;
  color: var(--white);
}

.path-card-content h3 {
  max-width: 460px;
  margin-bottom: 17px;
  color: var(--white);
  font-size: clamp(1.9rem, 3vw, 2.65rem);
}

.path-card-content p:not(.card-index) {
  max-width: 490px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.76);
}

.card-index {
  margin-bottom: 14px;
  color: #a8c9f8;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.path-card-content a,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading), Arial, sans-serif;
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.path-card-content a {
  color: var(--white);
}

.training-path-section {
  background: var(--neutral);
}

.training-path-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.66fr);
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
}

.training-path-copy .section-heading {
  margin-bottom: 34px;
}

.level-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 30px;
  list-style: none;
}

.level-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--border);
  border-left: 4px solid currentColor;
  border-radius: 5px;
  background: var(--white);
}

.level-list li > span {
  display: grid;
  height: 100%;
  min-height: 76px;
  place-items: center;
  background: color-mix(in srgb, currentColor 9%, transparent);
  font-family: var(--font-heading), Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
}

.level-list li div {
  display: flex;
  flex-direction: column;
  padding: 15px 20px;
}

.level-list strong {
  color: var(--charcoal);
  font-family: var(--font-heading), Arial, sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.level-list small {
  margin-top: 2px;
  color: var(--gray);
}

.level-basic { color: var(--orange); }
.level-intermediate { color: var(--blue-dark); }
.level-advanced { color: var(--red); }
.level-precision { color: var(--purple); }

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

.training-path-figure {
  max-width: 530px;
  padding: 22px;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.training-path-figure img {
  width: 100%;
  height: auto;
}

.training-path-figure figcaption {
  padding: 14px 8px 2px;
  color: var(--gray);
  font-size: 0.82rem;
  text-align: center;
}

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

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

.feature-grid article {
  position: relative;
  padding: 38px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: var(--white);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-grid article:hover {
  border-color: #b5c8e4;
  box-shadow: 0 18px 45px rgba(18, 28, 40, 0.09);
  transform: translateY(-4px);
}

.feature-grid article > span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 50%;
  background: #eaf1fb;
  color: var(--blue-dark);
  font-family: var(--font-heading), Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
}

.feature-grid h3 {
  margin-bottom: 14px;
}

.feature-grid p {
  margin-bottom: 0;
  color: var(--gray);
}

.split-promo {
  display: grid;
  min-height: 650px;
  grid-template-columns: 1fr 1fr;
  background: var(--deep);
}

.split-image {
  min-height: 580px;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.05);
}

.split-copy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: clamp(60px, 8vw, 120px);
  color: rgba(255, 255, 255, 0.76);
}

.split-copy h2 {
  max-width: 610px;
  margin-bottom: 24px;
  color: var(--white);
}

.split-copy > p:not(.eyebrow) {
  max-width: 610px;
}

.check-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 20px 0 32px;
  list-style: none;
}

.check-list li::before {
  margin-right: 10px;
  color: #9dc3f8;
  content: "✓";
}

.faq-section {
  background: var(--neutral);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(0, 1fr);
  gap: 80px;
}

.faq-list {
  border-top: 1px solid #ccd2d9;
}

.faq-list details {
  border-bottom: 1px solid #ccd2d9;
}

.faq-list summary {
  position: relative;
  padding: 24px 46px 24px 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 21px;
  right: 6px;
  color: var(--blue-dark);
  content: "+";
  font-size: 1.5rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 690px;
  padding: 0 34px 24px 0;
  margin-bottom: 0;
  color: var(--gray);
}

.final-cta {
  padding: 72px 0;
  background:
    linear-gradient(90deg, rgba(52, 88, 142, 0.96), rgba(28, 46, 71, 0.96)),
    url("../images/range.webp") center / cover;
  color: var(--white);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}

.final-cta .eyebrow {
  margin-bottom: 12px;
}

.final-cta h2 {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.site-footer {
  padding: 74px 0 0;
  background: #0e1217;
  color: rgba(255, 255, 255, 0.68);
}

.breadcrumb {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  color: var(--gray);
  font-family: var(--font-heading), Arial, sans-serif;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumb a {
  color: var(--blue-dark);
}

.page-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(80, 124, 191, 0.23), transparent 30%),
    var(--deep);
  color: var(--white);
}

.page-hero-grid {
  display: grid;
  min-height: 500px;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
}

.page-hero-with-image .page-hero-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.72fr);
  gap: 60px;
}

.page-hero-copy {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.page-hero-copy h1 {
  max-width: 850px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(3.1rem, 6vw, 5.4rem);
}

.page-hero-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

.page-hero-image {
  position: relative;
  min-height: 500px;
  align-self: stretch;
}

.page-hero-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--deep), transparent 35%, rgba(0, 0, 0, 0.2));
  content: "";
}

.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.07);
}

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

.tier-grid,
.process-grid,
.resource-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  list-style: none;
}

.tier-card,
.process-grid li,
.resource-grid article,
.gateway-grid article {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: var(--white);
}

.tier-card {
  border-top: 4px solid currentColor;
}

.tier-card > span,
.process-grid li > span,
.values-list article > span {
  display: block;
  margin-bottom: 44px;
  color: currentColor;
  font-family: var(--font-heading), Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
}

.tier-card h3,
.process-grid h3,
.resource-grid h3,
.gateway-grid h3 {
  margin-bottom: 14px;
}

.tier-card p,
.process-grid p,
.resource-grid p,
.gateway-grid p {
  margin-bottom: 0;
  color: var(--gray);
}

.process-grid {
  counter-reset: process;
}

.process-grid li {
  border-top: 4px solid var(--blue);
}

.process-grid li > span {
  color: var(--blue-dark);
}

.info-notice {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
  gap: 32px;
  padding: 30px 34px;
  margin-top: 52px;
  border-left: 5px solid var(--blue);
  border-radius: 5px;
  background: #edf3fb;
}

.info-notice-orange {
  border-left-color: var(--orange);
  background: #fff3e9;
}

.info-notice > strong {
  color: var(--charcoal);
  font-family: var(--font-heading), Arial, sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.info-notice p:last-of-type {
  margin-bottom: 10px;
}

.gateway-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.gateway-grid article {
  padding: clamp(34px, 5vw, 60px);
  background: var(--neutral);
}

.gateway-grid .card-index {
  color: var(--blue-dark);
}

.gateway-grid h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 86px;
}

.values-list {
  display: grid;
  gap: 1px;
  background: var(--border);
}

.values-list article {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 18px;
  padding: 28px;
  background: var(--white);
}

.values-list article > span {
  margin: 3px 0 0;
  color: var(--blue-dark);
}

.values-list h3 {
  margin-bottom: 8px;
}

.values-list p {
  margin-bottom: 0;
  color: var(--gray);
}

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

.status-pill {
  display: inline-flex;
  padding: 5px 9px;
  margin-bottom: 36px;
  border-radius: 999px;
  background: #fff0d9;
  color: #855000;
  font-family: var(--font-heading), Arial, sans-serif;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.66fr);
  gap: 80px;
}

.contact-cards {
  display: grid;
  gap: 10px;
}

.contact-cards > * {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 22px;
  border: 1px solid var(--border);
  border-radius: 5px;
}

.contact-cards small {
  color: var(--gray);
  font-family: var(--font-heading), Arial, sans-serif;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-cards strong {
  font-family: var(--font-heading), Arial, sans-serif;
}

.contact-placeholder {
  padding: clamp(36px, 5vw, 58px);
  border-radius: 7px;
  background: var(--deep);
  color: rgba(255, 255, 255, 0.72);
}

.contact-placeholder h2 {
  color: var(--white);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
}

.contact-placeholder .button {
  margin: 12px 0 20px;
}

.contact-placeholder small {
  display: block;
}

.narrow {
  max-width: 900px;
}

.training-map-section {
  background: var(--deep);
  color: rgba(255, 255, 255, 0.74);
}

.training-map-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.7fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.training-map-section h2,
.training-map-section h3 {
  color: var(--white);
}

.training-map-figure {
  padding: 22px;
  margin: 0;
  border-radius: 8px;
  background: #f7f4ef;
}

.training-map-figure img {
  width: 100%;
  height: auto;
}

.roadmap-list {
  display: grid;
  gap: 0;
  padding: 0;
  list-style: none;
}

.roadmap-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  padding: 21px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.roadmap-list li > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--font-heading), Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
}

.roadmap-list h3 {
  margin-bottom: 6px;
}

.roadmap-list p {
  margin-bottom: 0;
}

.roadmap-basic { color: #ff8a3d; }
.roadmap-intermediate { color: #8db8f4; }
.roadmap-advanced { color: #f16e69; }
.roadmap-precision { color: #c39cef; }

.catalog-section {
  background: var(--neutral);
}

.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}

.catalog-toolbar button {
  min-height: 42px;
  padding: 9px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  color: var(--gray);
  cursor: pointer;
  font-family: var(--font-heading), Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.catalog-toolbar button.active,
.catalog-toolbar button:hover {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
  color: var(--white);
}

.catalog-count {
  margin: 18px 0 28px;
  color: var(--gray);
  font-family: var(--font-heading), Arial, sans-serif;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.course-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-top: 4px solid currentColor;
  border-radius: 7px;
  background: var(--white);
}

.course-media {
  position: relative;
  display: grid;
  min-height: 184px;
  place-items: center;
  padding: 26px;
  background: #eef1f5;
  color: currentColor;
}

.course-media img {
  max-width: 86%;
  max-height: 122px;
  object-fit: contain;
}

.course-media > span {
  color: color-mix(in srgb, currentColor 20%, transparent);
  font-family: var(--font-heading), Arial, sans-serif;
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
}

.course-media small {
  position: absolute;
  right: 14px;
  bottom: 13px;
  padding: 5px 8px;
  border-radius: 3px;
  background: var(--white);
  color: var(--charcoal);
  font-family: var(--font-heading), Arial, sans-serif;
  font-size: 0.63rem;
  font-weight: 900;
  text-transform: uppercase;
}

.course-body {
  padding: 27px;
}

.course-body h3 {
  margin-bottom: 14px;
  color: var(--charcoal);
  font-size: 1.35rem;
}

.course-body p {
  color: var(--gray);
}

.course-body a {
  color: var(--blue-dark);
  font-family: var(--font-heading), Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.course-basic { color: var(--orange); }
.course-intermediate { color: var(--blue-dark); }
.course-advanced { color: var(--red); }
.course-precision { color: var(--purple); }

.status-gray {
  background: #e9edf1;
  color: #4d5964;
}

.schedule-section {
  background:
    linear-gradient(90deg, rgba(17, 22, 28, 0.95), rgba(25, 33, 42, 0.9)),
    url("../images/range.webp") center / cover;
  color: rgba(255, 255, 255, 0.74);
}

.schedule-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.52fr);
  align-items: center;
  gap: 80px;
}

.schedule-section h2,
.schedule-section h3 {
  color: var(--white);
}

.schedule-section h2 {
  max-width: 770px;
}

.schedule-section p {
  max-width: 720px;
}

.schedule-card {
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
}

.schedule-card h3 {
  margin-top: 20px;
}

.schedule-empty {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.schedule-card ul {
  display: grid;
  gap: 7px;
  padding: 0;
  margin-bottom: 0;
  list-style: none;
}

.schedule-card li::before {
  margin-right: 9px;
  color: #9dc3f8;
  content: "—";
}

.responsibility-section {
  background: #ecf2f9;
}

.responsibility-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 90px;
}

.responsibility-list {
  display: grid;
  gap: 1px;
  padding: 0;
  margin: 0;
  background: #cfdbe9;
  list-style: none;
}

.responsibility-list li {
  display: grid;
  grid-template-columns: minmax(130px, 0.32fr) 1fr;
  gap: 24px;
  padding: 23px 26px;
  background: var(--white);
}

.responsibility-list strong {
  font-family: var(--font-heading), Arial, sans-serif;
  font-size: 0.77rem;
  text-transform: uppercase;
}

.responsibility-list span {
  color: var(--gray);
}

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

.retail-grid article {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: var(--white);
  padding-bottom: 30px;
}

.retail-image {
  height: 235px;
  margin-bottom: 28px;
  background: var(--deep);
}

.retail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72);
}

.retail-grid article > *:not(.retail-image) {
  margin-right: 28px;
  margin-left: 28px;
}

.retail-grid article > p {
  color: var(--gray);
}

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

.ffl-inquiry-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 0.68fr);
  gap: 90px;
}

.mini-disclaimer {
  padding: 22px;
  border-left: 4px solid var(--orange);
  background: #fff4eb;
}

.mini-disclaimer strong {
  font-family: var(--font-heading), Arial, sans-serif;
  text-transform: uppercase;
}

.mini-disclaimer p {
  margin: 4px 0 0;
  color: var(--gray);
}

.inquiry-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--charcoal);
  font-family: var(--font-heading), Arial, sans-serif;
  font-size: 0.71rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.field label span {
  color: var(--gray);
  font-weight: 600;
  text-transform: none;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #bfc8d2;
  border-radius: 4px;
  background: var(--white);
  color: var(--charcoal);
  font-size: 1rem;
}

.field input,
.field select {
  min-height: 48px;
  padding: 9px 12px;
}

.field textarea {
  min-height: 130px;
  padding: 12px;
  resize: vertical;
}

.consent-field {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--gray);
  font-size: 0.86rem;
}

.consent-field input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--blue-dark);
}

.inquiry-form .button {
  width: fit-content;
}

.form-note,
.form-status {
  margin: -4px 0 0;
  color: var(--gray);
  font-size: 0.78rem;
}

.form-status {
  padding: 10px 12px;
  border-radius: 4px;
  background: #eaf4e9;
  color: #285b26;
}

.contact-placeholder .field label {
  color: rgba(255, 255, 255, 0.8);
}

.contact-placeholder .consent-field,
.contact-placeholder .form-note {
  color: rgba(255, 255, 255, 0.65);
}

.contact-placeholder .inquiry-form {
  margin-top: 28px;
}

.contact-placeholder .inquiry-form .button {
  width: fit-content;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 0.9fr 1fr;
  gap: 48px;
}

.site-footer h2 {
  margin-bottom: 21px;
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-footer ul {
  display: grid;
  gap: 8px;
  padding: 0;
  list-style: none;
}

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

.footer-brand .brand {
  margin-bottom: 20px;
  color: var(--white);
}

.footer-brand p {
  max-width: 380px;
}

.site-footer address {
  font-style: normal;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 26px 0;
  margin-top: 58px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 1120px) {
  .desktop-nav,
  .desktop-only {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu summary {
    display: grid;
    width: 42px;
    height: 42px;
    place-content: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    cursor: pointer;
    list-style: none;
  }

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

  .mobile-menu summary span {
    display: block;
    width: 17px;
    height: 2px;
    background: var(--white);
  }

  .mobile-menu-panel {
    position: absolute;
    top: 56px;
    right: 0;
    width: min(340px, calc(100vw - 40px));
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: #171d24;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  }

  .mobile-nav {
    display: grid;
  }

  .mobile-nav a {
    padding: 10px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
  }

  .mobile-quick-links {
    display: flex;
    gap: 18px;
    padding-top: 18px;
    color: #a9c9f8;
    font-family: var(--font-heading), Arial, sans-serif;
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
  }

  .hero-grid {
    gap: 26px;
  }

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

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

@media (max-width: 820px) {
  .utility-message {
    display: none;
  }

  .header-actions > .button,
  .header-actions > .icon-link {
    display: none;
  }

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

  .brand img {
    width: 48px;
    height: 48px;
  }

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

  .hero-copy {
    padding: 76px 0 58px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 12vw, 4.8rem);
  }

  .hero-visual {
    min-height: 520px;
  }

  .hero-visual::after {
    background: linear-gradient(180deg, #171d24 0%, transparent 25%);
  }

  .hero-seal {
    right: 20px;
  }

  .section {
    padding: 82px 0;
  }

  .path-grid,
  .training-path-grid,
  .feature-grid,
  .faq-grid,
  .page-hero-with-image .page-hero-grid,
  .resource-grid,
  .about-grid,
  .contact-grid,
  .training-map-grid,
  .schedule-grid,
  .responsibility-grid,
  .ffl-inquiry-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-image {
    min-height: 440px;
  }

  .page-hero-image::after {
    background: linear-gradient(180deg, var(--deep), transparent 30%);
  }

  .path-card {
    min-height: 500px;
  }

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

  .training-path-grid,
  .faq-grid {
    gap: 50px;
  }

  .training-path-figure {
    max-width: 560px;
    margin-inline: auto;
  }

  .split-promo {
    grid-template-columns: 1fr;
  }

  .split-image {
    min-height: 420px;
  }

  .split-copy {
    padding: 72px max(20px, calc((100vw - 720px) / 2));
  }

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .utility-inner {
    font-size: 0.62rem;
  }

  .brand-copy strong {
    font-size: 0.96rem;
  }

  .brand-copy small {
    font-size: 0.54rem;
  }

  .hero-copy h1 {
    font-size: 2.95rem;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .hero-points {
    display: grid;
    gap: 10px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-seal {
    width: 128px;
    height: 128px;
  }

  .path-card {
    min-height: 520px;
  }

  .path-card-content {
    padding: 28px;
  }

  .feature-grid article {
    padding: 30px;
  }

  .tier-grid,
  .process-grid,
  .gateway-grid,
  .course-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .info-notice {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .responsibility-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@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;
  }
}

/* WordPress and WooCommerce integration */

.course-card[hidden] {
  display: none;
}

.protacmd-refined #page {
  min-height: 100vh;
}

.protacmd-refined .site-content {
  min-height: 40vh;
}

.protacmd-refined .ast-container {
  width: min(calc(100% - 40px), var(--container));
  max-width: var(--container);
  padding-inline: 0;
}

.protacmd-refined .site-main,
.protacmd-refined .entry-content {
  color: var(--charcoal);
}

.protacmd-refined .entry-content > :last-child {
  margin-bottom: 0;
}

.protacmd-shop-gateway {
  width: 100%;
  padding: 56px;
  margin: 46px 0 34px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 85% 10%, rgba(80, 124, 191, 0.24), transparent 32%),
    var(--deep);
  color: rgba(255, 255, 255, 0.76);
}

.protacmd-shop-gateway > h1 {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(2.7rem, 5vw, 4.7rem);
}

.protacmd-shop-gateway > p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 34px;
}

.protacmd-shop-gateway .gateway-grid article {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
}

.protacmd-shop-gateway .gateway-grid h2 {
  color: var(--white);
  font-size: 1.7rem;
}

.protacmd-shop-gateway .gateway-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.protacmd-shop-gateway .text-link {
  color: #a9c9f8;
}

.protacmd-refined .woocommerce .woocommerce-breadcrumb {
  color: var(--gray);
  font-family: var(--font-heading), Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.protacmd-refined .woocommerce .woocommerce-breadcrumb a {
  color: var(--blue-dark);
}

.protacmd-refined .woocommerce ul.products li.product,
.protacmd-refined .wc-block-grid__product {
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(18, 28, 40, 0.07);
}

.protacmd-refined .woocommerce ul.products li.product .woocommerce-loop-product__title,
.protacmd-refined .wc-block-grid__product-title {
  color: var(--charcoal);
  font-family: var(--font-heading), Arial, sans-serif;
  font-weight: 800;
}

.protacmd-refined .woocommerce ul.products li.product .price,
.protacmd-refined .woocommerce div.product p.price,
.protacmd-refined .woocommerce div.product span.price {
  color: var(--blue-dark);
  font-family: var(--font-heading), Arial, sans-serif;
  font-weight: 850;
}

.protacmd-refined .woocommerce a.button,
.protacmd-refined .woocommerce button.button,
.protacmd-refined .woocommerce input.button,
.protacmd-refined .wc-block-components-button,
.protacmd-refined .wp-element-button {
  min-height: 46px;
  padding: 12px 21px;
  border: 1px solid var(--blue);
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-heading), Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.protacmd-refined .woocommerce a.button:hover,
.protacmd-refined .woocommerce button.button:hover,
.protacmd-refined .woocommerce input.button:hover,
.protacmd-refined .wc-block-components-button:hover,
.protacmd-refined .wp-element-button:hover {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
  color: var(--white);
}

.protacmd-refined .woocommerce-message,
.protacmd-refined .woocommerce-info,
.protacmd-refined .woocommerce-error {
  border-top-color: var(--blue);
  border-radius: 5px;
  background: #eef4fc;
}

.protacmd-refined .woocommerce form .form-row input.input-text,
.protacmd-refined .woocommerce form .form-row textarea,
.protacmd-refined .woocommerce form .form-row select,
.protacmd-refined .wc-block-components-text-input input,
.protacmd-refined .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input {
  min-height: 48px;
  border: 1px solid #cbd2d9;
  border-radius: 4px;
  background: var(--white);
}

.protacmd-refined .woocommerce table.shop_table,
.protacmd-refined .wc-block-cart-items {
  overflow: hidden;
  border-color: var(--border);
  border-radius: 6px;
}

.protacmd-refined .woocommerce-account .woocommerce-MyAccount-navigation ul {
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 5px;
  list-style: none;
}

.protacmd-refined .woocommerce-account .woocommerce-MyAccount-navigation a {
  display: block;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--charcoal);
  font-family: var(--font-heading), Arial, sans-serif;
  font-weight: 750;
}

.protacmd-refined .woocommerce-account .woocommerce-MyAccount-navigation li:last-child a {
  border-bottom: 0;
}

@media (max-width: 820px) {
  .protacmd-refined .ast-container {
    width: min(calc(100% - 28px), var(--container));
  }

  .protacmd-shop-gateway {
    padding: 36px 24px;
  }
}
