:root {
  --navy: #062452;
  --navy-deep: #031a3c;
  --gold: #b77916;
  --gold-dark: #8b590e;
  --red: #c91522;
  --red-dark: #a90f19;
  --ink: #16243a;
  --muted: #5f6d80;
  --line: #dce3eb;
  --pale: #f3f6fa;
  --blue-pale: #eaf1f8;
  --white: #ffffff;
  --radius: 6px;
  --header-height: 96px;
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(211, 19, 34, 0.45);
  outline-offset: 3px;
}

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

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 4px;
  background: var(--navy);
  color: var(--white);
  transform: translateY(-160%);
}

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

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 108px;
  border-bottom: 1px solid rgba(6, 36, 82, 0.1);
  background: linear-gradient(90deg, rgba(232, 236, 241, 0.98) 0%, rgba(246, 247, 249, 0.98) 48%, rgba(255, 255, 255, 0.98) 100%);
  box-shadow: 0 6px 22px rgba(6, 36, 82, 0.07);
  backdrop-filter: blur(14px);
}

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

.header-navigation {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

.header-utility {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header-utility button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 8px;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
}

.header-utility button + button {
  border-left: 1px solid #b8c2cf;
}

.header-utility button:hover,
.header-utility button:focus-visible {
  color: var(--red);
  outline: none;
}

.brand {
  display: inline-flex;
  min-width: 305px;
  align-items: center;
  gap: 13px;
}

.brand-symbol {
  display: block;
  width: 78px;
  height: 67px;
  flex: 0 0 78px;
  border-radius: 4px;
  background-image: url("assets/prudeconsulting-mark-transparent.webp");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.brand-name {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.72rem;
  line-height: 1;
  white-space: nowrap;
}

.brand-name span {
  color: var(--gold);
}

.brand-name small {
  color: var(--navy);
  font-size: 0.62em;
}

.site-header .brand {
  min-width: 308px;
  gap: 14px;
  padding: 8px 0;
}

.site-header .brand-symbol {
  width: 88px;
  height: 64px;
  flex-basis: 88px;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  background-image: url("assets/prudeconsulting-mark-transparent.webp");
  background-position: center;
  background-size: contain;
  box-shadow: none;
  filter: saturate(1.02) contrast(1.02) drop-shadow(0 5px 8px rgba(6, 36, 82, 0.16));
}

.site-header .brand-name {
  display: block;
  font-size: 1.58rem;
  text-shadow: none;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 21px;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 700;
}

.primary-nav a,
.primary-nav button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav button:hover,
.primary-nav button:focus-visible,
.primary-nav a[aria-current="page"] {
  color: var(--red);
  outline: none;
}

.navigation-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
}

.primary-nav .mobile-utility-action {
  display: none;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-weight: 750;
}

.primary-nav .nav-cta {
  padding: 12px 17px;
  border-radius: var(--radius);
  background: var(--red);
  color: var(--white);
}

.primary-nav .nav-cta:hover,
.primary-nav .nav-cta:focus-visible {
  background: var(--red-dark);
  color: var(--white);
}

.primary-nav .nav-basket {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
}

.primary-nav .nav-basket:hover,
.primary-nav .nav-basket:focus-visible,
.primary-nav .nav-basket[aria-current="page"] {
  border-color: var(--gold);
  background: var(--pale);
  color: var(--navy);
}

.basket-icon {
  display: block;
  width: 22px;
  height: 22px;
  background: url("assets/icons/basket.svg") center / contain no-repeat;
}

.nav-basket strong {
  display: grid;
  min-width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 0.72rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.home-hero,
.service-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.home-hero {
  min-height: 650px;
  display: grid;
  align-items: center;
}

.hero-photo,
.hero-shade,
.heritage-video,
.directory-hero-shade {
  position: absolute;
  inset: 0;
}

.hero-photo {
  z-index: -3;
  background-image: url("assets/images/consultancy-hero.webp");
  background-position: center;
  background-size: cover;
}

.heritage-video {
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  transform-origin: center;
  animation: heritage-float 12s ease-in-out infinite alternate;
  will-change: transform;
}

.video-is-paused .heritage-video {
  animation-play-state: paused;
}

@keyframes heritage-float {
  0% {
    transform: scale(1.06) translate3d(-1.1%, -0.55%, 0);
  }
  100% {
    transform: scale(1.12) translate3d(1.4%, 0.85%, 0);
  }
}

.hero-shade {
  z-index: -1;
  background: linear-gradient(90deg, rgba(3, 26, 60, 0.92) 0%, rgba(3, 26, 60, 0.83) 56%, rgba(3, 26, 60, 0.67) 100%);
}

.hero-inner {
  padding: 90px 0;
  color: var(--white);
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #ffb5ba;
}

.home-hero h1 {
  width: min(760px, 100%);
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.2rem;
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.34);
}

.hero-intro {
  width: min(690px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.18rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.32);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 31px;
}

.button {
  display: inline-flex;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button-red {
  background: var(--red);
  color: var(--white);
}

.button-red:hover,
.button-red:focus-visible {
  background: var(--red-dark);
  outline: none;
}

.button-light {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--white);
  color: var(--navy);
  outline: none;
}

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

.button-navy:hover,
.button-navy:focus-visible {
  background: var(--navy-deep);
  color: var(--white);
  outline: none;
}

.hero-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  margin: 42px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.88);
  list-style: none;
}

.hero-assurances li {
  position: relative;
  padding-left: 20px;
}

.hero-assurances li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  content: "";
}

.video-toggle {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 4;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  background: rgba(3, 26, 60, 0.72);
}

.video-toggle span {
  width: 19px;
  height: 19px;
  background: url("assets/icons/pause.svg") center / contain no-repeat;
  filter: brightness(0) invert(1);
}

.video-toggle.is-paused span {
  background-image: url("assets/icons/play.svg");
}

.video-toggle:hover,
.video-toggle:focus-visible {
  background: var(--red);
  outline: none;
}

.brand-signature {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(110deg, #e8ecf1 0%, #f5f6f8 50%, var(--white) 100%);
}

.home-services-invitation {
  background: var(--pale);
}

.home-services-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: center;
}

.home-services-layout h2 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.1;
}

.home-services-layout p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1.05rem;
}

.directory-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 92px 0;
  background: var(--navy);
  color: var(--white);
}

.directory-hero .heritage-video {
  object-position: center 46%;
}

.directory-hero-shade {
  z-index: -1;
  background: linear-gradient(90deg, rgba(3, 26, 60, 0.94) 0%, rgba(3, 26, 60, 0.86) 58%, rgba(3, 26, 60, 0.74) 100%);
}

.directory-hero > .container {
  position: relative;
  z-index: 1;
}

.directory-hero h1 {
  width: min(850px, 100%);
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.04;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.34);
}

