@font-face {
  font-family: "Century Gothic Local";
  src: url("assets/fonts/CenturyGothic-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Century Gothic Local";
  src: url("assets/fonts/CenturyGothic-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

:root {
  --ink: #102016;
  --muted: #5d6d65;
  --page: #f4f7f3;
  --panel: #ffffff;
  --navy: #0a315f;
  --navy-deep: #071f3d;
  --green: #268518;
  --green-dark: #1c6414;
  --yellow: #ffe100;
  --line: #d8e2d9;
  --soft-green: #eaf4e7;
  --shadow: 0 18px 48px rgba(15, 42, 28, 0.14);
  --shadow-soft: 0 10px 28px rgba(20, 50, 31, 0.08);
  --shadow-strong: 0 22px 54px rgba(7, 31, 61, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 0;
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-family: "Century Gothic Local", "Century Gothic", Arial, sans-serif;
  overflow-x: hidden;
}

section[id],
main[id] {
  scroll-margin-top: 104px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  border-radius: 8px;
  padding: 10px 14px;
  color: #fff;
  background: var(--navy);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 0.18s ease;
}

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

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

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

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

h1,
h2,
h3,
strong,
p,
li,
a,
label {
  overflow-wrap: break-word;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: 3.95rem;
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 2.35rem;
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: #13261a;
  font-size: 1.08rem;
  line-height: 1.25;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 78px;
  padding: 14px max(28px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(216, 226, 217, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(7, 31, 61, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
}

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

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  color: #263a2d;
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}

.site-nav a,
.footer-links a,
.text-link {
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.footer-links a:hover,
.text-link:hover {
  border-bottom-color: var(--green);
}

.header-contact {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 0;
}

.header-phone,
.header-whatsapp {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--navy);
  background: #fff;
  font-size: 0.86rem;
  font-weight: 700;
}

.header-whatsapp {
  color: #fff;
  border-color: rgba(38, 133, 24, 0.8);
  background: var(--green);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 20px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.button-primary {
  color: #fff;
  background: var(--green);
  box-shadow: 0 10px 24px rgba(38, 133, 24, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--green-dark);
  box-shadow: 0 14px 30px rgba(28, 100, 20, 0.28);
  transform: translateY(-1px);
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.12);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.site-nav a:focus-visible,
.footer-links a:focus-visible,
.button:focus-visible,
.header-contact a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(255, 225, 0, 0.45);
  outline-offset: 3px;
}

.hero {
  position: relative;
  min-height: clamp(560px, 76svh, 740px);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(110deg, rgba(7, 31, 61, 0.99) 0%, rgba(7, 31, 61, 0.96) 52%, rgba(10, 49, 95, 0.9) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0)),
    var(--navy-deep);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 7px;
  background: linear-gradient(90deg, var(--green), var(--yellow), var(--green));
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: calc(100% - 48px);
  max-width: 1180px;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  padding: 58px 0 72px;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-mark {
  position: absolute;
  right: max(34px, calc((100vw - 1180px) / 2));
  top: 118px;
  width: min(430px, 34vw);
  opacity: 0.18;
  filter: saturate(1.2);
}

.hero-gear {
  position: absolute;
  opacity: 0.28;
}

.hero-gear-large {
  right: max(70px, calc((100vw - 1080px) / 2));
  bottom: 120px;
  width: 160px;
}

.hero-gear-small {
  right: max(250px, calc((100vw - 760px) / 2));
  bottom: 244px;
  width: 88px;
}

.hero-course-card {
  position: absolute;
  right: max(28px, calc((100vw - 1180px) / 2));
  bottom: 78px;
  width: min(460px, 36vw);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 6px solid var(--yellow);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.14);
}

.hero-course-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-course-card strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.5;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: var(--yellow);
}

.article-hero .eyebrow {
  color: var(--yellow);
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.13rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 650px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-strip li {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 4px solid var(--yellow);
  border-radius: 8px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.section {
  padding: 82px 0;
  background: var(--panel);
  overflow-x: hidden;
}

.section-muted {
  background: var(--page);
}

.section-inner {
  width: calc(100% - 48px);
  max-width: 1180px;
  margin: 0 auto;
}

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

.section-heading p,
.quote-copy p,
.qcto-panel p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

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

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

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

.decision-grid .route-card {
  min-height: 256px;
}

.industry-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-top: 5px solid var(--navy);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.industry-card:hover,
.industry-card:focus-within {
  border-color: rgba(10, 49, 95, 0.42);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.industry-card p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

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

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

.service-card,
.why-grid article {
  min-height: 212px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--green);
  border-radius: 8px;
  padding: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.service-card:hover,
.service-card:focus-within,
.why-grid article:hover,
.why-grid article:focus-within {
  border-color: rgba(38, 133, 24, 0.46);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.service-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 30px;
  margin-bottom: 24px;
  border-radius: 8px;
  color: var(--navy);
  background: var(--soft-green);
  font-size: 0.78rem;
  font-weight: 700;
}

.service-card p,
.why-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

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

.course-grid article {
  min-height: 196px;
  border: 1px solid #cfdccd;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(20, 50, 31, 0.06);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.course-grid article:hover,
.course-grid article:focus-within {
  border-color: rgba(38, 133, 24, 0.5);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.course-grid a {
  min-height: 196px;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 16px;
  color: inherit;
}

.course-grid a:hover,
.course-grid a:focus-visible {
  background: linear-gradient(180deg, #fff, #f8fbf7);
}

.course-grid span {
  align-self: flex-start;
  margin-bottom: 14px;
  border-radius: 8px;
  padding: 5px 9px;
  color: var(--green-dark);
  background: var(--soft-green);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.course-grid strong {
  color: #142719;
  font-size: 0.95rem;
  line-height: 1.38;
}

.course-grid em {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.82rem;
  font-style: normal;
  line-height: 1.45;
}

.course-grid small {
  display: block;
  margin-top: auto;
  padding-top: 14px;
  color: #52645b;
  font-size: 0.74rem;
  line-height: 1.45;
}

.search-panel {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-left: 6px solid var(--green);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.search-panel label {
  color: var(--navy);
}

.search-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.filter-bar {
  position: sticky;
  top: 84px;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.filter-bar a,
.filter-bar button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #cfdccd;
  border-radius: 8px;
  padding: 0 12px;
  color: var(--navy);
  background: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
}

.filter-bar a:hover,
.filter-bar a:focus-visible,
.filter-bar button:hover,
.filter-bar button:focus-visible,
.filter-bar button[aria-pressed="true"] {
  border-color: var(--green);
  background: var(--soft-green);
}

.catalogue-group {
  scroll-margin-top: 160px;
  padding: 28px 0 14px;
}

.qcto-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 34px;
  margin-top: 34px;
  border: 1px solid #cfdccd;
  border-left: 7px solid var(--navy);
  border-radius: 8px;
  padding: 28px;
  background: #fff;
  box-shadow: var(--shadow-strong);
}

.qcto-panel ul {
  columns: 2;
  gap: 28px;
  margin: 0;
  padding-left: 20px;
  color: #24382c;
  line-height: 1.75;
}

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

.why-grid article {
  min-height: 166px;
  border-top-color: var(--navy);
  box-shadow: none;
}

.why-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 1.02rem;
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-left: 6px solid var(--green);
  border-radius: 8px;
  padding: 14px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.proof-strip span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 0 12px;
  color: var(--navy);
  background: var(--soft-green);
  font-size: 0.84rem;
  font-weight: 700;
}

.faq-section {
  background: #fff;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 42px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: linear-gradient(180deg, #fff, #f8fbf7);
  box-shadow: 0 8px 22px rgba(20, 50, 31, 0.05);
}

.faq-list h3 {
  color: var(--navy);
}

.faq-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.68;
}

.blog-section {
  background: var(--page);
}

.content-scroller {
  position: relative;
  overflow: hidden;
  margin-top: 6px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.content-scroller-track {
  display: flex;
  width: max-content;
  animation: content-scroll 58s linear infinite;
}

.content-scroller:hover .content-scroller-track,
.content-scroller:focus-within .content-scroller-track {
  animation-play-state: paused;
}

.scroller-set {
  display: flex;
  gap: 18px;
  padding: 8px 9px 12px;
}

.content-scroller .blog-card {
  width: 360px;
  flex: 0 0 360px;
}

@keyframes content-scroll {
  to {
    transform: translateX(-50%);
  }
}

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

.blog-card {
  min-height: 286px;
  display: flex;
  flex-direction: column;
  border: 1px solid #cfdccd;
  border-top: 5px solid var(--navy);
  border-radius: 8px;
  padding: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.blog-card:hover,
.blog-card:focus-within {
  border-color: rgba(10, 49, 95, 0.4);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.blog-card span {
  align-self: flex-start;
  margin-bottom: 18px;
  border-radius: 8px;
  padding: 6px 10px;
  color: var(--green-dark);
  background: var(--soft-green);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.blog-card h3 {
  color: var(--navy);
  font-size: 1.16rem;
}

.blog-card h2 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.16rem;
  line-height: 1.25;
}

.blog-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.text-link {
  align-self: flex-start;
  margin-top: auto;
  color: var(--navy);
  font-weight: 700;
}

.quote-section {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 31, 61, 1) 0%, rgba(10, 49, 95, 0.98) 64%, rgba(7, 31, 61, 1) 100%),
    var(--navy-deep);
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.quote-section h2,
.quote-section .eyebrow {
  color: #fff;
}

.quote-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.contact-lines a {
  color: #fff;
  font-weight: 700;
}

.contact-lines a:hover,
.contact-lines a:focus-visible {
  border-bottom: 2px solid var(--yellow);
}

.quote-points {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.quote-points li {
  min-height: 42px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 4px solid var(--yellow);
  border-radius: 8px;
  padding: 9px 13px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.94rem;
  line-height: 1.4;
}

.quote-form {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
}

.form-intro,
.form-note {
  grid-column: 1 / -1;
}

.form-intro {
  display: grid;
  gap: 8px;
  margin-bottom: 2px;
}

.form-intro h3 {
  margin-bottom: 0;
  color: #fff;
  font-size: 1.25rem;
}

.form-intro p {
  max-width: 640px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  line-height: 1.6;
}

.secure-pill {
  justify-self: start;
  border-radius: 8px;
  padding: 6px 10px;
  color: #102016;
  background: var(--yellow);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.quick-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quick-contact a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 0 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.86rem;
  font-weight: 700;
}

.locked-field {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  padding: 13px;
  background: rgba(255, 255, 255, 0.08);
}

.locked-field span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.locked-field strong {
  display: block;
  margin-top: 4px;
  color: #fff;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.form-row small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  line-height: 1.45;
}

.form-row-full,
.form-submit {
  grid-column: 1 / -1;
}

label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  padding: 11px 12px;
  color: #122015;
  background: #fff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 225, 0, 0.18);
  outline: none;
}

textarea {
  resize: vertical;
}

input[type="file"] {
  min-height: auto;
  padding: 10px;
}

.consent-row {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.5;
  text-transform: none;
}

.consent-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--yellow);
}

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

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.86rem;
  line-height: 1.55;
}

.form-note a {
  color: #fff;
  font-weight: 700;
  border-bottom: 2px solid rgba(255, 225, 0, 0.45);
}

.site-footer {
  padding: 56px 0 0;
  color: #fff;
  background:
    linear-gradient(180deg, #071f3d 0%, #05162b 100%);
  border-top: 7px solid var(--green);
  overflow-x: hidden;
}

.footer-inner {
  width: calc(100% - 48px);
  max-width: 1180px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.2fr);
  align-items: start;
  gap: 48px;
  margin: 0 auto;
}

.footer-brand {
  display: grid;
  gap: 18px;
  max-width: 520px;
}

.footer-logo-panel {
  width: min(280px, 100%);
  border-radius: 8px;
  padding: 16px 18px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}

.footer-logo-panel img {
  width: 100%;
  height: auto;
}

.footer-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
  line-height: 1.65;
}

.footer-contact {
  display: grid;
  gap: 8px;
}

.footer-contact a {
  color: #fff;
  font-weight: 700;
}

.footer-contact span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.45;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  color: #fff;
}

.footer-links div {
  display: grid;
  align-content: start;
  gap: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  padding-left: 18px;
}

.footer-links strong {
  color: var(--yellow);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  font-weight: 700;
}

.footer-bottom {
  width: calc(100% - 48px);
  max-width: 1180px;
  margin: 42px auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 18px 0 22px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
}

.article-main {
  background: #fff;
}

.article-hero {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 31, 61, 0.98), rgba(7, 31, 61, 0.9)),
    var(--navy-deep);
}

.article-hero-inner {
  width: calc(100% - 48px);
  max-width: 960px;
  margin: 0 auto;
  padding: 76px 0 82px;
}

.breadcrumb {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--yellow);
  font-size: 0.9rem;
  font-weight: 700;
}

.breadcrumb-trail {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 700;
}

.breadcrumb-trail a {
  color: var(--yellow);
}

.breadcrumb-trail a:hover,
.breadcrumb-trail a:focus-visible {
  border-bottom: 2px solid var(--yellow);
}

.article-hero h1 {
  max-width: 920px;
  font-size: 3.2rem;
}

.article-summary {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
  line-height: 1.72;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
}

.article-shell {
  width: calc(100% - 48px);
  max-width: 1180px;
  display: grid;
  grid-template-columns: minmax(0, 760px) 320px;
  gap: 64px;
  margin: 0 auto;
  padding: 76px 0;
}

.article-content {
  min-width: 0;
}

.article-content h2 {
  margin-top: 42px;
  font-size: 1.88rem;
}

.article-content h3 {
  margin-top: 30px;
  color: var(--navy);
}

.article-content p,
.article-content li {
  color: #42554a;
  font-size: 1rem;
  line-height: 1.78;
}

.article-content ul,
.article-content ol {
  padding-left: 22px;
}

.article-content a {
  color: var(--navy);
  font-weight: 700;
  border-bottom: 2px solid rgba(38, 133, 24, 0.35);
}

.detail-grid,
.record-table {
  display: grid;
  gap: 12px;
  margin: 20px 0 30px;
}

table.record-table {
  width: 100%;
  display: table;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.record-table caption {
  padding: 10px 0;
  color: var(--navy);
  font-weight: 700;
  text-align: left;
}

.record-table th,
.record-table td {
  border-bottom: 1px solid var(--line);
  padding: 13px 14px;
  color: #42554a;
  font-size: 0.92rem;
  line-height: 1.5;
  text-align: left;
  vertical-align: top;
}

.record-table th {
  color: var(--navy);
  background: #f8fbf7;
  font-weight: 700;
}

.record-table tr:last-child th,
.record-table tr:last-child td {
  border-bottom: 0;
}

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

.detail-grid div,
.record-table div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #f8fbf7;
}

.detail-grid strong,
.record-table strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.detail-grid span,
.record-table span {
  color: var(--muted);
  line-height: 1.6;
}

.service-shell .article-content h2:first-child {
  margin-top: 0;
}

.article-callout {
  border: 1px solid var(--line);
  border-left: 6px solid var(--green);
  border-radius: 8px;
  padding: 22px;
  background: #f8fbf7;
}

.article-sidebar {
  position: sticky;
  top: 104px;
  align-self: start;
  display: grid;
  gap: 18px;
}

.sidebar-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(20, 50, 31, 0.08);
}

.sidebar-card h2,
.sidebar-card h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 1.1rem;
}

.sidebar-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 18px;
}