.directory-hero > .container > p:not(.eyebrow) {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.directory-hero p:not(.eyebrow) {
  width: min(720px, 100%);
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.services-page {
  background: var(--white);
}

.services-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-directory-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  align-items: flex-start;
  padding: 29px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 36px rgba(6, 36, 82, 0.06);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.service-directory-card:hover,
.service-directory-card:focus-within {
  border-color: var(--gold);
  box-shadow: 0 18px 45px rgba(6, 36, 82, 0.13);
  transform: translateY(-3px);
}

.service-directory-card img {
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
}

.service-directory-card h2 {
  margin: 9px 0 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.12;
}

.service-directory-card > p:not(.service-number):not(.service-price) {
  margin: 15px 0 24px;
  color: var(--muted);
}

.service-price {
  margin-top: auto;
  margin-bottom: 17px;
  color: var(--red);
  font-size: 0.83rem;
  font-weight: 850;
  text-transform: uppercase;
}

.service-card-actions {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.service-card-actions a,
.service-card-actions button {
  display: inline-flex;
  min-height: 45px;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border: 1px solid var(--navy);
  border-radius: var(--radius);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  text-align: center;
}

.service-card-actions a {
  color: var(--navy);
}

.service-card-actions button {
  background: var(--navy);
  color: var(--white);
}

.service-card-actions a:hover,
.service-card-actions a:focus-visible {
  background: var(--blue-pale);
  outline: none;
}

.service-card-actions button:hover,
.service-card-actions button:focus-visible {
  background: var(--navy-deep);
  outline: none;
}

.service-card-actions button.is-added {
  border-color: #227243;
  background: #227243;
}

.service-basket-cta {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(6, 36, 82, 0.15);
}

.service-basket-cta p {
  margin: 0;
  color: var(--navy);
}

.service-basket-cta .button {
  width: 100%;
}

.service-basket-cta .is-added {
  background: #227243;
}

.signature-layout {
  display: grid;
  grid-template-columns: minmax(300px, 470px) 1fr;
  gap: 70px;
  align-items: center;
  padding-top: 54px;
  padding-bottom: 54px;
}

.signature-logo-lockup {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 18px 14px;
  color: var(--navy);
  text-align: center;
  mix-blend-mode: normal;
}

.signature-logo-lockup .brand-symbol {
  width: min(280px, 68vw);
  height: auto;
  aspect-ratio: 700 / 507;
  border: 0;
  border-radius: 0;
  background-size: contain;
  box-shadow: none;
  filter: saturate(1.03) contrast(1.03) drop-shadow(0 14px 18px rgba(6, 36, 82, 0.15));
}

.signature-wordmark {
  display: block;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 6vw, 3.6rem);
  line-height: 0.95;
}

.signature-wordmark span {
  color: var(--gold);
}

.signature-tagline {
  display: block;
  max-width: 34rem;
  color: #182844;
  font-size: clamp(0.72rem, 1.6vw, 0.86rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signature-copy h2,
.section-heading h2,
.value-layout h2,
.contact-copy h2,
.service-content h2,
.registration-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0;
}

.signature-copy p:last-child,
.section-heading > p:last-child,
.contact-copy > p,
.registration-copy > p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section {
  padding: 96px 0;
}

.section-heading {
  width: min(760px, 100%);
  margin: 0 0 62px;
}

.section-heading.narrow {
  width: min(660px, 100%);
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.service-row {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 68px;
  align-items: center;
  padding: 62px 0;
  border-top: 1px solid var(--line);
}

.service-row.reverse figure {
  order: 2;
}

.service-row figure {
  min-height: 390px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.service-row figure img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.service-number {
  margin: 0;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-row h3,
.additional-services h3 {
  margin: 10px 0 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.45rem;
  font-weight: 500;
  line-height: 1.08;
}

.service-row-copy > p:not(.service-number),
.additional-services article > p:not(.service-number) {
  margin: 17px 0 0;
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 9px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 25px;
}

.check-list li::before {
  position: absolute;
  top: 0.54em;
  left: 1px;
  width: 9px;
  height: 9px;
  border: 2px solid var(--red);
  border-radius: 50%;
  content: "";
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 850;
}

.arrow-link::after {
  content: ">";
  color: var(--red);
  transition: transform 150ms ease;
}

.arrow-link:hover::after,
.arrow-link:focus-visible::after {
  transform: translateX(4px);
}

.additional-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 54px;
  padding-top: 62px;
  border-top: 1px solid var(--line);
}

.additional-services article {
  padding-left: 26px;
  border-left: 4px solid var(--red);
}

.additional-services h3 {
  font-size: 2rem;
}

.additional-services .arrow-link {
  margin-top: 18px;
}

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

.value-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 80px;
}

.value-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 38px 44px;
}

.value-points article {
  padding-top: 18px;
  border-top: 2px solid rgba(255, 255, 255, 0.24);
}

.value-points span {
  color: #ffadb3;
  font-weight: 850;
}

.value-points h3 {
  margin: 9px 0 0;
  font-size: 1.16rem;
}

.value-points p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.approach-section {
  background: var(--pale);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin: 0;
  padding: 0;
  counter-reset: steps;
  list-style: none;
}

.process-steps li {
  padding-top: 25px;
  border-top: 3px solid var(--navy);
}

.process-steps span {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 850;
}

.process-steps h3 {
  margin: 18px 0 0;
  color: var(--navy);
  font-size: 1.23rem;
}

.process-steps p {
  margin: 10px 0 0;
  color: var(--muted);
}

.contact-section,
.registration-section {
  background: var(--blue-pale);
}

.basket-section {
  background: var(--pale);
}

.basket-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 36px;
  align-items: start;
}

.basket-panel,
.basket-checkout {
  padding: 31px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 50px rgba(6, 36, 82, 0.08);
}

.basket-panel {
  border-top: 5px solid var(--gold);
}

.basket-checkout {
  position: sticky;
  top: 136px;
  border-top: 5px solid var(--red);
}

.basket-panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 25px;
}

.basket-panel h2,
.basket-checkout h2 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.12;
}

.text-button {
  padding: 7px 0;
  border: 0;
  background: transparent;
  color: var(--red);
  font-weight: 800;
}

.text-button:hover,
.text-button:focus-visible {
  color: var(--red-dark);
  outline: none;
  text-decoration: underline;
}

.basket-items {
  display: grid;
  gap: 13px;
}

.basket-item {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 15px;
  align-items: center;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.basket-item img {
  width: 54px;
  height: 54px;
}

.basket-item h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1rem;
}

.basket-item p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.basket-remove {
  padding: 7px;
  border: 0;
  background: transparent;
  color: var(--red);
  font-weight: 800;
}

.basket-empty {
  padding: 42px 25px;
  border: 1px dashed #afbdcc;
  border-radius: var(--radius);
  text-align: center;
}

.basket-empty[hidden],
.basket-items[hidden] {
  display: none;
}

.basket-empty h3 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  font-weight: 500;
}

.basket-empty p {
  margin: 10px 0 22px;
  color: var(--muted);
}

.basket-summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 20px;
  margin: 23px 0;
  padding: 17px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.basket-summary span {
  color: var(--muted);
}

.basket-summary strong {
  color: var(--navy);
}

.basket-checkout form {
  display: grid;
  gap: 16px;
}

.basket-checkout form > label {
  display: grid;
  gap: 6px;
  color: var(--navy);
  font-weight: 750;
}

.basket-checkout input,
.basket-checkout textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid #bcc9d8;
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
}

.basket-checkout fieldset {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.basket-checkout legend {
  padding: 0 6px;
  color: var(--navy);
  font-weight: 800;
}

.basket-checkout fieldset label {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 8px;
  align-items: center;
}

.basket-checkout fieldset input {
  width: 17px;
  height: 17px;
  margin: 0;
}

.basket-checkout [data-basket-submit]:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.paypal-button {
  border: 1px solid #ffc439;
  background: #ffc439;
  color: #062452;
}

.paypal-button:hover,
.paypal-button:focus-visible {
  background: #f2b600;
  outline: none;
}

.paypal-button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

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

.security-validation {
  display: grid;
  gap: 7px;
  margin: 4px 0;
}

.security-validation p {
  margin: 0;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 800;
}

.robot-check {
  display: grid;
  width: min(100%, 315px);
  min-height: 74px;
  grid-template-columns: 27px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 13px 12px;
  border: 1px solid #d9dee7;
  border-radius: 3px;
  background: #f8f8f8;
  box-shadow: 0 1px 2px rgba(6, 36, 82, 0.06);
}

.robot-check input {
  width: 24px;
  height: 24px;
  margin: 0;
  accent-color: var(--navy);
}

.robot-check span {
  color: #202124;
  font-size: 0.92rem;
  font-weight: 650;
}

.robot-check small {
  max-width: 70px;
  color: #6f7785;
  font-size: 0.66rem;
  line-height: 1.15;
  text-align: center;
}

.payment-options-section {
  padding: 86px 0;
  border-top: 1px solid var(--line);
  background: var(--white);
}

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

.payment-method-grid article {
  padding: 26px;
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  background: var(--pale);
}

.payment-method-grid strong {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
}

.payment-method-grid p,
.payment-security-note {
  color: var(--muted);
}

.payment-security-note {
  margin: 28px 0 0;
  padding: 18px;
  border-left: 4px solid var(--red);
  background: #fff5f5;
}

.newsletter-band {
  padding: 58px 0;
  border-top: 1px solid var(--line);
  background: var(--blue-pale);
}

.newsletter-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 44px;
  align-items: center;
}

.newsletter-band h2,
.newsletter-benefits h2 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.45rem;
  font-weight: 500;
  line-height: 1.08;
}

.newsletter-band p:not(.eyebrow) {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--muted);
}

.newsletter-band-actions {
  display: grid;
  min-width: 210px;
  gap: 11px;
  text-align: center;
}

.newsletter-band-actions a {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

.newsletter-band-actions a:hover,
.newsletter-band-actions a:focus-visible {
  color: var(--red);
  outline: none;
}

.newsletter-signup-section {
  background: var(--pale);
}

.newsletter-signup-layout {
  display: grid;
  width: min(960px, 100%);
  grid-template-columns: 1fr;
  gap: 46px;
  align-items: start;
  margin: 0 auto;
}

.newsletter-benefits {
  width: min(820px, 100%);
  margin: 0 auto;
}

.newsletter-benefits .check-list {
  margin-top: 28px;
}

.newsletter-privacy-copy {
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.92rem;
}

.newsletter-privacy-copy a {
  color: var(--navy);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.newsletter-registration {
  padding: 32px;
  border-top: 5px solid var(--gold);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 50px rgba(6, 36, 82, 0.09);
}

.google-subscribe-button {
  display: flex;
  width: 100%;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 11px 18px;
  border: 1px solid #b6c0cc;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.google-subscribe-button img {
  width: 30px;
  height: 30px;
}

.google-subscribe-button:hover,
.google-subscribe-button:focus-visible {
  border-color: var(--navy);
  background: var(--pale);
  outline: none;
}

.signup-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 13px;
  align-items: center;
  margin: 24px 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.signup-divider::before,
.signup-divider::after {
  height: 1px;
  background: var(--line);
  content: "";
}

.newsletter-form {
  display: grid;
  gap: 16px;
}

.newsletter-form > label:not(.consent-field) {
  display: grid;
  gap: 6px;
  color: var(--navy);
  font-weight: 750;
}

.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid #bcc9d8;
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
}

.newsletter-consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 9px;
  align-items: start;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
}

.newsletter-consent input {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
}

body.newsletter-open {
  overflow: hidden;
}

.newsletter-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 0 20px;
  background: rgba(3, 26, 60, 0.72);
}

.newsletter-modal[hidden] {
  display: none;
}

.newsletter-modal-panel {
  position: relative;
  width: min(530px, 100%);
  max-height: 100vh;
  overflow-y: auto;
  padding: 34px;
  border-top: 5px solid var(--gold);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.newsletter-modal-panel h2 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.08;
}

.newsletter-modal-panel > p:not(.eyebrow):not(.newsletter-unsubscribe) {
  margin: 13px 0 22px;
  color: var(--muted);
}

.newsletter-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  font-size: 1.45rem;
  line-height: 1;
}

.newsletter-close:hover,
.newsletter-close:focus-visible {
  border-color: var(--red);
  color: var(--red);
  outline: none;
}