.sidebar-card li,
.sidebar-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.sidebar-card a:not(.button) {
  color: var(--navy);
  font-weight: 700;
}

.tool-links {
  display: grid;
  gap: 10px;
}

.tool-links a {
  min-height: 42px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: #f8fbf7;
}

.sidebar-cta .button {
  width: 100%;
}

.sticky-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--navy-deep);
  box-shadow: 0 -12px 28px rgba(7, 31, 61, 0.22);
}

.sticky-cta-bar a {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
}

.sticky-cta-bar a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.related-posts {
  border-top: 1px solid var(--line);
  background: var(--page);
}

@media (prefers-reduced-motion: reduce) {
  .content-scroller {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .content-scroller-track {
    animation: none;
  }
}

@media (max-width: 1120px) {
  .course-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding-inline: 24px;
  }

  .header-contact {
    gap: 8px;
  }

  .header-phone {
    display: none;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-top: 4px;
  }

  .hero {
    min-height: 640px;
  }

  .hero-mark {
    right: -90px;
    top: auto;
    bottom: 58px;
    width: 420px;
  }

  .hero-course-card {
    display: none;
  }

  h1 {
    max-width: 640px;
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .service-grid,
  .why-grid,
  .blog-grid,
  .decision-grid,
  .industry-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .qcto-panel,
  .article-shell,
  .faq-layout,
  .quote-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .article-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 54px;
  }

  .site-header {
    min-height: 70px;
    padding: 12px 18px;
  }

  .brand img {
    width: 150px;
  }

  .header-action {
    display: none;
  }

  .header-whatsapp {
    min-height: 38px;
    padding: 0 10px;
    font-size: 0.82rem;
  }

  .site-nav {
    gap: 18px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 620px;
  }

  .hero-inner,
  .article-hero-inner,
  .article-shell,
  .section-inner,
  .footer-inner {
    width: auto;
    max-width: none;
    margin-left: 16px;
    margin-right: 16px;
  }

  .hero-inner {
    justify-content: flex-start;
    padding: 44px 0 92px;
  }

  .hero-mark {
    right: -132px;
    bottom: 24px;
    width: 350px;
    opacity: 0.12;
  }

  .hero-gear-large {
    right: 22px;
    bottom: 42px;
    width: 120px;
  }

  .hero-gear-small {
    right: 118px;
    bottom: 126px;
    width: 68px;
  }

  h1 {
    max-width: 350px;
    font-size: 2.05rem;
    line-height: 1.08;
  }

  .article-hero h1 {
    max-width: 340px;
    font-size: 1.82rem;
  }

  .article-summary {
    max-width: 335px;
    font-size: 1rem;
  }

  .article-shell {
    padding: 54px 0;
  }

  .article-content h2 {
    max-width: 335px;
    font-size: 1.55rem;
  }

  .article-content p,
  .article-content li,
  .article-callout,
  .sidebar-card p,
  .sidebar-card li {
    max-width: 330px;
  }

  h2 {
    max-width: 340px;
    font-size: 1.72rem;
  }

  .hero-copy {
    max-width: 350px;
    font-size: 1rem;
  }

  .section-heading p {
    max-width: 335px;
  }

  .service-card h3,
  .service-card p,
  .blog-card h3,
  .blog-card p,
  .faq-list h3,
  .faq-list p,
  .why-grid strong,
  .why-grid p {
    max-width: 300px;
  }

  .section {
    padding: 58px 0;
  }

  .service-grid,
  .why-grid,
  .blog-grid,
  .course-grid,
  .decision-grid,
  .industry-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .why-grid article,
  .blog-card,
  .industry-card {
    min-height: 0;
  }

  .filter-bar {
    position: static;
  }

  .search-panel,
  table.record-table {
    max-width: calc(100vw - 32px);
  }

  table.record-table {
    display: block;
    overflow-x: auto;
    white-space: normal;
  }

  .course-grid article {
    min-height: 0;
    width: 100%;
    max-width: 358px;
  }

  .course-grid a {
    min-height: 176px;
  }

  .course-grid strong {
    max-width: 300px;
  }

  .course-grid em {
    max-width: 300px;
  }

  .content-scroller {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .content-scroller-track {
    animation: none;
  }

  .content-scroller .blog-card {
    width: min(330px, calc(100vw - 40px));
    flex-basis: min(330px, calc(100vw - 40px));
  }

  .qcto-panel {
    padding: 20px;
  }

  .qcto-panel ul {
    columns: 1;
  }

  .qcto-panel h3,
  .qcto-panel p,
  .qcto-panel li {
    max-width: 300px;
  }

  .trust-strip li {
    width: 100%;
  }

  .quote-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .quick-contact {
    display: grid;
  }

  .footer-logo-panel {
    width: 220px;
  }

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

  .footer-bottom {
    width: auto;
    margin-left: 16px;
    margin-right: 16px;
  }

  .sticky-cta-bar {
    display: grid;
  }
}