.newsletter-unsubscribe {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.subscription-login-panel {
  width: min(820px, 100%);
  margin: 0 auto;
  padding: 52px 92px 48px;
  border: 1px solid #2f2f2f;
  border-top: 1px solid #2f2f2f;
  border-radius: 8px;
  background: #050505;
  color: #fff;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.25);
}

.subscription-login-panel h2,
.newsletter-modal-panel.subscription-login-panel h2 {
  margin: 0 0 32px;
  color: #fff;
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 2.75rem;
  font-weight: 400;
  line-height: 1.15;
  text-align: center;
}

.identity-subscribe-button {
  display: flex;
  width: 100%;
  max-width: 590px;
  min-height: 78px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin: 18px auto 0;
  padding: 12px 22px;
  border: 1px solid #4a4a4a;
  border-radius: 42px;
  background: #242424;
  color: #fff;
  font-size: 1.18rem;
  font-weight: 750;
}

.identity-subscribe-button img {
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
}

.identity-subscribe-button:hover,
.identity-subscribe-button:focus-visible {
  border-color: #8a8a8a;
  background: #303030;
  color: #fff;
  outline: none;
}

.subscription-login-panel .signup-divider {
  width: min(590px, 100%);
  margin: 48px auto;
  color: #c6c6c6;
  font-size: 0.9rem;
}

.subscription-login-panel .signup-divider::before,
.subscription-login-panel .signup-divider::after {
  background: #464646;
}

.subscription-login-panel .newsletter-form {
  width: min(590px, 100%);
  margin: 0 auto;
  gap: 17px;
}

.subscription-login-panel .newsletter-form .subscription-email-input {
  width: 100%;
  min-height: 84px;
  padding: 0 27px;
  border: 2px solid #cecece;
  border-radius: 44px;
  background: #050505;
  color: #fff;
  font-size: 1.16rem;
}

.subscription-login-panel .newsletter-form .subscription-email-input::placeholder {
  color: #aaa;
}

.subscription-login-panel .newsletter-form .subscription-email-input:focus {
  border-color: #fff;
  outline: 3px solid rgba(255, 255, 255, 0.15);
}

.subscription-login-panel .newsletter-consent {
  color: #d2d2d2;
  font-size: 0.82rem;
  font-weight: 500;
}

.subscription-login-panel .newsletter-consent input {
  accent-color: var(--red);
}

.subscription-continue-button {
  min-height: 76px;
  padding: 0 24px;
  border: 1px solid #fff;
  border-radius: 40px;
  background: #fff;
  color: #080808;
  font: inherit;
  font-size: 1.18rem;
  font-weight: 800;
}

.subscription-continue-button:hover,
.subscription-continue-button:focus-visible {
  background: #e8e8e8;
  outline: 3px solid rgba(255, 255, 255, 0.18);
}

.subscription-login-panel .form-status {
  color: #fff;
}

.subscription-login-panel .form-status:empty {
  display: none;
}

.subscription-consent-step {
  display: grid;
  gap: 16px;
  padding: 19px;
  border: 1px solid #3f3f3f;
  border-radius: 20px;
  background: #171717;
}

.subscription-consent-step[hidden] {
  display: none;
}

.subscription-consent-step > p {
  margin: 0;
  color: #fff;
  font-weight: 750;
  text-align: center;
}

.subscription-consent-step small {
  color: #aaa;
  font-size: 0.75rem;
  line-height: 1.45;
  text-align: center;
}

.signup-method-note,
.subscription-login-panel .newsletter-unsubscribe {
  margin: 18px 0 0;
  color: #9d9d9d;
  font-size: 0.75rem;
  line-height: 1.5;
  text-align: center;
}

.newsletter-modal-panel.subscription-login-panel {
  width: min(820px, 100%);
  padding: 14px 92px 26px;
  border-top: 1px solid #2f2f2f;
  background: #050505;
}

.subscription-login-panel .newsletter-close {
  border-color: #444;
  background: #181818;
  color: #fff;
}

.subscription-login-panel .newsletter-close:hover,
.subscription-login-panel .newsletter-close:focus-visible {
  border-color: #fff;
  color: #fff;
}

.whatsapp-chat {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  gap: 11px;
  padding: 9px 17px 9px 10px;
  border: 2px solid var(--white);
  border-radius: 30px;
  background: #157f47;
  color: var(--white);
  box-shadow: 0 12px 32px rgba(3, 26, 60, 0.25);
}

.whatsapp-chat img {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
}

.whatsapp-chat:hover,
.whatsapp-chat:focus-visible {
  background: #0d6838;
  color: var(--white);
  outline: 3px solid rgba(21, 127, 71, 0.25);
}

.whatsapp-chat-icon {
  display: block;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  background: url("assets/icons/whatsapp-chat.svg") center / contain no-repeat;
}

.whatsapp-chat-label {
  display: grid;
  line-height: 1.08;
}

.whatsapp-chat-label strong {
  font-size: 0.88rem;
}

.whatsapp-chat-label small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
}

.career-hub-section,
.social-qr-section,
.social-proof-section,
.seo-growth-section,
.social-banner-section,
.social-links-section,
.legal-section {
  background: var(--white);
}

.campaign-downloads-section {
  background: var(--pale);
}

.campaign-format-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.campaign-format {
  display: grid;
  grid-template-rows: 320px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 30px rgba(6, 36, 82, 0.08);
}

.campaign-format > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.campaign-format > div {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
}

.campaign-format h3,
.campaign-format p {
  margin: 0;
}

.campaign-format h3 {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.campaign-format p {
  min-height: 54px;
  color: var(--muted);
}

.campaign-format .button {
  width: 100%;
  margin-top: 4px;
}

.campaign-qr-download {
  margin: 28px 0 0;
  text-align: center;
}

.campaign-qr-download a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.campaign-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.campaign-video {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--pale);
  box-shadow: 0 14px 30px rgba(6, 36, 82, 0.08);
}

.campaign-video video {
  display: block;
  width: 100%;
  height: 330px;
  background: var(--navy-deep);
  object-fit: contain;
}

.campaign-video > div {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.campaign-video h3,
.campaign-video p {
  margin: 0;
}

.campaign-video h3 {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.campaign-video p {
  min-height: 78px;
  color: var(--muted);
}

.campaign-video .button {
  width: 100%;
}

@media (max-width: 920px) {
  .campaign-format-grid {
    grid-template-columns: 1fr;
  }

  .campaign-video-grid {
    grid-template-columns: 1fr;
  }

  .campaign-format {
    grid-template-columns: minmax(180px, 0.72fr) minmax(0, 1fr);
    grid-template-rows: 360px;
  }
}

@media (max-width: 620px) {
  .campaign-format {
    grid-template-columns: 1fr;
    grid-template-rows: 300px auto;
  }
}

.career-hub-card,
.social-qr-layout,
.seo-growth-layout,
.social-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  gap: 42px;
  align-items: center;
}

.career-hub-card,
.social-qr-layout,
.seo-growth-layout {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #f6f8fb 100%);
  box-shadow: 0 18px 40px rgba(6, 36, 82, 0.08);
}

.career-hub-card h2,
.social-qr-layout h2,
.seo-growth-layout h2 {
  margin: 0 0 16px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 500;
  line-height: 1.08;
}

.career-hub-card p,
.social-qr-layout p,
.seo-growth-layout p {
  color: var(--muted);
}

.qr-card {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  text-align: center;
}

.qr-card img {
  width: min(260px, 100%);
  aspect-ratio: 1;
  object-fit: contain;
}

.qr-card p {
  margin: 0;
  color: var(--navy);
  font-weight: 800;
}

.testimonial-grid,
.seo-pillar-grid,
.social-directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.testimonial-grid article,
.seo-pillar-grid article,
.social-directory-grid a {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 26px rgba(6, 36, 82, 0.06);
}

.testimonial-grid strong,
.seo-pillar-grid h3,
.social-directory-grid strong {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.testimonial-grid p,
.seo-pillar-grid p,
.social-directory-grid span {
  margin: 0;
  color: var(--muted);
}

.social-banner-preview {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(6, 36, 82, 0.1);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  justify-content: flex-end;
}

.social-links a {
  color: var(--navy);
  font-weight: 800;
}

.footer-mini-links {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.legal-content {
  max-width: 900px;
}

.legal-content h2 {
  margin: 32px 0 10px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
}

.legal-content p {
  color: var(--muted);
  font-size: 1.02rem;
}

.cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 96px;
  z-index: 85;
  display: grid;
  width: min(520px, calc(100vw - 28px));
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(6, 36, 82, 0.18);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(3, 26, 60, 0.2);
}

.cookie-banner strong {
  color: var(--navy);
}

.cookie-banner p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.cookie-actions {
  display: grid;
  gap: 8px;
  justify-items: end;
}

.cookie-actions a {
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 800;
}

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

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(6, 36, 82, 0.05);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--navy);
  font-weight: 900;
}

.faq-list details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.contact-layout,
.registration-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 76px;
  align-items: start;
}

.contact-lines {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.contact-lines a,
.contact-lines p {
  margin: 0;
  padding: 16px 0;
  border-top: 1px solid #c7d5e4;
}

.contact-lines span {
  display: block;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.enquiry-form {
  display: grid;
  gap: 17px;
  padding: 31px;
  border-top: 5px solid var(--red);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 50px rgba(6, 36, 82, 0.09);
}

.enquiry-form label {
  display: grid;
  gap: 6px;
  color: var(--navy);
  font-weight: 750;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid #bcc9d8;
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
}

.enquiry-form textarea {
  resize: vertical;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: var(--navy);
  outline: 3px solid rgba(6, 36, 82, 0.12);
}

.enquiry-form .consent-field {
  grid-template-columns: 20px 1fr;
  align-items: start;
  font-weight: 600;
}

.consent-field input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--navy);
  font-weight: 750;
}

.site-footer {
  padding: 65px 0 24px;
  background: var(--navy-deep);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.65fr 0.65fr 1fr;
  gap: 42px;
}

.footer-brand .brand-name,
.footer-brand .brand-name small {
  color: var(--white);
}

.footer-brand .brand-symbol {
  width: 82px;
  height: auto;
  aspect-ratio: 700 / 507;
  flex-basis: 82px;
  border: 0;
  border-radius: 0;
  background-size: contain;
  filter: saturate(1.05) contrast(1.04) drop-shadow(0 6px 10px rgba(0, 0, 0, 0.24));
}

.footer-grid > div:first-child > p {
  width: min(400px, 100%);
  color: rgba(255, 255, 255, 0.67);
}

.footer-grid h2 {
  margin: 0 0 14px;
  color: #ffadb3;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: #ffadb3;
}

.footer-grid a {
  overflow-wrap: anywhere;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

/* Service pages */
.service-hero {
  min-height: 480px;
  display: grid;
  align-items: end;
  background-position: center;
  background-size: cover;
}

.service-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(3, 26, 60, 0.7);
  content: "";
}

.service-hero-inner {
  padding-top: 90px;
  padding-bottom: 70px;
  color: var(--white);
}

.service-hero-icon {
  width: 82px;
  height: 82px;
  margin-bottom: 24px;
  border: 3px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  box-shadow: 0 12px 35px rgba(3, 26, 60, 0.24);
}

.service-hero h1 {
  width: min(760px, 100%);
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.03;
}

.service-hero p:not(.eyebrow) {
  width: min(690px, 100%);
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.14rem;
}

.service-overview {
  padding: 88px 0;
}

.service-overview-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 78px;
}

.service-content > p {
  color: var(--muted);
  font-size: 1.05rem;
}

.service-content h2:not(:first-child) {
  margin-top: 52px;
}

.service-aside {
  align-self: start;
  padding: 30px;
  border-top: 5px solid var(--red);
  border-radius: var(--radius);
  background: var(--pale);
}

.service-aside h2 {
  margin: 0;
  color: var(--navy);
  font-size: 1.24rem;
}

.service-aside ul {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.service-aside li {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.service-aside strong {
  display: block;
  color: var(--navy);
}

.deliverables-section {
  padding: 82px 0;
  background: var(--pale);
}

.pricing-section {
  padding: 84px 0;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.pricing-section .requirements-heading {
  margin-bottom: 36px;
}

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

.price-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
  border-radius: var(--radius);
  background: #fbfcff;
  box-shadow: 0 14px 34px rgba(6, 36, 82, 0.07);
}

.price-card.featured {
  border-top-color: var(--red);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(6, 36, 82, 0.11);
}

.price-card h3 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  font-weight: 500;
  line-height: 1.15;
}

.price-tag {
  margin: 15px 0 0;
  color: var(--red);
  font-size: 1.75rem;
  font-weight: 850;
}

.price-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.price-card ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--ink);
}

.price-card li::marker {
  color: var(--red);
}

.price-note {
  margin: 24px 0 0;
  padding: 18px 20px;
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  background: var(--pale);
  color: var(--navy);
}

.funding-paths-section,
.official-routes-section {
  padding: 88px 0;
  border-top: 1px solid var(--line);
  background: var(--white);
}

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

.funding-route-grid article {
  min-width: 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(6, 36, 82, 0.07);
}

.funding-route-grid h3 {
  margin: 8px 0 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.15;
}

.funding-route-grid article > p:last-child {
  margin: 15px 0 0;
  color: var(--muted);
}

.deliverables-intro {
  margin: 20px 0 0;
  color: var(--muted);
}

.protected-service-section {
  padding: 84px 0;
  background: var(--navy-deep);
  color: var(--white);
}

.protected-service-layout,
.funding-boundary-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 80px;
  align-items: start;
}

.protected-service-layout h2,
.funding-boundary-layout h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.1;
}

.protected-service-layout > div:last-child {
  padding-left: 30px;
  border-left: 3px solid var(--gold);
}

.protected-service-layout p {
  margin: 0 0 17px;
  color: rgba(255, 255, 255, 0.8);
}

.protected-service-layout .button {
  margin-top: 12px;
}

.official-routes-section {
  background: #f8fafc;
}

.certification-guidance-section {
  padding: 88px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.certification-guidance-section .requirements-heading > p:last-child {
  max-width: 930px;
}

.certification-guidance-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.certification-guidance-grid article {
  min-width: 0;
  padding: 27px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
  border-radius: var(--radius);
  background: #fbfcff;
  box-shadow: 0 14px 36px rgba(6, 36, 82, 0.07);
}

.certification-guidance-grid span {
  color: var(--red);
  font-weight: 850;
}

.certification-guidance-grid h3 {
  margin: 13px 0 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.certification-guidance-grid p {
  margin: 13px 0 0;
  color: var(--muted);
}

.certification-boundary {
  margin-top: 28px;
  padding: 22px 24px;
  border-left: 5px solid var(--red);
  border-radius: var(--radius);
  background: #fff5f5;
  color: var(--navy);
  font-weight: 650;
}

.certification-boundary strong {
  color: var(--red);
}

.security-service-hero {
  background-position: center;
}

.official-route-list {
  border-top: 1px solid var(--line);
}

.official-route-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.official-route-list h3 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.official-route-list p {
  max-width: 820px;
  margin: 7px 0 0;
  color: var(--muted);
}

.official-route-list a {
  min-width: 178px;
  padding: 10px 14px;
  border: 1px solid var(--navy);
  border-radius: var(--radius);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
}

.official-route-list a:hover,
.official-route-list a:focus-visible {
  background: var(--navy);
  color: var(--white);
  outline: none;
}

.funding-boundary-section {
  padding: 74px 0;
  border-top: 1px solid #e3d2ae;
  border-bottom: 1px solid #e3d2ae;
  background: #fbf7ed;
}

.funding-boundary-layout h2 {
  color: var(--navy);
  font-size: 2.6rem;
}

.funding-boundary-layout p {
  margin: 0 0 16px;
  color: #526175;
}

.requirements-section {
  padding: 88px 0;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.requirements-heading {
  width: min(820px, 100%);
  margin-bottom: 42px;
}

.requirements-heading h2 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.1;
}

.requirements-heading > p:last-child {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 48px;
}

.fact-card {
  min-height: 155px;
  padding: 23px;
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  background: var(--pale);
}

.fact-card strong {
  display: block;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.08;
}

.fact-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.fact-card-link {
  position: relative;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.fact-card-link em {
  display: inline-block;
  margin-top: 15px;
  color: var(--red);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 850;
  text-transform: uppercase;
}

.fact-card-link:hover,
.fact-card-link:focus-visible {
  border-color: var(--red);
  box-shadow: 0 14px 32px rgba(6, 36, 82, 0.12);
  outline: none;
  transform: translateY(-3px);
}

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

.unit-card {
  min-width: 0;
  padding: 27px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--navy);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(6, 36, 82, 0.06);
}

.unit-card .unit-number {
  margin: 0 0 11px;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.unit-card h3 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.16;
}

.unit-card > p:not(.unit-number) {
  margin: 14px 0 21px;
  color: var(--muted);
}

.unit-card dl {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.7fr;
  gap: 8px;
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.unit-card dl div {
  min-width: 0;
}

.unit-card dt {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.unit-card dd {
  margin: 3px 0 0;
  color: var(--navy);
  font-weight: 750;
  overflow-wrap: anywhere;
}

.unit-note {
  margin-top: 42px;
  padding: 30px;
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  background: #fbf7ed;
}

.unit-note h2 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}

.unit-note p {
  margin: 13px 0 0;
  color: var(--muted);
}

.unit-note .button-row {
  margin-top: 24px;
}

.requirements-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 60px;
  align-items: start;
}

.requirements-content h3,
.requirements-aside h3 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 1.28rem;
}

.requirements-content h3:not(:first-child) {
  margin-top: 38px;
}

.requirements-content p,
.requirements-aside p {
  color: var(--muted);
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: modules;
}

.module-grid li {
  position: relative;
  min-height: 48px;
  padding: 12px 10px 12px 46px;
  border-bottom: 1px solid var(--line);
  counter-increment: modules;
}

.module-grid li::before {
  position: absolute;
  top: 11px;
  left: 0;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  content: counter(modules);
  font-size: 0.78rem;
  font-weight: 850;
}

.requirements-aside {
  padding: 27px;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: #fbf7ed;
}

.requirements-aside ul {
  display: grid;
  gap: 11px;
  margin: 17px 0 0;
  padding-left: 20px;
}

.source-note {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.source-note a {
  color: var(--navy);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 80px;
}

.deliverables-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 38px;
}

.deliverables-list article {
  padding-top: 18px;
  border-top: 2px solid var(--navy);
}

.deliverables-list h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.12rem;
}

.deliverables-list p {
  margin: 8px 0 0;
  color: var(--muted);
}

.registration-section {
  padding: 92px 0;
}

.registration-steps {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.registration-steps li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
}

.registration-steps span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 850;
}

.registration-steps p {
  margin: 3px 0 0;
  color: var(--muted);
}

.service-next {
  padding: 55px 0;
  background: var(--navy);
  color: var(--white);
}

.service-next-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.service-next h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}

@media (max-width: 1040px) {
  .brand {
    min-width: 260px;
  }

  .brand-symbol {
    width: 68px;
    height: 59px;
    flex-basis: 68px;
  }

  .brand-name {
    font-size: 1.44rem;
  }

  .site-header .brand {
    min-width: 264px;
    gap: 11px;
  }

  .site-header .brand-symbol {
    width: 72px;
    height: 52px;
    flex-basis: 72px;
  }

  .site-header .brand-name {
    font-size: 1.32rem;
  }

  .primary-nav {
    gap: 13px;
    font-size: 0.87rem;
  }

  .header-utility {
    gap: 0;
  }

  .service-row,
  .service-overview-layout,
  .deliverables-grid {
    gap: 48px;
  }
}

@media (max-width: 900px) {
  .funding-route-grid {
    grid-template-columns: 1fr;
  }

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

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

  .protected-service-layout,
  .funding-boundary-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .protected-service-layout > div:last-child {
    padding: 24px 0 0;
    border-top: 2px solid var(--gold);
    border-left: 0;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 26px 24px;
    border-top: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 24px 50px rgba(6, 36, 82, 0.16);
  }

  .header-navigation {
    flex: 0 1 auto;
  }

  .header-utility {
    display: none;
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a,
  .primary-nav button {
    width: 100%;
    justify-content: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav .mobile-utility-action {
    display: inline-flex;
  }

  .primary-nav .nav-cta {
    margin-top: 15px;
    border: 0;
    text-align: center;
  }

  .primary-nav .nav-basket {
    margin-top: 10px;
    justify-content: center;
    border-bottom: 1px solid var(--line);
  }

  .menu-toggle {
    display: block;
  }

  .signature-layout,
  .value-layout,
  .contact-layout,
  .registration-layout,
  .service-overview-layout,
  .deliverables-grid,
  .requirements-layout,
  .basket-layout,
  .newsletter-signup-layout,
  .newsletter-band-inner,
  .home-services-layout {
    grid-template-columns: 1fr;
  }

  .newsletter-band-actions {
    width: min(280px, 100%);
    min-width: 0;
  }

  .basket-checkout {
    position: static;
  }

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

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

  .signature-layout {
    gap: 22px;
  }

  .signature-logo-lockup {
    width: min(460px, 100%);
    margin: 0 auto;
  }

  .service-row,
  .service-row.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service-row.reverse figure {
    order: 0;
  }

  .value-layout,
  .contact-layout,
  .registration-layout {
    gap: 46px;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 90px;
  }

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

  .brand {
    min-width: 0;
    gap: 7px;
  }

  .brand-symbol {
    width: 54px;
    height: 47px;
    flex-basis: 54px;
  }

  .brand-name {
    font-size: 1.08rem;
  }

  .site-header,
  .header-inner {
    min-height: var(--header-height);
  }

  .site-header .brand {
    min-width: 0;
    gap: 8px;
    padding: 0;
  }

  .site-header .brand-symbol {
    width: 62px;
    height: 45px;
    flex-basis: 62px;
  }

  .site-header .brand-name {
    font-size: 1.05rem;
  }

  .home-hero {
    min-height: 630px;
  }

  .funding-paths-section,
  .official-routes-section,
  .certification-guidance-section,
  .pricing-section,
  .protected-service-section,
  .funding-boundary-section {
    padding: 64px 0;
  }

  .funding-route-grid article {
    padding: 24px;
  }

  .protected-service-layout h2,
  .funding-boundary-layout h2 {
    font-size: 2.18rem;
  }

  .official-route-list article {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .official-route-list a {
    width: 100%;
    min-width: 0;
  }

  .hero-photo {
    background-position: 68% center;
  }

  .hero-inner {
    padding: 72px 0 62px;
  }

  .video-toggle {
    right: 14px;
    bottom: 14px;
  }

  .home-hero h1,
  .service-hero h1,
  .directory-hero h1 {
    font-size: 2.55rem;
  }

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

  .button-row {
    flex-direction: column;
  }

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

  .hero-assurances {
    display: grid;
    gap: 8px;
    margin-top: 30px;
  }

  .signature-layout {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .signature-copy h2,
  .section-heading h2,
  .value-layout h2,
  .contact-copy h2,
  .service-content h2,
  .registration-copy h2,
  .requirements-heading h2,
  .home-services-layout h2 {
    font-size: 2.18rem;
  }

  .section {
    padding: 70px 0;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .service-row {
    padding: 40px 0;
  }

  .service-row figure,
  .service-row figure img {
    min-height: 245px;
  }

  .service-row h3,
  .additional-services h3 {
    font-size: 2rem;
  }

  .additional-services,
  .value-points,
  .process-steps,
  .deliverables-list,
  .fact-grid,
  .module-grid,
  .unit-directory-grid,
  .payment-method-grid,
  .services-card-grid,
  .pricing-grid,
  .certification-guidance-grid {
    grid-template-columns: 1fr;
  }

  .unit-card {
    padding: 22px;
  }

  .unit-card dl {
    grid-template-columns: 1.35fr 0.7fr 0.7fr;
  }

  .directory-hero {
    padding: 68px 0;
  }

  .service-directory-card {
    min-height: 0;
    padding: 24px;
  }

  .service-card-actions {
    grid-template-columns: 1fr;
  }

  .basket-panel,
  .basket-checkout {
    padding: 22px 18px;
  }

  .newsletter-registration,
  .newsletter-modal-panel {
    padding: 27px 20px;
  }

  .subscription-login-panel,
  .newsletter-modal-panel.subscription-login-panel {
    width: 100%;
    padding: 34px 18px 25px;
  }

  .subscription-login-panel h2,
  .newsletter-modal-panel.subscription-login-panel h2 {
    margin-bottom: 24px;
    padding: 0 28px;
    font-size: 2rem;
  }

  .identity-subscribe-button {
    min-height: 59px;
    padding: 10px 15px;
    font-size: 0.96rem;
  }

  .subscription-login-panel .newsletter-form .subscription-email-input {
    min-height: 61px;
    padding: 0 21px;
  }

  .subscription-continue-button {
    min-height: 59px;
  }

  .newsletter-band h2,
  .newsletter-benefits h2 {
    font-size: 2.05rem;
  }

  .whatsapp-chat {
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
    min-height: 56px;
    justify-content: center;
    padding: 8px;
    border-radius: 50%;
  }

  .whatsapp-chat-icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .whatsapp-chat-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .basket-panel-heading {
    display: grid;
  }

  .basket-item {
    grid-template-columns: 48px 1fr;
  }

  .basket-item img {
    width: 48px;
    height: 48px;
  }

  .basket-remove {
    grid-column: 2;
    justify-self: start;
    padding-left: 0;
  }

  .service-directory-card img {
    width: 64px;
    height: 64px;
  }

  .service-hero-icon {
    width: 70px;
    height: 70px;
  }

  .requirements-section {
    padding: 68px 0;
  }

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

  .additional-services {
    gap: 35px;
  }

  .process-steps {
    gap: 30px;
  }

  .enquiry-form {
    padding: 22px 18px;
  }

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

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-bottom,
  .service-next-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-hero {
    min-height: 420px;
  }

  .service-hero-inner {
    padding-top: 70px;
    padding-bottom: 55px;
  }

  .service-overview {
    padding: 65px 0;
  }

  .service-aside {
    padding: 23px;
  }
}

@media (max-width: 900px) {
  .career-hub-card,
  .social-qr-layout,
  .seo-growth-layout,
  .social-page-layout {
    grid-template-columns: 1fr;
  }

  .testimonial-grid,
  .seo-pillar-grid,
  .social-directory-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .career-hub-card,
  .social-qr-layout,
  .seo-growth-layout,
  .qr-card {
    padding: 20px;
  }

  .cookie-banner {
    right: 14px;
    bottom: 84px;
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    justify-items: start;
  }
}

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

  .heritage-video {
    transform: none;
  }
}

/* Professional development platform additions */
.achievement-section,
.platform-section {
  background: #ffffff;
}

.section-heading {
  width: min(850px, 100%);
  margin-bottom: 30px;
}

.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 3.25rem);
  font-weight: 500;
  line-height: 1.08;
}

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

.achievement-grid,
.pillar-grid,
.pathway-grid,
.hub-topic-grid,
.action-grid,
.partner-grid,
.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.achievement-card,
.pillar-grid article,
.pathway-grid article,
.hub-topic-grid article,
.action-grid article,
.partner-grid article,
.insight-grid article,
.guidance-callout {
  display: block;
  min-height: 100%;
  padding: 27px;
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(6, 36, 82, 0.07);
  color: var(--ink);
  text-decoration: none;
}

.achievement-card:hover,
.achievement-card:focus-visible,
.insight-grid article:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(6, 36, 82, 0.13);
  outline: none;
}

.achievement-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 850;
}

.achievement-card strong,
.pillar-grid h3,
.pathway-grid h3,
.hub-topic-grid h3,
.action-grid h3,
.partner-grid h3,
.insight-grid h3,
.guidance-callout strong {
  display: block;
  margin: 0 0 10px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.18;
}

.achievement-card p,
.pillar-grid p,
.pathway-grid p,
.hub-topic-grid p,
.action-grid p,
.partner-grid p,
.insight-grid p,
.guidance-callout p {
  margin: 0;
  color: var(--muted);
}

.pathway-lede,
.hub-card-lede {
  margin-bottom: 18px !important;
  color: #334a69 !important;
  font-weight: 700;
}

.pathway-meta {
  display: grid;
  gap: 12px;
  margin: 20px 0 6px;
}

.pathway-meta div {
  padding: 14px;
  border: 1px solid rgba(6, 36, 82, 0.12);
  border-radius: 8px;
  background: #f7f9fc;
}

.pathway-meta dt {
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.pathway-meta dd {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.pathway-support {
  margin-top: 18px !important;
  padding-top: 16px;
  border-top: 1px solid rgba(6, 36, 82, 0.12);
  color: #243b5a !important;
}

.pathway-support strong {
  color: var(--navy);
}

.research-signal-grid,
.snapshot-data-strip,
.career-snapshot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.research-signal-grid article,
.snapshot-data-strip article,
.career-snapshot-grid article {
  min-height: 100%;
  padding: 22px;
  border: 1px solid rgba(6, 36, 82, 0.1);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(6, 36, 82, 0.06);
}

.snapshot-data-strip {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-bottom: 22px;
}

.snapshot-data-strip article {
  padding: 18px;
  border-top-color: var(--red);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.research-signal-grid strong,
.snapshot-data-strip strong {
  display: block;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1;
}

.research-signal-grid span,
.snapshot-data-strip span,
.career-snapshot-grid span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.6;
}

.snapshot-data-strip span {
  font-size: 0.92rem;
}

.career-snapshot-grid h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  font-weight: 500;
  line-height: 1.12;
}

.career-snapshot-grid p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.65;
}

.career-snapshot-grid strong {
  display: block;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.snapshot-facts {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.snapshot-facts div {
  padding: 14px;
  border: 1px solid rgba(6, 36, 82, 0.12);
  border-radius: 8px;
  background: #f8fafc;
}

.snapshot-facts dt {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.snapshot-facts dd {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.snapshot-action {
  margin-top: 16px !important;
  padding-top: 15px;
  border-top: 1px solid rgba(6, 36, 82, 0.12);
  color: #243b5a !important;
}

.snapshot-action strong {
  display: inline;
  color: var(--navy);
  font-size: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 34px;
  align-items: start;
}

.split-feature h2 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.08;
}

.split-feature p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.pale-section {
  background: var(--pale);
}

@media (max-width: 1120px) {
  .achievement-grid,
  .pillar-grid,
  .pathway-grid,
  .hub-topic-grid,
  .action-grid,
  .partner-grid,
  .insight-grid,
  .research-signal-grid,
  .snapshot-data-strip,
  .career-snapshot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .achievement-grid,
  .pillar-grid,
  .pathway-grid,
  .hub-topic-grid,
  .action-grid,
  .partner-grid,
  .insight-grid,
  .research-signal-grid,
  .snapshot-data-strip,
  .career-snapshot-grid,
  .split-feature {
    grid-template-columns: 1fr;
  }

  .achievement-card,
  .pillar-grid article,
  .pathway-grid article,
  .hub-topic-grid article,
  .action-grid article,
  .partner-grid article,
  .insight-grid article,
  .guidance-callout {
    padding: 23px;
  }
}

/* Compact client-facing navigation */
.site-header .header-inner {
  position: relative;
}

.site-header .compact-primary-nav {
  gap: 16px;
  white-space: nowrap;
}

.site-header .compact-primary-nav > a:not(.nav-basket) {
  padding: 12px 4px;
}

.site-menu {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.site-header .menu-toggle {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  padding: 13px;
  border: 0;
  border-radius: 50%;
  background: #f0f2f5;
  box-shadow: 0 10px 24px rgba(6, 36, 82, 0.1);
}

.site-header .menu-toggle span {
  width: 22px;
  height: 2px;
  margin: 2px 0;
  border-radius: 999px;
  background: var(--navy);
}

.site-header .menu-toggle:hover,
.site-header .menu-toggle:focus-visible,
.site-menu.is-open .menu-toggle {
  background: var(--navy);
}

.site-header .menu-toggle:hover span,
.site-header .menu-toggle:focus-visible span,
.site-menu.is-open .menu-toggle span {
  background: var(--white);
}

.site-menu-panel {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  z-index: 70;
  display: none;
  width: min(330px, calc(100vw - 42px));
  max-height: calc(100vh - 150px);
  overflow: auto;
  padding: 10px;
  border: 1px solid rgba(6, 36, 82, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 60px rgba(3, 26, 60, 0.18);
}

.site-menu.is-open .site-menu-panel {
  display: grid;
}

.site-menu-panel a {
  display: block;
  padding: 11px 13px;
  border-radius: 6px;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 750;
}

.site-menu-panel a:hover,
.site-menu-panel a:focus-visible {
  background: var(--blue-pale);
  color: var(--red);
  outline: none;
}

.ai-certificate-section {
  background: linear-gradient(135deg, #061f45 0%, #092f68 52%, #111827 100%);
  color: var(--white);
}

.ai-certificate-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 34px;
  align-items: start;
}

.ai-certificate-section .eyebrow,
.ai-certificate-section h2,
.ai-certificate-section h3 {
  color: var(--white);
}

.ai-certificate-section p {
  color: rgba(255, 255, 255, 0.82);
}

.ai-certificate-card,
.ai-newsletter-ad {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-top: 5px solid var(--gold);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.18);
}

.ai-certificate-card {
  padding: 28px;
}

.ai-certificate-card ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.ai-certificate-card li {
  position: relative;
  padding-left: 25px;
  color: rgba(255, 255, 255, 0.86);
}

.ai-certificate-card li::before {
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 9px;
  height: 9px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  content: "";
}

.ai-certificate-section .source-note {
  border-top-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.72);
}

.ai-newsletter-ad {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding: 24px;
}

.ai-newsletter-ad h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.08;
}

.ai-newsletter-ad p {
  margin: 0;
}

.button-gold {
  background: var(--gold);
  color: var(--navy);
}

.button-gold:hover,
.button-gold:focus-visible {
  background: #d19a2a;
  color: var(--navy);
}

.ai-chat-widget {
  position: fixed;
  right: 22px;
  bottom: 94px;
  z-index: 82;
  display: grid;
  justify-items: end;
  gap: 10px;
}

.ai-chat-toggle {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  gap: 10px;
  padding: 9px 17px 9px 10px;
  border: 2px solid var(--white);
  border-radius: 30px;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 12px 32px rgba(3, 26, 60, 0.24);
}

.ai-chat-toggle span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-weight: 900;
}

.ai-chat-toggle strong {
  font-size: 0.86rem;
}

.ai-chat-panel {
  width: min(380px, calc(100vw - 32px));
  overflow: hidden;
  border: 1px solid rgba(6, 36, 82, 0.14);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 28px 72px rgba(3, 26, 60, 0.28);
}

.ai-chat-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  background: var(--navy);
  color: var(--white);
}

.ai-chat-header h2,
.ai-chat-header p {
  margin: 0;
  color: var(--white);
}

.ai-chat-header h2 {
  font-size: 1.05rem;
}

.ai-chat-header button {
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
}

.ai-chat-log {
  display: grid;
  max-height: 250px;
  gap: 10px;
  overflow: auto;
  padding: 16px;
  background: #f7f9fc;
}

.ai-chat-message {
  margin: 0;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  line-height: 1.45;
}

.ai-chat-message.assistant {
  margin-right: 28px;
  background: var(--white);
  color: var(--ink);
}

.ai-chat-message.user {
  margin-left: 28px;
  background: var(--navy);
  color: var(--white);
}

.ai-chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 14px;
  border-top: 1px solid var(--line);
}

.ai-chat-form input {
  min-width: 0;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.ai-chat-form button {
  padding: 10px 14px;
  border: 0;
  border-radius: 6px;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
}

.ai-chat-note {
  margin: 0;
  padding: 0 14px 14px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

@media (max-width: 1120px) {
  .site-header .compact-primary-nav {
    gap: 10px;
    font-size: 0.86rem;
  }
}

@media (max-width: 900px) {
  .site-header .compact-primary-nav {
    display: none;
  }

  .site-header .menu-toggle {
    display: grid;
  }

  .site-menu-panel {
    position: fixed;
    top: 96px;
    right: 16px;
    left: 16px;
    width: auto;
    max-height: calc(100vh - 120px);
  }

  .ai-certificate-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header .brand {
    min-width: 0;
  }

  .site-header .brand-name {
    font-size: 1.05rem;
  }

  .site-header .brand-symbol {
    width: 60px;
    height: 48px;
    flex-basis: 60px;
  }

  .ai-chat-widget {
    right: 12px;
    bottom: 90px;
  }

  .ai-chat-toggle strong {
    display: none;
  }
}
