/* ========================================================================== 
   PINACKLE HR CONSULTANCY FZE — PUBLIC WEBSITE DESIGN SYSTEM
   Shared stylesheet for header, footer, public pages, and responsive layouts.
   ========================================================================== */

:root {
  --navy-950: #061a30;
  --navy-900: #0b2a4a;
  --navy-800: #123a61;
  --navy-700: #1e4d77;
  --navy-100: #e9f2fa;
  --navy-50: #f4f8fc;
  --green-800: #1d7f48;
  --green-700: #248f50;
  --green-600: #2fae63;
  --green-500: #47c779;
  --green-100: #e9f8ee;
  --green-50: #f4fcf6;
  --ink: #17324d;
  --heading: #0b2a4a;
  --body: #5d6e7f;
  --muted: #7d8b99;
  --line: rgba(15, 52, 84, 0.12);
  --line-light: rgba(255, 255, 255, 0.18);
  --surface: #ffffff;
  --surface-soft: #f7fafc;
  --surface-tint: #eef7f2;
  --white: #ffffff;
  --danger: #c93838;
  --warning: #ad7413;
  --success: #25834b;
  --info: #2468a1;
  --shadow-xs: 0 4px 12px rgba(11, 42, 74, 0.06);
  --shadow-sm: 0 10px 25px rgba(11, 42, 74, 0.08);
  --shadow-md: 0 20px 46px rgba(11, 42, 74, 0.12);
  --shadow-lg: 0 32px 70px rgba(5, 31, 54, 0.19);
  --radius-xs: 0.5rem;
  --radius-sm: 0.875rem;
  --radius-md: 1.25rem;
  --radius-lg: 1.75rem;
  --radius-xl: 2.5rem;
  --font-body: "Manrope", Arial, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
  --transition-fast: 180ms ease;
  --transition-base: 300ms cubic-bezier(0.2, 0.7, 0.2, 1);
  --container: 1240px;
}

/* --------------------------------------------------------------------------
   Reset and global defaults
   -------------------------------------------------------------------------- */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--surface);
  color: var(--body);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
picture,
svg,
canvas,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading);
  font-weight: 700;
  line-height: 1.18;
}

h1,
h2 {
  letter-spacing: -0.04em;
}

p {
  margin-bottom: 1rem;
}

::selection {
  background: rgba(47, 174, 99, 0.24);
  color: var(--navy-950);
}

:focus-visible {
  outline: 3px solid rgba(47, 174, 99, 0.55);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 3000;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  transform: translateY(-200%);
  border-radius: var(--radius-xs);
  background: var(--navy-900);
  color: var(--white);
  font-weight: 700;
  transition: transform var(--transition-fast);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 3rem), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 7.5rem 0;
}

.section--soft {
  background: var(--surface-soft);
}

.section--tint {
  background: radial-gradient(
      circle at 5% 10%,
      rgba(47, 174, 99, 0.11),
      transparent 25rem
    ),
    linear-gradient(135deg, #eff8f2 0%, #f8fcfa 52%, #eef5fb 100%);
}

.section--navy {
  overflow: hidden;
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.78);
}

.section--navy h2,
.section--navy h3 {
  color: var(--white);
}

.section__head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 0.55fr);
  gap: 3.5rem;
  align-items: end;
  margin-bottom: 3.75rem;
}

.section__head--center {
  display: flex;
  max-width: 48rem;
  margin-inline: auto;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section__head h2 {
  max-width: 15ch;
  margin-bottom: 0;
  font-size: clamp(2.05rem, 4vw, 3.65rem);
}

.section__head p {
  max-width: 36rem;
  margin: 0 0 0 auto;
  color: var(--body);
  font-size: 1.02rem;
}

.section__head--center h2,
.section__head--center p {
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--green-800);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2rem;
  height: 2px;
  border-radius: 999px;
  background: var(--green-600);
  content: "";
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.8);
}

.eyebrow--light::before {
  background: var(--green-500);
}

.eyebrow i {
  color: var(--green-500);
  font-size: 0.84rem;
}

.text-green {
  color: var(--green-600);
}

.display-font {
  font-family: var(--font-display);
}

/* --------------------------------------------------------------------------
   Buttons and small reusable controls
   -------------------------------------------------------------------------- */

.button {
  display: inline-flex;
  gap: 0.65rem;
  min-height: 3.25rem;
  padding: 0.75rem 1.2rem;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 0.8rem;
  background: var(--navy-900);
  box-shadow: 0 8px 20px rgba(11, 42, 74, 0.18);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  transition:
    transform var(--transition-base),
    background var(--transition-base),
    box-shadow var(--transition-base),
    color var(--transition-base),
    border-color var(--transition-base);
}

.button:hover {
  transform: translateY(-3px);
  background: var(--green-700);
  box-shadow: 0 14px 28px rgba(30, 111, 68, 0.25);
  color: var(--white);
}

.button i {
  font-size: 0.78rem;
  transition: transform var(--transition-fast);
}

.button:hover i {
  transform: translateX(3px);
}

.button--green {
  background: var(--green-600);
  box-shadow: 0 10px 22px rgba(47, 174, 99, 0.22);
}

.button--green:hover {
  background: var(--navy-900);
}

.button--ghost {
  border-color: rgba(11, 42, 74, 0.18);
  background: transparent;
  box-shadow: none;
  color: var(--navy-900);
}

.button--ghost:hover {
  border-color: var(--navy-900);
  background: var(--navy-900);
}

.button--white {
  background: var(--white);
  box-shadow: 0 12px 26px rgba(3, 20, 37, 0.18);
  color: var(--navy-900);
}

.button--white:hover {
  background: var(--green-500);
  color: var(--navy-950);
}

.button--outline-light {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
  color: var(--white);
}

.button--outline-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.button--nav {
  min-height: 2.8rem;
  padding: 0.65rem 0.95rem;
  border-radius: 0.72rem;
  background: var(--green-600);
  box-shadow: 0 7px 18px rgba(47, 174, 99, 0.18);
  font-size: 0.78rem;
}

.button--nav:hover {
  background: var(--navy-900);
}

.text-link {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  color: var(--navy-900);
  font-size: 0.86rem;
  font-weight: 800;
}

.text-link i {
  color: var(--green-600);
  transition: transform var(--transition-fast);
}

.text-link:hover i {
  transform: translateX(4px);
}

.icon-badge {
  display: inline-grid;
  width: 3.35rem;
  height: 3.35rem;
  place-items: center;
  border-radius: 1rem;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 1.18rem;
}

/* --------------------------------------------------------------------------
   Floating glassmorphism site header
   -------------------------------------------------------------------------- */

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  padding: 1.15rem 0;
  pointer-events: none;
  transition: padding var(--transition-base);
}

.site-header__inner {
  display: flex;
  min-height: 5.7rem;
  padding: 0.6rem 0.85rem 0.6rem 1.15rem;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 35px rgba(8, 38, 67, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  pointer-events: auto;
  transition:
    min-height var(--transition-base),
    background var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base);
}

.site-header.is-scrolled {
  padding: 0.6rem 0;
}

.site-header.is-scrolled .site-header__inner {
  min-height: 5rem;
  border-color: rgba(11, 42, 74, 0.08);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 12px 32px rgba(8, 38, 67, 0.13);
}

.brand,
.footer-brand {
  display: inline-flex;
  gap: 0.65rem;
  align-items: center;
  flex-shrink: 0;
}

.brand__image {
  width: auto;
  max-width: 18rem;
  height: 4.15rem;
  object-fit: contain;
  object-position: left center;
}

.brand__mark {
  position: relative;
  display: inline-block;
  width: 2.8rem;
  height: 2.45rem;
}

.brand__person {
  position: absolute;
  bottom: 0.2rem;
  width: 1.5rem;
  height: 1.55rem;
  border-radius: 70% 70% 55% 55%;
  transform: rotate(-26deg);
}

.brand__person::before {
  position: absolute;
  top: -0.78rem;
  left: 0.35rem;
  width: 0.82rem;
  height: 0.82rem;
  border-radius: 50%;
  content: "";
}

.brand__person--navy {
  left: 0;
  background: var(--navy-900);
}

.brand__person--navy::before {
  background: var(--navy-900);
}

.brand__person--green {
  right: 0;
  transform: rotate(26deg);
  background: var(--green-600);
}

.brand__person--green::before {
  background: var(--green-600);
}

.brand__content,
.footer-brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__content strong,
.footer-brand__text strong {
  color: var(--navy-900);
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand__content small,
.footer-brand__text small {
  margin-top: 0.26rem;
  color: var(--green-700);
  font-size: 0.53rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  gap: 1.7rem;
  align-items: center;
}

.primary-nav__mobile-head {
  display: none;
}

.primary-nav__list {
  display: flex;
  gap: 0.1rem;
  align-items: center;
}

.primary-nav__link {
  position: relative;
  display: inline-block;
  padding: 0.55rem 0.62rem;
  color: #36516a;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  transition: color var(--transition-fast);
}

.primary-nav__link::after {
  position: absolute;
  right: 0.62rem;
  bottom: 0.18rem;
  left: 0.62rem;
  height: 2px;
  border-radius: 99px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--green-600);
  content: "";
  transition: transform var(--transition-base);
}

.primary-nav__link:hover,
.primary-nav__link.is-active {
  color: var(--navy-900);
}

.primary-nav__link:hover::after,
.primary-nav__link.is-active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 2.85rem;
  height: 2.85rem;
  padding: 0;
  place-content: center;
  gap: 0.28rem;
  border: 0;
  border-radius: 0.72rem;
  background: var(--navy-900);
}

.menu-toggle span {
  display: block;
  width: 1.25rem;
  height: 2px;
  margin-inline: auto;
  border-radius: 99px;
  background: var(--white);
  transition:
    transform var(--transition-fast),
    opacity var(--transition-fast);
}

.menu-backdrop {
  position: fixed;
  z-index: 850;
  inset: 0;
  visibility: hidden;
  background: rgba(3, 22, 41, 0.44);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity var(--transition-base),
    visibility var(--transition-base);
}

.menu-backdrop.is-visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.flash-stack {
  position: fixed;
  z-index: 1300;
  top: 6.6rem;
  right: 0;
  left: 0;
  display: grid;
  gap: 0.65rem;
  pointer-events: none;
}

.flash-message {
  display: flex;
  width: min(100%, 34rem);
  padding: 0.85rem 1rem;
  align-items: center;
  justify-content: space-between;
  margin-left: auto;
  border: 1px solid;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-md);
  font-size: 0.84rem;
  font-weight: 700;
  pointer-events: auto;
}

.flash-message--success {
  border-color: #b7e7c9;
  background: #effbf3;
  color: #176737;
}
.flash-message--error {
  border-color: #f0c0c0;
  background: #fff3f3;
  color: #9e2b2b;
}
.flash-message--warning {
  border-color: #f3dfaf;
  background: #fff9e9;
  color: #8c5c0d;
}
.flash-message--info {
  border-color: #c3dcf0;
  background: #f1f8ff;
  color: #165887;
}

.flash-message__close {
  display: grid;
  width: 1.6rem;
  height: 1.6rem;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: currentColor;
}

.flash-message__close:hover {
  background: rgba(0, 0, 0, 0.08);
}

/* --------------------------------------------------------------------------
   Home hero and reusable premium hero styles
   -------------------------------------------------------------------------- */

.home-hero {
  position: relative;
  overflow: hidden;
  min-height: 49rem;
  padding: 12.6rem 0 6.6rem;
  background: radial-gradient(
      circle at 78% 12%,
      rgba(47, 174, 99, 0.24),
      transparent 18rem
    ),
    radial-gradient(
      circle at 92% 78%,
      rgba(63, 150, 218, 0.21),
      transparent 21rem
    ),
    linear-gradient(135deg, #eff6fb 0%, #f8fcfa 52%, #e8f4ee 100%);
}

.home-hero::before,
.home-hero::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.home-hero::before {
  top: 11rem;
  right: -14rem;
  width: 36rem;
  height: 36rem;
  border: 1px solid rgba(47, 174, 99, 0.2);
  box-shadow:
    0 0 0 4rem rgba(47, 174, 99, 0.035),
    0 0 0 9rem rgba(11, 42, 74, 0.025);
}

.home-hero::after {
  bottom: -20rem;
  left: -11rem;
  width: 32rem;
  height: 32rem;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(47, 174, 99, 0.16),
    rgba(47, 174, 99, 0)
  );
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(27rem, 0.95fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
}

.hero-copy {
  max-width: 43rem;
}

.hero-copy h1 {
  max-width: 12ch;
  margin-bottom: 1.35rem;
  color: var(--navy-900);
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 800;
  line-height: 1.06;
}

.hero-copy h1 em {
  color: var(--green-600);
  font-family: var(--font-display);
  font-weight: 600;
}

.hero-copy > p {
  max-width: 37rem;
  margin-bottom: 2rem;
  color: #526a80;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 2.4rem;
}

.hero-proof {
  display: flex;
  gap: 1.3rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-proof__avatars {
  display: flex;
  padding-left: 0.3rem;
}

.hero-proof__avatars span {
  display: grid;
  width: 2.45rem;
  height: 2.45rem;
  margin-left: -0.3rem;
  place-items: center;
  border: 3px solid #f4faf7;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-800), var(--green-600));
  color: var(--white);
  font-size: 0.7rem;
}

.hero-proof__text {
  color: var(--body);
  font-size: 0.76rem;
  line-height: 1.35;
}

.hero-proof__text strong {
  display: block;
  color: var(--navy-900);
  font-size: 0.94rem;
}

.hero-visual {
  position: relative;
  min-height: 32.5rem;
}

.hero-visual__image-wrap {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 2.5rem;
  overflow: hidden;
  border: 0.65rem solid rgba(255, 255, 255, 0.72);
  border-radius: 2.2rem;
  box-shadow: var(--shadow-lg);
}

.hero-visual__image-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 42, 74, 0.04) 10%,
    rgba(11, 42, 74, 0.42) 100%
  );
  content: "";
}

.hero-visual__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual__image-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  padding: 3rem;
  place-items: center;
  background: linear-gradient(
      135deg,
      rgba(11, 42, 74, 0.81),
      rgba(11, 42, 74, 0.32)
    ),
    linear-gradient(120deg, #163e62 0%, #358c66 100%);
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
}

.hero-visual__image-placeholder i {
  margin-bottom: 1rem;
  color: var(--green-500);
  font-size: 4rem;
}

.hero-visual__image-placeholder span {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
}

.floating-card {
  position: absolute;
  z-index: 2;
  display: flex;
  gap: 0.7rem;
  padding: 0.85rem 1rem;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.87);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.floating-card--top {
  top: 2.1rem;
  left: 0;
}

.floating-card--bottom {
  right: -1.25rem;
  bottom: 2.4rem;
}

.floating-card__icon {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border-radius: 0.7rem;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 0.95rem;
}

.floating-card__content small,
.floating-card__content strong {
  display: block;
  line-height: 1.3;
}

.floating-card__content small {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
}

.floating-card__content strong {
  color: var(--navy-900);
  font-size: 0.83rem;
}

.trust-bar {
  position: relative;
  z-index: 5;
  margin-top: -2.75rem;
}

.trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(11, 42, 74, 0.08);
  border-radius: 1.15rem;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.trust-item {
  display: flex;
  gap: 0.75rem;
  min-height: 6.75rem;
  padding: 1.1rem 1.4rem;
  align-items: center;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-item i {
  color: var(--green-600);
  font-size: 1.5rem;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  color: var(--navy-900);
  font-size: 0.92rem;
  line-height: 1.3;
}

.trust-item span {
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.3;
}

/* --------------------------------------------------------------------------
   Statistics, services, industry cards, and content components
   -------------------------------------------------------------------------- */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.stat-card {
  position: relative;
  padding: 2.1rem 2rem;
}

.stat-card + .stat-card {
  border-left: 1px solid var(--line);
}

.stat-card::after {
  position: absolute;
  top: 0;
  left: 2rem;
  width: 2rem;
  height: 3px;
  border-radius: 99px;
  background: var(--green-600);
  content: "";
}

.stat-card__number {
  display: flex;
  gap: 0.1rem;
  align-items: baseline;
  margin-bottom: 0.35rem;
  color: var(--navy-900);
  font-size: clamp(2.1rem, 3vw, 3.15rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
}

.stat-card__label {
  color: var(--navy-800);
  font-size: 0.81rem;
  font-weight: 800;
}

.stat-card p {
  margin: 0.6rem 0 0;
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.55;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 23rem;
  padding: 1.65rem;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(11, 42, 74, 0.09);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-xs);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base);
}

.service-card::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 7.5rem;
  height: 7.5rem;
  transform: translate(40%, -40%);
  border-radius: 50%;
  background: rgba(47, 174, 99, 0.08);
  content: "";
  transition:
    transform 500ms ease,
    background 500ms ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(47, 174, 99, 0.33);
  box-shadow: var(--shadow-md);
}

.service-card:hover::before {
  transform: translate(22%, -22%) scale(1.3);
  background: rgba(47, 174, 99, 0.13);
}

.service-card__number {
  margin-bottom: 1.2rem;
  color: var(--green-700);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-card h3 {
  margin: 1.35rem 0 0.8rem;
  font-size: 1.28rem;
}

.service-card p {
  margin-bottom: 1.2rem;
  color: var(--body);
  font-size: 0.82rem;
  line-height: 1.65;
}

.service-card__list {
  display: grid;
  gap: 0.42rem;
  margin: auto 0 1.5rem;
}

.service-card__list li {
  position: relative;
  padding-left: 1.2rem;
  color: #526a80;
  font-size: 0.72rem;
  font-weight: 700;
}

.service-card__list li::before {
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--green-600);
  content: "";
}

.service-card .text-link {
  margin-top: auto;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.9rem;
}

.industry-card {
  display: grid;
  min-height: 10.6rem;
  padding: 1rem;
  place-items: center;
  border: 1px solid rgba(11, 42, 74, 0.09);
  border-radius: 1rem;
  background: var(--white);
  box-shadow: var(--shadow-xs);
  color: var(--navy-900);
  text-align: center;
  transition:
    transform var(--transition-base),
    background var(--transition-base),
    color var(--transition-base),
    box-shadow var(--transition-base);
}

.industry-card:hover {
  transform: translateY(-6px);
  background: var(--navy-900);
  box-shadow: var(--shadow-md);
  color: var(--white);
}

.industry-card__icon {
  display: grid;
  width: 3.3rem;
  height: 3.3rem;
  margin-bottom: 0.7rem;
  place-items: center;
  border: 1px solid var(--green-100);
  border-radius: 50%;
  background: var(--green-50);
  color: var(--green-700);
  font-size: 1.25rem;
  transition:
    background var(--transition-base),
    color var(--transition-base);
}

.industry-card:hover .industry-card__icon {
  background: rgba(255, 255, 255, 0.13);
  color: var(--green-500);
}

.industry-card strong {
  font-size: 0.74rem;
  line-height: 1.35;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(25rem, 1.1fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
}

.split-feature--reverse {
  grid-template-columns: minmax(25rem, 1.1fr) minmax(0, 0.9fr);
}

.split-feature__visual {
  position: relative;
  min-height: 30rem;
}

.split-feature__image,
.split-feature__placeholder {
  width: calc(100% - 1.75rem);
  height: calc(100% - 1.75rem);
  margin-left: 1.75rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.split-feature__placeholder {
  display: grid;
  padding: 2rem;
  place-items: center;
  background: linear-gradient(140deg, var(--navy-800), #1f7051);
  color: var(--white);
  text-align: center;
}

.split-feature__placeholder i {
  margin-bottom: 0.8rem;
  color: var(--green-500);
  font-size: 3rem;
}

.split-feature__shape {
  position: absolute;
  z-index: -1;
  top: -1.4rem;
  bottom: 0;
  left: 0;
  width: 62%;
  border-radius: var(--radius-lg);
  background: var(--green-100);
}

.split-feature__content h2 {
  max-width: 14ch;
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 3.5vw, 3.3rem);
}

.split-feature__content > p {
  max-width: 35rem;
  margin-bottom: 1.7rem;
}

.check-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.8rem 0 2rem;
}

.check-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
}

.check-list i {
  display: grid;
  width: 1.45rem;
  height: 1.45rem;
  margin-top: 0.05rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 0.64rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: process;
}

.process-card {
  position: relative;
  padding: 1.5rem;
  border-top: 2px solid rgba(47, 174, 99, 0.3);
}

.process-card::before {
  display: block;
  margin-bottom: 1.2rem;
  color: var(--green-500);
  content: "0" counter(process);
  counter-increment: process;
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
}

.process-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.08rem;
}

.process-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.79rem;
  line-height: 1.65;
}

.quote-card {
  position: relative;
  padding: 2.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.quote-card::before {
  position: absolute;
  top: 1.25rem;
  right: 1.65rem;
  color: var(--green-100);
  content: "“";
  font-family: Georgia, serif;
  font-size: 7rem;
  font-weight: 700;
  line-height: 0.8;
}

.quote-card blockquote {
  position: relative;
  max-width: 37rem;
  margin: 0 0 1.6rem;
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1.5;
}

.quote-card__author {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.quote-card__avatar {
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-800), var(--green-600));
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
}

.quote-card__author strong,
.quote-card__author span {
  display: block;
}

.quote-card__author strong {
  color: var(--navy-900);
  font-size: 0.8rem;
}

.quote-card__author span {
  color: var(--muted);
  font-size: 0.7rem;
}

/* --------------------------------------------------------------------------
   Internal page hero, cards, jobs, contact and form components
   -------------------------------------------------------------------------- */

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 11.5rem 0 6rem;
  background: radial-gradient(
      circle at 85% 15%,
      rgba(47, 174, 99, 0.22),
      transparent 20rem
    ),
    linear-gradient(135deg, #edf5fb, #f7fcf8 60%, #e5f2eb);
}

.page-hero::after {
  position: absolute;
  right: -8rem;
  bottom: -12rem;
  width: 30rem;
  height: 30rem;
  border: 1px solid rgba(11, 42, 74, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 3.5rem rgba(47, 174, 99, 0.04);
  content: "";
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 53rem;
}

.page-hero h1 {
  max-width: 13ch;
  margin-bottom: 1.1rem;
  font-size: clamp(2.7rem, 5.2vw, 4.55rem);
}

.page-hero p {
  max-width: 42rem;
  margin-bottom: 0;
  font-size: 1.04rem;
}

.breadcrumb {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--green-800);
  font-size: 0.75rem;
  font-weight: 800;
}

.breadcrumb a:hover {
  color: var(--navy-900);
}

.breadcrumb i {
  font-size: 0.6rem;
}

.content-card {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-xs);
}

.content-card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.2rem;
}

.content-card p:last-child {
  margin-bottom: 0;
}

.two-column-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.three-column-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.four-column-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.job-layout {
  display: grid;
  grid-template-columns: 18rem minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.filter-panel {
  position: sticky;
  top: 7rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-xs);
}

.filter-panel h3 {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}

.form-field {
  display: grid;
  gap: 0.42rem;
  margin-bottom: 1rem;
}

.form-field label {
  color: var(--navy-800);
  font-size: 0.74rem;
  font-weight: 800;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  min-height: 3rem;
  padding: 0.72rem 0.85rem;
  border: 1px solid #d8e2eb;
  border-radius: 0.65rem;
  outline: 0;
  background: var(--white);
  color: var(--ink);
  font-size: 0.82rem;
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast);
}

.form-field textarea {
  min-height: 8.5rem;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #9caab7;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(47, 174, 99, 0.14);
}

.form-help {
  margin-top: -0.25rem;
  color: var(--muted);
  font-size: 0.68rem;
}

.job-list {
  display: grid;
  gap: 1rem;
}

.job-card {
  position: relative;
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr) auto;
  gap: 1rem;
  padding: 1.35rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-xs);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base);
}

.job-card:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 174, 99, 0.35);
  box-shadow: var(--shadow-md);
}

.job-card__icon {
  display: grid;
  width: 4rem;
  height: 4rem;
  place-items: center;
  border-radius: 1rem;
  background: var(--navy-50);
  color: var(--navy-800);
  font-size: 1.35rem;
}

.job-card h3 {
  margin-bottom: 0.4rem;
  font-size: 1.12rem;
}

.job-card__meta {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
}

.job-card__meta span {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
}

.job-card__meta i {
  color: var(--green-600);
}

.job-card__badge {
  display: inline-flex;
  padding: 0.36rem 0.6rem;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-800);
  font-size: 0.64rem;
  font-weight: 800;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(17rem, 0.7fr) minmax(0, 1.3fr);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.contact-layout__aside {
  padding: clamp(2rem, 4vw, 3.5rem);
  background: radial-gradient(
      circle at 10% 15%,
      rgba(47, 174, 99, 0.32),
      transparent 13rem
    ),
    linear-gradient(150deg, var(--navy-950), var(--navy-800));
  color: rgba(255, 255, 255, 0.75);
}

.contact-layout__aside h2 {
  margin-bottom: 1rem;
  color: var(--white);
  font-size: clamp(1.85rem, 3vw, 2.7rem);
}

.contact-layout__aside > p {
  font-size: 0.87rem;
}

.contact-points {
  display: grid;
  gap: 1.1rem;
  margin-top: 2.5rem;
}

.contact-points li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.78rem;
}

.contact-points i {
  display: grid;
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--green-500);
}

.contact-points strong,
.contact-points span {
  display: block;
}

.contact-points strong {
  color: var(--white);
  font-size: 0.76rem;
}

.contact-points span {
  margin-top: 0.1rem;
  color: rgba(255, 255, 255, 0.63);
}

.contact-layout__form {
  padding: clamp(1.75rem, 4vw, 3.5rem);
}

.contact-layout__form h2 {
  margin-bottom: 0.45rem;
  font-size: 1.7rem;
}

.contact-layout__form > p {
  margin-bottom: 1.6rem;
  font-size: 0.82rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

/* --------------------------------------------------------------------------
   Unique PINACKLE site footer
   -------------------------------------------------------------------------- */

.site-footer {
  position: relative;
  overflow: hidden;
  padding-top: 5.5rem;
  background: #061d34;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer__orb {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
}

.site-footer__orb--one {
  top: -15rem;
  right: -13rem;
  width: 38rem;
  height: 38rem;
  border: 1px solid rgba(47, 174, 99, 0.17);
  box-shadow:
    0 0 0 5rem rgba(47, 174, 99, 0.025),
    0 0 0 10rem rgba(255, 255, 255, 0.018);
}

.site-footer__orb--two {
  bottom: 2rem;
  left: -15rem;
  width: 27rem;
  height: 27rem;
  background: radial-gradient(circle, rgba(47, 174, 99, 0.11), transparent 68%);
}

.footer-cta {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  padding: clamp(1.8rem, 3.8vw, 3rem);
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: radial-gradient(
      circle at 85% 5%,
      rgba(47, 174, 99, 0.46),
      transparent 15rem
    ),
    linear-gradient(110deg, #103958, #135645);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.16);
}

.footer-cta h2 {
  max-width: 18ch;
  margin-bottom: 0.65rem;
  color: var(--white);
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
}

.footer-cta p {
  max-width: 42rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
}

.footer-cta__actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-footer__main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.55fr 0.75fr 0.85fr 1.15fr;
  gap: 2.4rem;
  padding: 5rem 0 4rem;
}

.footer-brand-column__description {
  max-width: 22rem;
  margin: 1.35rem 0 1.5rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  line-height: 1.75;
}

.footer-brand__symbol {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border-radius: 0.85rem;
  background: linear-gradient(135deg, var(--green-500), var(--green-800));
  color: var(--white);
  font-size: 1.1rem;
}

.footer-brand__text strong {
  color: var(--white);
}

.footer-brand__text small {
  color: var(--green-500);
}

.footer-brand img {
  width: auto;
  max-width: 13.5rem;
  height: 3.2rem;
  padding: 0.2rem;
  border-radius: 0.5rem;
  background: var(--white);
  object-fit: contain;
  object-position: left center;
}

.footer-values {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.footer-values span {
  display: inline-flex;
  gap: 0.35rem;
  padding: 0.4rem 0.55rem;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.62rem;
  font-weight: 700;
}

.footer-values i {
  color: var(--green-500);
}

.footer-link-column h3,
.footer-contact-column h3 {
  margin-bottom: 1.25rem;
  color: var(--white);
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}

.footer-links {
  display: grid;
  gap: 0.72rem;
}

.footer-links a {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.75rem;
  font-weight: 600;
  transition:
    color var(--transition-fast),
    transform var(--transition-fast);
}

.footer-links a::before {
  margin-right: 0.45rem;
  color: var(--green-500);
  content: "→";
  opacity: 0;
  transition:
    opacity var(--transition-fast),
    margin var(--transition-fast);
}

.footer-links a:hover {
  transform: translateX(3px);
  color: var(--white);
}

.footer-links a:hover::before {
  margin-right: 0.3rem;
  opacity: 1;
}

.footer-contact-column > p {
  margin-bottom: 1.2rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.74rem;
  line-height: 1.65;
}

.footer-contact-card {
  display: flex;
  gap: 0.65rem;
  padding: 0.65rem 0;
  align-items: center;
}

.footer-contact-card + .footer-contact-card {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-card__icon {
  display: grid;
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 0.55rem;
  background: rgba(47, 174, 99, 0.18);
  color: var(--green-500);
  font-size: 0.75rem;
}

.footer-contact-card small,
.footer-contact-card strong {
  display: block;
  line-height: 1.35;
}

.footer-contact-card small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.61rem;
  font-weight: 700;
}

.footer-contact-card strong {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.footer-contact-card:hover strong {
  color: var(--green-500);
}

.footer-location {
  display: flex;
  gap: 0.55rem;
  margin-top: 1rem;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
}

.footer-location i {
  margin-top: 0.25rem;
  color: var(--green-500);
}

.footer-location em {
  display: block;
  margin-top: 0.08rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 600;
}

.footer-trust-strip {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
}

.footer-trust-strip__inner {
  display: flex;
  min-height: 4.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-trust-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.68rem;
  font-weight: 700;
}

.footer-trust-strip p:first-child i {
  margin-right: 0.35rem;
  color: var(--green-500);
}

.footer-trust-strip p:last-child {
  display: flex;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.53);
}

.footer-trust-strip p:last-child span + span::before {
  margin-right: 0.45rem;
  color: var(--green-500);
  content: "•";
}

.site-footer__bottom {
  position: relative;
  z-index: 1;
}

.site-footer__bottom-inner {
  display: flex;
  min-height: 4.6rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer__bottom p,
.site-footer__legal a {
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.66rem;
  font-weight: 600;
}

.site-footer__legal {
  display: flex;
  gap: 0.65rem;
  align-items: center;
}

.site-footer__legal a:hover {
  color: var(--green-500);
}

.site-footer__legal > span {
  width: 0.2rem;
  height: 0.2rem;
  border-radius: 50%;
  background: var(--green-500);
}

.scroll-top {
  position: fixed;
  z-index: 800;
  right: 1.25rem;
  bottom: 1.25rem;
  display: grid;
  width: 2.9rem;
  height: 2.9rem;
  place-items: center;
  border: 0;
  border-radius: 0.82rem;
  transform: translateY(1.2rem);
  background: var(--green-600);
  box-shadow: 0 10px 24px rgba(47, 174, 99, 0.3);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity var(--transition-base),
    transform var(--transition-base),
    background var(--transition-fast);
}

.scroll-top.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.scroll-top:hover {
  background: var(--navy-900);
}

/* --------------------------------------------------------------------------
   Utility helpers and visual motion
   -------------------------------------------------------------------------- */

.badge {
  display: inline-flex;
  gap: 0.35rem;
  padding: 0.38rem 0.65rem;
  align-items: center;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-800);
  font-size: 0.66rem;
  font-weight: 800;
}

.badge--navy {
  background: var(--navy-100);
  color: var(--navy-800);
}

.divider {
  width: 4rem;
  height: 3px;
  margin: 1.2rem 0;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--green-600), rgba(47, 174, 99, 0));
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.has-dot-pattern::before {
  position: absolute;
  z-index: 0;
  width: 10rem;
  height: 10rem;
  background-image: radial-gradient(
    rgba(47, 174, 99, 0.22) 1.2px,
    transparent 1.2px
  );
  background-size: 0.7rem 0.7rem;
  content: "";
  opacity: 0.6;
  pointer-events: none;
}

.floating-animation {
  animation: floating 4s ease-in-out infinite;
}

@keyframes floating {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse-soft {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(47, 174, 99, 0.28);
  }
  50% {
    box-shadow: 0 0 0 0.75rem rgba(47, 174, 99, 0);
  }
}

/* --------------------------------------------------------------------------
   Tablet adjustments
   -------------------------------------------------------------------------- */

@media (max-width: 1100px) {
  .primary-nav {
    gap: 0.7rem;
  }

  .primary-nav__link {
    padding-inline: 0.44rem;
    font-size: 0.73rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card {
    min-height: 20.5rem;
  }

  .industry-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .site-footer__main {
    grid-template-columns: 1.25fr 0.8fr 0.95fr;
  }

  .footer-brand-column {
    grid-column: 1 / -1;
  }

  .footer-brand-column__description {
    max-width: 38rem;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 5.8rem 0;
  }

  .section__head {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2.7rem;
  }

  .section__head h2 {
    max-width: 17ch;
  }

  .section__head p {
    margin-left: 0;
  }

  .site-header {
    padding: 0.75rem 0;
  }

  .site-header__inner {
    min-height: 5rem;
    padding: 0.48rem 0.55rem 0.48rem 1rem;
  }

  .primary-nav {
    position: fixed;
    z-index: 1001;
    top: 0;
    right: 0;
    display: flex;
    width: min(23rem, 88vw);
    height: 100dvh;
    padding: 1.3rem;
    transform: translateX(110%);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    background: #ffffff;
    box-shadow: -20px 0 55px rgba(4, 29, 53, 0.22);
    transition: transform 350ms cubic-bezier(0.2, 0.75, 0.2, 1);
  }

  .primary-nav.is-open {
    transform: translateX(0);
  }

  .primary-nav__mobile-head {
    display: flex;
    padding-bottom: 1rem;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    color: var(--navy-900);
    font-size: 0.8rem;
    font-weight: 800;
  }

  .primary-nav__close {
    display: grid;
    width: 2.2rem;
    height: 2.2rem;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 0.58rem;
    background: var(--navy-50);
    color: var(--navy-900);
  }

  .primary-nav__list {
    display: grid;
    gap: 0.15rem;
    margin: 1.3rem 0 auto;
  }

  .primary-nav__link {
    display: block;
    padding: 0.85rem 0.6rem;
    font-size: 0.86rem;
  }

  .primary-nav__link::after {
    right: auto;
    bottom: 0.45rem;
    left: 0.6rem;
    width: 1.7rem;
  }

  .primary-nav .button--nav {
    width: 100%;
    min-height: 3.25rem;
    margin-top: 1rem;
  }

  .menu-toggle {
    display: grid;
  }

  .hero-grid,
  .split-feature,
  .split-feature--reverse,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 3rem;
  }

  .hero-copy h1 {
    max-width: 15ch;
  }

  .hero-visual {
    min-height: 27rem;
    max-width: 38rem;
    width: 100%;
    margin: 0 auto;
  }

  .trust-bar__inner,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(3),
  .trust-item:nth-child(4),
  .stat-card:nth-child(3),
  .stat-card:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .trust-item:nth-child(3),
  .stat-card:nth-child(3) {
    border-left: 0;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .job-layout {
    grid-template-columns: 1fr;
  }

  .filter-panel {
    position: static;
  }
}

/* --------------------------------------------------------------------------
   Mobile adjustments
   -------------------------------------------------------------------------- */

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 2rem), var(--container));
  }

  .section {
    padding: 4.6rem 0;
  }

  .section__head h2 {
    max-width: 14ch;
    font-size: 2rem;
  }

  .section__head p {
    font-size: 0.9rem;
  }

  .brand__image {
    max-width: 13.25rem;
    height: 3.4rem;
  }

  .brand__mark {
    transform: scale(0.85);
    transform-origin: left center;
  }

  .brand__content strong {
    font-size: 1.07rem;
  }

  .brand__content small {
    font-size: 0.45rem;
  }

  .home-hero {
    min-height: auto;
    padding: 9.6rem 0 5rem;
  }

  .home-hero::before {
    top: 20rem;
    right: -20rem;
  }

  .hero-copy h1 {
    max-width: 12ch;
    font-size: clamp(2.55rem, 13vw, 3.35rem);
  }

  .hero-copy > p {
    font-size: 0.92rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 23rem;
  }

  .hero-visual__image-wrap {
    left: 0.8rem;
    border-width: 0.4rem;
    border-radius: 1.45rem;
  }

  .floating-card {
    padding: 0.65rem 0.7rem;
    border-radius: 0.8rem;
  }

  .floating-card--top {
    top: 1rem;
    left: -0.35rem;
  }

  .floating-card--bottom {
    right: -0.4rem;
    bottom: 1.2rem;
  }

  .floating-card__icon {
    width: 2rem;
    height: 2rem;
  }

  .floating-card__content strong {
    font-size: 0.7rem;
  }

  .trust-bar {
    margin-top: -1.5rem;
  }

  .trust-bar__inner,
  .stats-grid,
  .services-grid,
  .industry-grid,
  .process-grid,
  .two-column-grid,
  .three-column-grid,
  .four-column-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item + .trust-item,
  .stat-card,
  .stat-card + .stat-card {
    min-height: auto;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .trust-item:first-child,
  .stat-card:first-child {
    border-top: 0;
  }

  .trust-item {
    padding: 1rem 1.15rem;
  }

  .stat-card {
    padding: 1.65rem 1.35rem;
  }

  .service-card {
    min-height: 0;
    padding: 1.4rem;
  }

  .industry-card {
    min-height: 8.8rem;
  }

  .split-feature__visual {
    min-height: 23rem;
  }

  .split-feature__image,
  .split-feature__placeholder {
    width: calc(100% - 0.8rem);
    height: calc(100% - 0.8rem);
    margin-left: 0.8rem;
    border-radius: 1.25rem;
  }

  .split-feature__shape {
    top: -0.8rem;
    width: 72%;
  }

  .quote-card {
    padding: 1.6rem;
  }

  .quote-card::before {
    top: 0.8rem;
    right: 1rem;
    font-size: 5rem;
  }

  .page-hero {
    padding: 9.7rem 0 4.4rem;
  }

  .page-hero h1 {
    font-size: 2.6rem;
  }

  .page-hero p {
    font-size: 0.92rem;
  }

  .content-card {
    padding: 1.35rem;
  }

  .job-card {
    grid-template-columns: 3.25rem minmax(0, 1fr);
    padding: 1rem;
  }

  .job-card__icon {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 0.78rem;
    font-size: 1rem;
  }

  .job-card__badge {
    grid-column: 2;
    width: max-content;
  }

  .contact-layout__aside,
  .contact-layout__form {
    padding: 1.65rem;
  }

  .footer-cta {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    border-radius: 1.25rem;
  }

  .footer-cta h2 {
    font-size: 1.7rem;
  }

  .footer-cta__actions {
    display: grid;
    justify-content: stretch;
  }

  .footer-cta__actions .button {
    width: 100%;
  }

  .site-footer {
    padding-top: 3.7rem;
  }

  .site-footer__main {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3.8rem 0 3rem;
  }

  .footer-brand-column {
    grid-column: auto;
  }

  .footer-brand-column__description {
    margin-block: 1rem 1.25rem;
  }

  .footer-trust-strip__inner,
  .site-footer__bottom-inner,
  .site-footer__legal {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-trust-strip__inner {
    padding: 1rem 0;
  }

  .footer-trust-strip p:last-child {
    flex-wrap: wrap;
  }

  .site-footer__bottom-inner {
    padding: 1.2rem 0;
  }

  .site-footer__legal {
    gap: 0.25rem;
  }

  .site-footer__legal > span {
    display: none;
  }

  .flash-stack {
    top: 5.7rem;
  }

  .flash-message {
    width: 100%;
    font-size: 0.75rem;
  }

  .scroll-top {
    right: 0.8rem;
    bottom: 0.8rem;
    width: 2.65rem;
    height: 2.65rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* --------------------------------------------------------------------------
   About page — premium Why Choose PINACKLE experience
   -------------------------------------------------------------------------- */

.why-pinackle {
  isolation: isolate;
  overflow: hidden;
  background: radial-gradient(
      circle at 8% 20%,
      rgba(47, 174, 99, 0.26),
      transparent 20rem
    ),
    radial-gradient(
      circle at 96% 86%,
      rgba(55, 128, 195, 0.3),
      transparent 25rem
    ),
    linear-gradient(125deg, #061a30 0%, #0b2a4a 52%, #103f58 100%);
}

.why-pinackle::before,
.why-pinackle::after {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.why-pinackle::before {
  top: -17rem;
  right: -12rem;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    0 0 0 4rem rgba(47, 174, 99, 0.035),
    0 0 0 9rem rgba(255, 255, 255, 0.018);
}

.why-pinackle::after {
  bottom: -13rem;
  left: -11rem;
  width: 26rem;
  height: 26rem;
  border: 1px solid rgba(47, 174, 99, 0.2);
}

.why-pinackle .section__head h2 {
  max-width: 15ch;
}

.why-pinackle .three-column-grid {
  position: relative;
  gap: 1.05rem;
}

.why-pinackle .content-card {
  position: relative;
  min-height: 15.5rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.13),
    rgba(255, 255, 255, 0.055)
  );
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition:
    transform var(--transition-base),
    border-color var(--transition-base),
    background var(--transition-base),
    box-shadow var(--transition-base);
}

.why-pinackle .content-card::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 7rem;
  height: 7rem;
  transform: translate(42%, -42%);
  border-radius: 50%;
  background: rgba(47, 174, 99, 0.14);
  content: "";
  transition:
    transform 450ms ease,
    background 450ms ease;
}

.why-pinackle .content-card:hover {
  z-index: 1;
  transform: translateY(-8px);
  border-color: rgba(71, 199, 121, 0.72);
  background: linear-gradient(
    145deg,
    rgba(47, 174, 99, 0.23),
    rgba(255, 255, 255, 0.095)
  );
  box-shadow: 0 25px 46px rgba(0, 0, 0, 0.24);
}

.why-pinackle .content-card:hover::before {
  transform: translate(22%, -22%) scale(1.2);
  background: rgba(71, 199, 121, 0.21);
}

.why-pinackle .content-card .icon-badge {
  position: relative;
  z-index: 1;
  width: 3.7rem;
  height: 3.7rem;
  border: 1px solid rgba(71, 199, 121, 0.36);
  border-radius: 1.1rem;
  background: rgba(47, 174, 99, 0.17);
  color: #8de2aa;
  font-size: 1.25rem;
}

.why-pinackle .content-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 0.62rem;
  color: #ffffff;
  font-size: 1.12rem;
}

.why-pinackle .content-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.79rem;
  line-height: 1.72;
}

@media (max-width: 640px) {
  .why-pinackle .content-card {
    min-height: 0;
  }
}


/* --------------------------------------------------------------------------
   Public navigation refinement for the recruitment workflow
   -------------------------------------------------------------------------- */
.primary-nav__list {
  gap: 0.18rem;
}

.primary-nav__link {
  padding: 0.62rem 0.68rem;
  border-radius: 0.55rem;
  font-size: 0.76rem;
  letter-spacing: 0.01em;
}

.primary-nav__link::after {
  right: 0.68rem;
  bottom: 0.22rem;
  left: 0.68rem;
}

.primary-nav__link:hover,
.primary-nav__link.is-active {
  background: rgba(47, 174, 99, 0.08);
}

.primary-nav .button--nav {
  min-width: 7.8rem;
  padding-inline: 1.05rem;
  white-space: nowrap;
}

.primary-nav .button--nav i {
  font-size: 0.7rem;
}

@media (max-width: 1180px) and (min-width: 901px) {
  .site-header__inner {
    padding-left: 0.85rem;
  }

  .brand__image {
    max-width: 13.5rem;
    height: 3.55rem;
  }

  .primary-nav {
    gap: 0.45rem;
  }

  .primary-nav__list {
    gap: 0;
  }

  .primary-nav__link {
    padding-inline: 0.42rem;
    font-size: 0.69rem;
  }

  .primary-nav__link::after {
    right: 0.42rem;
    left: 0.42rem;
  }

  .primary-nav .button--nav {
    min-width: 6.8rem;
    padding-inline: 0.72rem;
    font-size: 0.7rem;
  }
}

@media (max-width: 900px) {
  .site-header {
    padding: 0.7rem 0;
  }

  .site-header__inner,
  .site-header.is-scrolled .site-header__inner {
    min-height: 4.7rem;
    padding: 0.45rem 0.65rem 0.45rem 0.85rem;
    border-radius: 0.85rem;
  }

  .brand__image {
    max-width: 12.5rem;
    height: 3.35rem;
  }

  .primary-nav {
    gap: 1.1rem;
  }

  .primary-nav__list {
    gap: 0.35rem;
  }

  .primary-nav__link {
    display: flex;
    min-height: 2.85rem;
    padding: 0.8rem 0.95rem;
    align-items: center;
    border-bottom: 1px solid rgba(11, 42, 74, 0.08);
    border-radius: 0.7rem;
    font-size: 0.9rem;
  }

  .primary-nav__link::after {
    right: auto;
    bottom: 0.48rem;
    left: 0.95rem;
    width: 2.1rem;
  }

  .primary-nav__link:hover,
  .primary-nav__link.is-active {
    background: rgba(47, 174, 99, 0.08);
  }

  .primary-nav .button--nav {
    width: 100%;
    min-height: 3rem;
    margin-top: 0.55rem;
    font-size: 0.82rem;
  }
}

@media (max-width: 420px) {
  .brand__image {
    max-width: 10.2rem;
    height: 3rem;
  }

  .menu-toggle {
    width: 2.65rem;
    height: 2.65rem;
  }
}


/* --------------------------------------------------------------------------
   Find Jobs board refinement
   -------------------------------------------------------------------------- */
.jobs-board-section {
  padding-top: 5.25rem;
}

.section-heading--split {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: end;
  justify-content: space-between;
}

.section-heading--split h2 {
  max-width: 40rem;
  margin-bottom: 0;
}

.section-heading--split > p {
  flex: 0 0 auto;
  margin: 0 0 0.35rem;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
}

.jobs-filter {
  display: grid;
  grid-template-columns: minmax(14rem, 1.55fr) minmax(10rem, 0.9fr) minmax(10rem, 0.9fr) auto;
  gap: 0.7rem;
  padding: 0.85rem;
  margin-bottom: 1.75rem;
  align-items: center;
  border: 1px solid rgba(11, 42, 74, 0.1);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 28px rgba(11, 42, 74, 0.08);
}

.jobs-filter__search {
  position: relative;
}

.jobs-filter__search i {
  position: absolute;
  top: 50%;
  left: 0.95rem;
  color: var(--green-700);
  transform: translateY(-50%);
}

.jobs-filter input,
.jobs-filter select {
  width: 100%;
  min-height: 3.05rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid #d8e2eb;
  border-radius: 0.7rem;
  outline: none;
  background: #fff;
  color: var(--ink);
  font-size: 0.8rem;
}

.jobs-filter__search input {
  padding-left: 2.65rem;
}

.jobs-filter input:focus,
.jobs-filter select:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(47, 174, 99, 0.13);
}

.jobs-filter .button {
  min-height: 3.05rem;
  white-space: nowrap;
}

.public-job-list {
  gap: 1.1rem;
}

.public-job-card {
  grid-template-columns: 4rem minmax(0, 1fr);
  gap: 0.9rem 1.2rem;
  align-items: start;
  padding: 1.45rem;
}

.public-job-card > .job-card__top {
  grid-row: span 3;
}

.public-job-card h3,
.public-job-card__summary,
.public-job-card__facts,
.public-job-card__footer {
  grid-column: 2;
}

.public-job-card h3 {
  margin-top: 0.1rem;
  font-size: clamp(1.12rem, 2vw, 1.4rem);
}

.job-card__top {
  display: flex;
  gap: 0.7rem;
  align-items: center;
}

.job-card__top > div {
  display: grid;
  gap: 0.32rem;
}

.job-card__code {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.public-job-card__summary {
  max-width: 62rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.7;
}

.public-job-card__facts {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.public-job-card__facts span {
  padding: 0.32rem 0.55rem;
  border-radius: 999px;
  background: var(--navy-50);
  color: var(--navy-800);
  font-size: 0.64rem;
  font-weight: 800;
}

.public-job-card__footer {
  display: flex;
  gap: 1rem;
  padding-top: 0.9rem;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
}

.public-job-card__salary {
  color: var(--navy-800);
  font-size: 0.73rem;
  font-weight: 800;
}

.job-card--featured {
  border-color: rgba(47, 174, 99, 0.34);
  box-shadow: 0 14px 32px rgba(47, 174, 99, 0.1);
}

.jobs-empty {
  display: grid;
  max-width: 54rem;
  min-height: 18rem;
  padding: 2.8rem 1.5rem;
  margin: 0 auto;
  place-items: center;
  align-content: center;
  text-align: center;
  border: 1px dashed rgba(11, 42, 74, 0.2);
  border-radius: 1.35rem;
  background: linear-gradient(145deg, #fbfdff, #f3faf6);
}

.jobs-empty__icon {
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1rem;
  place-items: center;
  border-radius: 1.05rem;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 1.25rem;
}

.jobs-empty h3 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.jobs-empty p {
  max-width: 34rem;
  margin-bottom: 1.3rem;
  color: var(--muted);
}

.split-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.72fr);
  gap: 2rem;
  padding: clamp(1.6rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.72);
}

.split-callout h2 {
  max-width: 40rem;
  margin: 0;
  color: #fff;
}

.split-callout p {
  margin: 0;
  align-self: end;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .jobs-filter {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jobs-filter__search,
  .jobs-filter .button {
    grid-column: span 2;
  }

  .split-callout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .jobs-board-section {
    padding-top: 3.4rem;
  }

  .section-heading--split {
    display: block;
  }

  .section-heading--split > p {
    margin-top: 0.7rem;
  }

  .jobs-filter {
    grid-template-columns: 1fr;
  }

  .jobs-filter__search,
  .jobs-filter .button {
    grid-column: auto;
  }

  .public-job-card {
    grid-template-columns: 1fr;
  }

  .public-job-card > .job-card__top,
  .public-job-card h3,
  .public-job-card__summary,
  .public-job-card__facts,
  .public-job-card__footer {
    grid-column: 1;
    grid-row: auto;
  }

  .public-job-card__footer {
    display: grid;
    gap: 0.7rem;
    justify-content: stretch;
  }

  .public-job-card__footer .text-link {
    justify-content: space-between;
  }
}


/* --------------------------------------------------------------------------
   Candidate profile and CV submission page
   -------------------------------------------------------------------------- */
.candidate-profile-page .page-hero__inner {
  max-width: 58rem;
}

.candidate-profile-page .contact-layout {
  align-items: stretch;
}

.candidate-profile-page .contact-layout__aside {
  background: linear-gradient(145deg, #0b2a4a 0%, #123e61 58%, #176246 100%);
}

.candidate-profile-page .contact-layout__form {
  background: rgba(255, 255, 255, 0.96);
}

.candidate-profile-page .contact-layout__form > h2 {
  margin-bottom: 0.45rem;
}

.candidate-profile-page .contact-layout__form > p {
  margin-bottom: 1.6rem;
  color: var(--muted);
}

.candidate-profile-page .form-field input[type="file"] {
  min-height: 3.5rem;
  padding: 0.85rem;
  border: 1.5px dashed rgba(47, 174, 99, 0.5);
  background: #f7fcf9;
  cursor: pointer;
}

.candidate-profile-page .form-field input[type="file"]::file-selector-button {
  margin-right: 0.7rem;
  padding: 0.55rem 0.8rem;
  border: 0;
  border-radius: 0.5rem;
  background: var(--navy-800);
  color: #fff;
  font: inherit;
  font-size: 0.7rem;
  font-weight: 800;
  cursor: pointer;
}

.candidate-profile-page .form-field input[type="file"]:focus {
  border-style: solid;
  border-color: var(--green-600);
  outline: none;
  box-shadow: 0 0 0 3px rgba(47, 174, 99, 0.13);
}

.candidate-profile-page .form-field small {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.7rem;
}

.candidate-profile-page .checkbox-field {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin: 1.25rem 0 1.35rem;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.55;
  cursor: pointer;
}

.candidate-profile-page .checkbox-field input {
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
  margin-top: 0.15rem;
  accent-color: var(--green-600);
}

.candidate-profile-page .contact-layout__form > form > .button {
  width: 100%;
  justify-content: center;
}

.candidate-profile-page .contact-intro__points {
  display: grid;
  gap: 0.8rem;
  margin-top: 2rem;
}

.candidate-profile-page .contact-intro__points > span {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
}

.candidate-profile-page .contact-intro__points i {
  display: grid;
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 0.55rem;
  background: rgba(47, 174, 99, 0.2);
  color: #8de0ad;
}

@media (max-width: 720px) {
  .candidate-profile-page .form-row {
    grid-template-columns: 1fr;
  }

  .candidate-profile-page .contact-layout__aside,
  .candidate-profile-page .contact-layout__form {
    padding: 1.35rem;
  }

  .candidate-profile-page .form-field input[type="file"] {
    min-height: 4.3rem;
  }
}


/* Candidate profile layout alignment fix */
.candidate-profile-page .candidate-profile-layout {
  display: grid;
  grid-template-columns: minmax(17rem, 0.8fr) minmax(0, 1.2fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(11, 42, 74, 0.1);
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: 0 22px 55px rgba(11, 42, 74, 0.12);
}

.candidate-profile-page .candidate-profile__aside {
  min-height: 100%;
  padding: clamp(1.6rem, 4vw, 3.2rem);
  border-radius: 0;
}

.candidate-profile-page .candidate-profile__form {
  min-width: 0;
  padding: clamp(1.6rem, 4vw, 3.2rem);
  border-radius: 0;
}

.candidate-profile-page .candidate-profile__aside .contact-intro {
  max-width: 30rem;
}

.candidate-profile-page .candidate-profile__aside h2 {
  color: #fff;
}

.candidate-profile-page .candidate-profile__aside p {
  color: rgba(255, 255, 255, 0.74);
}

.candidate-profile-page .candidate-profile__form form {
  width: 100%;
}

@media (max-width: 820px) {
  .candidate-profile-page .candidate-profile-layout {
    grid-template-columns: 1fr;
  }

  .candidate-profile-page .candidate-profile__aside,
  .candidate-profile-page .candidate-profile__form {
    border-radius: 0;
  }
}


/* --------------------------------------------------------------------------
   Candidate application status portal
   -------------------------------------------------------------------------- */
.candidate-status-page .page-hero__inner {
  max-width: 58rem;
}

.candidate-status-section {
  padding-top: 3.6rem;
  padding-bottom: 6rem;
}

.status-portal {
  max-width: 58rem;
  padding: clamp(1.35rem, 4vw, 3rem);
  margin: 0 auto;
  border: 1px solid rgba(11, 42, 74, 0.1);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 55px rgba(11, 42, 74, 0.12);
}

.status-portal__intro {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding-bottom: 1.7rem;
  margin-bottom: 1.7rem;
  border-bottom: 1px solid var(--line);
}

.status-portal__intro h2,
.status-portal__header h2 {
  margin-bottom: 0.45rem;
  color: var(--navy-900);
}

.status-portal__intro p,
.status-portal__header p {
  max-width: 42rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.icon-badge {
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(47, 174, 99, 0.2);
  border-radius: 1rem;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 1.3rem;
}

.status-form {
  display: grid;
  gap: 1rem;
}

.status-form .form-field {
  display: grid;
  gap: 0.45rem;
}

.status-form .form-field label {
  color: var(--navy-800);
  font-size: 0.76rem;
  font-weight: 800;
}

.status-form .form-field input {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.85rem 1rem;
  border: 1px solid #d8e2eb;
  border-radius: 0.75rem;
  background: #fff;
  color: var(--navy-900);
  font: inherit;
  outline: none;
}

.status-form .form-field input:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 4px rgba(47, 174, 99, 0.12);
}

.status-form .form-field small {
  color: var(--muted);
  font-size: 0.7rem;
}

.status-form > .button {
  width: 100%;
  min-height: 3.35rem;
  justify-content: center;
  margin-top: 0.35rem;
}

.status-privacy,
.status-resend-form,
.status-logout-form {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.status-privacy i {
  margin-right: 0.25rem;
  color: var(--green-700);
}

.status-resend-form,
.status-logout-form {
  text-align: center;
}

.status-reference {
  display: inline-flex;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(47, 174, 99, 0.25);
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-800);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.status-portal__header {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.status-portal__notice {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  padding: 0.85rem 1rem;
  margin: 1.25rem 0 1.8rem;
  border: 1px solid rgba(47, 174, 99, 0.2);
  border-radius: 0.75rem;
  background: #f4fbf6;
  color: var(--green-800);
  font-size: 0.75rem;
  line-height: 1.5;
}

.status-portal__notice i {
  margin-top: 0.15rem;
}

.status-timeline {
  position: relative;
  display: grid;
  gap: 1.45rem;
  padding: 0.5rem 0 0.5rem 0.25rem;
}

.status-timeline__line {
  position: absolute;
  top: 1.55rem;
  bottom: 1.55rem;
  left: 1.05rem;
  width: 2px;
  background: linear-gradient(var(--green-600), var(--navy-100));
}

.status-event {
  position: relative;
  display: grid;
  grid-template-columns: 2.15rem minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
}

.status-event__dot {
  position: relative;
  z-index: 1;
  display: grid;
  width: 1.7rem;
  height: 1.7rem;
  place-items: center;
  border: 4px solid #fff;
  border-radius: 50%;
  background: #d7e4ed;
  color: #fff;
  font-size: 0.55rem;
  box-shadow: 0 0 0 1px #cbd9e4;
}

.status-event.is-complete .status-event__dot,
.status-event.is-current .status-event__dot {
  background: var(--green-600);
  box-shadow: 0 0 0 1px rgba(47, 174, 99, 0.35);
}

.status-event strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--navy-900);
  font-size: 0.86rem;
}

.status-event small {
  color: var(--muted);
  font-size: 0.68rem;
}

.status-event p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .candidate-status-section {
    padding-top: 2.4rem;
  }

  .status-portal__intro,
  .status-portal__header {
    display: block;
  }

  .status-portal__intro .icon-badge {
    margin-bottom: 1rem;
  }

  .status-reference {
    margin-top: 1rem;
  }
}


/* ========================================================================== 
   Animated candidate activity hero
   Anonymous visual activity only; no personal candidate data is rendered.
   ========================================================================== */
.candidate-flow-visual{position:relative;min-height:34rem;overflow:hidden;border-radius:2rem;background:radial-gradient(circle at 50% 42%,rgba(47,174,99,.18),transparent 22%),linear-gradient(145deg,#f6fbf9 0%,#eaf5f1 44%,#dceee8 100%);box-shadow:0 1.5rem 3.5rem rgba(11,42,74,.13);isolation:isolate}.candidate-flow-visual__glow{position:absolute;width:18rem;height:18rem;left:50%;top:42%;transform:translate(-50%,-50%);border-radius:50%;background:rgba(47,174,99,.2);filter:blur(1rem);z-index:-1}.candidate-flow-visual__ring{position:absolute;border:1px dashed rgba(11,42,74,.2);border-radius:50%;left:50%;top:43%;transform:translate(-50%,-50%);animation:candidateRingSpin 22s linear infinite}.candidate-flow-visual__ring--one{width:22rem;height:22rem}.candidate-flow-visual__ring--two{width:28rem;height:28rem;border-color:rgba(47,174,99,.3);animation-direction:reverse;animation-duration:28s}.candidate-flow-visual__core{position:absolute;left:50%;top:43%;width:11.5rem;height:11.5rem;transform:translate(-50%,-50%);border:.55rem solid rgba(255,255,255,.92);border-radius:50%;background:#fff;box-shadow:0 1rem 2.5rem rgba(11,42,74,.2);z-index:3;animation:candidateCoreFloat 5s ease-in-out infinite}.candidate-flow-visual__core img{display:block;width:100%;height:100%;object-fit:cover;border-radius:50%}.candidate-avatar-image{opacity:1;transition:opacity 520ms ease-in-out}.candidate-avatar-image.is-changing{opacity:0}.candidate-flow-visual__core-icon{display:grid;place-items:center;width:100%;height:100%;font-size:4rem;color:#0b2a4a}.candidate-flow-visual__core-badge{position:absolute;right:-.4rem;bottom:.5rem;display:grid;place-items:center;width:2.5rem;height:2.5rem;border:.25rem solid #fff;border-radius:50%;background:#2fae63;color:#fff}.candidate-flow-card{position:absolute;display:flex;align-items:center;gap:.7rem;min-width:12.5rem;padding:.75rem .95rem;border:1px solid rgba(255,255,255,.8);border-radius:1rem;background:rgba(255,255,255,.88);box-shadow:0 .8rem 2rem rgba(11,42,74,.13);backdrop-filter:blur(1rem);z-index:4;animation:candidateCardFloat 4.8s ease-in-out infinite}.candidate-flow-card img{width:2.8rem;height:2.8rem;flex:0 0 2.8rem;object-fit:cover;border-radius:50%;border:2px solid #d8eee4}.candidate-flow-card span{display:flex;flex-direction:column;gap:.12rem}.candidate-activity-copy{opacity:1;transition:opacity 520ms ease-in-out}.candidate-activity-copy.is-changing{opacity:0}.candidate-flow-card small{color:#2fae63;font-size:.55rem;font-weight:800;letter-spacing:.06em;text-transform:uppercase}.candidate-flow-card strong{color:#0b2a4a;font-size:.72rem}.candidate-flow-card em{color:#718094;font-size:.58rem;font-style:normal}.candidate-flow-card--top{top:10%;left:50%;transform:translateX(-50%);animation-delay:-1.1s}.candidate-flow-card--left{left:5%;top:45%;animation-delay:-2.3s}.candidate-flow-card--right{right:5%;top:55%;animation-delay:-3.4s}.candidate-flow-status{position:absolute;left:50%;bottom:5rem;display:flex;align-items:center;gap:.7rem;width:max-content;max-width:88%;padding:.7rem 1rem;transform:translateX(-50%);border:1px solid rgba(255,255,255,.85);border-radius:999px;background:rgba(11,42,74,.92);box-shadow:0 .6rem 1.5rem rgba(11,42,74,.2);color:#fff;z-index:5}.candidate-flow-status__dot{width:.55rem;height:.55rem;border-radius:50%;background:#63db90;box-shadow:0 0 0 .3rem rgba(99,219,144,.15);animation:statusPulse 1.8s ease-in-out infinite}.candidate-flow-status span:last-child{display:flex;flex-direction:column;gap:.1rem}.candidate-flow-status small{color:#9de8b9;font-size:.55rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase}.candidate-flow-status strong{font-size:.68rem;font-weight:700}.candidate-flow-steps{position:absolute;left:50%;bottom:1.3rem;display:flex;align-items:center;gap:.55rem;transform:translateX(-50%);white-space:nowrap;color:#567087;font-size:.58rem;font-weight:800}.candidate-flow-steps span{display:flex;align-items:center;gap:.28rem}.candidate-flow-steps b{display:grid;place-items:center;width:1.4rem;height:1.4rem;border-radius:50%;background:#d8ebe3;color:#0b2a4a;font-size:.5rem}.candidate-flow-steps .is-active{color:#0b2a4a}.candidate-flow-steps .is-active b{background:#2fae63;color:#fff;animation:processStepPulse 1.8s ease-in-out infinite}.candidate-flow-steps i{display:block;width:1.5rem;height:1px;background:rgba(11,42,74,.2)}
@keyframes processStepPulse{0%,100%{transform:scale(1);box-shadow:0 0 0 0 rgba(47,174,99,0)}50%{transform:scale(1.1);box-shadow:0 0 0 .35rem rgba(47,174,99,.18)}}@keyframes candidateRingSpin{to{transform:translate(-50%,-50%) rotate(360deg)}}@keyframes candidateCoreFloat{0%,100%{margin-top:0}50%{margin-top:-.45rem}}@keyframes candidateCardFloat{0%,100%{margin-top:0}50%{margin-top:-.55rem}}@keyframes statusPulse{0%,100%{opacity:1}50%{opacity:.45}}
@media(max-width:900px){.candidate-flow-visual{min-height:29rem}.candidate-flow-visual__ring--one{width:18rem;height:18rem}.candidate-flow-visual__ring--two{width:23rem;height:23rem}.candidate-flow-visual__core{width:9rem;height:9rem}.candidate-flow-card{min-width:10.5rem;padding:.6rem}.candidate-flow-card--left{left:2%;top:48%}.candidate-flow-card--right{right:2%;top:58%}.candidate-flow-status{bottom:4.8rem}.candidate-flow-steps{bottom:1rem}}@media(max-width:560px){.candidate-flow-visual{min-height:27rem;border-radius:1.35rem}.candidate-flow-visual__ring--one{width:15rem;height:15rem}.candidate-flow-visual__ring--two{width:20rem;height:20rem}.candidate-flow-visual__core{top:40%;width:7.5rem;height:7.5rem;border-width:.35rem}.candidate-flow-visual__core-badge{width:1.8rem;height:1.8rem;font-size:.65rem}.candidate-flow-card{min-width:9.2rem;gap:.45rem;padding:.5rem;border-radius:.75rem}.candidate-flow-card img{width:2rem;height:2rem;flex-basis:2rem}.candidate-flow-card strong{font-size:.58rem}.candidate-flow-card small,.candidate-flow-card em{font-size:.45rem}.candidate-flow-card--top{top:5%}.candidate-flow-card--left{left:1%;top:48%}.candidate-flow-card--right{right:1%;top:60%}.candidate-flow-status{bottom:4.2rem;padding:.55rem .7rem}.candidate-flow-status strong{font-size:.55rem}.candidate-flow-steps{gap:.25rem;font-size:.47rem}.candidate-flow-steps i{width:.6rem}.candidate-flow-steps b{width:1.15rem;height:1.15rem;font-size:.4rem}}
@media(prefers-reduced-motion:reduce){.candidate-flow-visual *{animation:none!important}}

.candidate-flow-card.is-highlighted{border-color:rgba(47,174,99,.75);box-shadow:0 1rem 2.4rem rgba(47,174,99,.2),0 0 0 3px rgba(47,174,99,.1)}


/* --------------------------------------------------------------------------
   Public jobs and application usability polish
   -------------------------------------------------------------------------- */
.jobs-page .page-hero__inner,
.apply-page .page-hero__inner {
  max-width: 68rem;
}

.jobs-page .page-hero h1,
.apply-page .page-hero h1 {
  max-width: 18ch;
}

.jobs-page .jobs-board-section {
  padding-top: clamp(3rem, 5vw, 5.25rem);
}

.jobs-page .section-heading--split {
  align-items: end;
  margin-bottom: 1.5rem;
}

.jobs-page .section-heading--split > p {
  margin: 0 0 .15rem;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
}

.jobs-page .jobs-filter {
  align-items: stretch;
  padding: .75rem;
  margin-bottom: 1.35rem;
  border: 1px solid rgba(11, 42, 74, .1);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 14px 32px rgba(11, 42, 74, .08);
}

.jobs-page .public-job-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem 1.35rem;
  padding: clamp(1.15rem, 2.2vw, 1.65rem);
  border-radius: 1.25rem;
  background: linear-gradient(145deg, #fff 0%, #fbfefd 100%);
}

.jobs-page .public-job-card > .job-card__top {
  display: flex;
  grid-column: 1 / -1;
  grid-row: auto;
  gap: .85rem;
  align-items: center;
  min-width: 0;
}

.jobs-page .public-job-card .job-card__icon {
  width: 3.35rem;
  height: 3.35rem;
  flex: 0 0 3.35rem;
  border: 1px solid rgba(47, 174, 99, .18);
  border-radius: .95rem;
  background: linear-gradient(145deg, #eaf8ef, #edf4fb);
  color: var(--navy-800);
}

.jobs-page .public-job-card .job-card__top > div {
  min-width: 0;
}

.jobs-page .public-job-card .job-card__badge {
  margin-bottom: .18rem;
}

.jobs-page .public-job-card h3,
.jobs-page .public-job-card__summary,
.jobs-page .public-job-card__facts,
.jobs-page .public-job-card__footer,
.jobs-page .public-job-card .job-card__meta {
  grid-column: 1 / -1;
}

.jobs-page .public-job-card h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.2;
}

.jobs-page .public-job-card .job-card__meta {
  display: flex;
  gap: .55rem .95rem;
  padding: .7rem .85rem;
  border: 1px solid rgba(11, 42, 74, .08);
  border-radius: .8rem;
  background: #f7fafc;
  font-size: .72rem;
}

.jobs-page .public-job-card .job-card__meta span {
  min-width: 0;
}

.jobs-page .public-job-card__summary {
  max-width: 70rem;
  font-size: .86rem;
  line-height: 1.65;
}

.jobs-page .public-job-card__facts {
  gap: .5rem;
}

.jobs-page .public-job-card__facts span {
  border: 1px solid rgba(11, 42, 74, .08);
  background: #f1f6fa;
  font-size: .68rem;
}

.jobs-page .public-job-card__footer {
  padding-top: 1rem;
  margin-top: .1rem;
}

.jobs-page .public-job-card__salary {
  font-size: .82rem;
}

.jobs-page .public-job-card__footer .text-link {
  min-height: 2.6rem;
  padding: .65rem .9rem;
  border-radius: .7rem;
  background: var(--navy-900);
  color: #fff;
  font-weight: 800;
}

.jobs-page .public-job-card__footer .text-link:hover {
  background: var(--green-700);
  color: #fff;
}

/* The apply page uses its own two-column classes, so it needs dedicated rules. */
.apply-page .apply-section {
  padding-top: clamp(2.5rem, 5vw, 4.75rem);
  padding-bottom: clamp(4rem, 7vw, 7rem);
  background: linear-gradient(180deg, #f7fbfd 0%, #fff 45%);
}

.apply-page .apply-layout {
  display: grid;
  grid-template-columns: minmax(18rem, .72fr) minmax(0, 1.28fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(11, 42, 74, .1);
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: 0 24px 65px rgba(11, 42, 74, .13);
}

.apply-page .apply-summary {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(1.5rem, 4vw, 3.1rem);
  background: linear-gradient(150deg, #0b2a4a 0%, #123f60 57%, #176246 100%);
  color: rgba(255, 255, 255, .75);
}

.apply-page .apply-summary h2 {
  margin: .8rem 0 .45rem;
  color: #fff;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.15;
}

.apply-page .apply-summary__code {
  display: inline-flex;
  width: max-content;
  padding: .35rem .6rem;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  color: #b9f0ca;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.apply-page .apply-summary__meta {
  display: grid;
  gap: .7rem;
  padding: 1.25rem 0;
  margin: 1.35rem 0;
  border-top: 1px solid rgba(255, 255, 255, .16);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.apply-page .apply-summary__meta span {
  display: flex;
  gap: .65rem;
  align-items: center;
  color: rgba(255, 255, 255, .82);
  font-size: .78rem;
  font-weight: 700;
}

.apply-page .apply-summary__meta i {
  width: 1.15rem;
  color: #8de0ad;
  text-align: center;
}

.apply-page .apply-summary p {
  margin: 0;
  color: rgba(255, 255, 255, .7);
  font-size: .83rem;
  line-height: 1.75;
}

.apply-page .apply-summary .text-link {
  margin-top: auto;
  padding-top: 2rem;
  color: #fff;
}

.apply-page .apply-form-panel {
  min-width: 0;
  padding: clamp(1.5rem, 4vw, 3.1rem);
  background: rgba(255, 255, 255, .98);
}

.apply-page .apply-form-panel > h2 {
  margin: .55rem 0 .4rem;
  color: var(--navy-900);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.apply-page .apply-form-panel > p {
  max-width: 42rem;
  margin: 0 0 1.75rem;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.7;
}

.apply-page .apply-form-panel form {
  display: grid;
  gap: 1.05rem;
}

.apply-page .apply-form-panel .form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.apply-page .apply-form-panel .form-field {
  display: grid;
  gap: .42rem;
  min-width: 0;
}

.apply-page .apply-form-panel .form-field label {
  color: var(--navy-800);
  font-size: .72rem;
  font-weight: 800;
}

.apply-page .apply-form-panel input,
.apply-page .apply-form-panel textarea,
.apply-page .apply-form-panel select {
  width: 100%;
  min-height: 3rem;
  padding: .78rem .9rem;
  border: 1px solid #d6e1e9;
  border-radius: .7rem;
  background: #fbfdfe;
  color: var(--ink);
  font: inherit;
  font-size: .82rem;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.apply-page .apply-form-panel textarea {
  min-height: 7.5rem;
  resize: vertical;
}

.apply-page .apply-form-panel input:focus,
.apply-page .apply-form-panel textarea:focus,
.apply-page .apply-form-panel select:focus {
  border-color: var(--green-600);
  outline: none;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(47, 174, 99, .13);
}

.apply-page .apply-upload-field {
  padding: 1rem;
  border: 1px dashed rgba(47, 174, 99, .55);
  border-radius: .85rem;
  background: #f5fbf7;
}

.apply-page .apply-upload-field input[type="file"] {
  min-height: 3.5rem;
  padding: .7rem;
  border: 0;
  background: #fff;
}

.apply-page .apply-upload-field input[type="file"]::file-selector-button {
  margin-right: .65rem;
  padding: .55rem .75rem;
  border: 0;
  border-radius: .5rem;
  background: var(--navy-800);
  color: #fff;
  font: inherit;
  font-size: .7rem;
  font-weight: 800;
  cursor: pointer;
}

.apply-page .apply-upload-field small {
  color: var(--muted);
  font-size: .7rem;
}

.apply-page .consent-check {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  padding: .95rem 1rem;
  border: 1px solid rgba(11, 42, 74, .09);
  border-radius: .75rem;
  background: #f8fafc;
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.55;
  cursor: pointer;
}

.apply-page .consent-check input {
  width: 1rem;
  min-height: 1rem;
  flex: 0 0 auto;
  margin-top: .12rem;
  accent-color: var(--green-600);
}

.apply-page .apply-form-panel form > .button {
  width: 100%;
  min-height: 3.25rem;
  justify-content: center;
  margin-top: .2rem;
}

@media (max-width: 820px) {
  .apply-page .apply-layout {
    grid-template-columns: 1fr;
  }

  .apply-page .apply-summary .text-link {
    margin-top: 1.5rem;
  }
}

@media (max-width: 640px) {
  .jobs-page .public-job-card {
    grid-template-columns: 1fr;
    gap: .85rem;
  }

  .jobs-page .public-job-card > .job-card__top,
  .jobs-page .public-job-card h3,
  .jobs-page .public-job-card .job-card__meta,
  .jobs-page .public-job-card__summary,
  .jobs-page .public-job-card__facts,
  .jobs-page .public-job-card__footer {
    grid-column: 1;
  }

  .jobs-page .public-job-card__footer {
    display: grid;
    gap: .8rem;
  }

  .jobs-page .public-job-card__footer .text-link {
    justify-content: space-between;
  }

  .apply-page .apply-form-panel .form-row {
    grid-template-columns: 1fr;
    gap: 1.05rem;
  }

  .apply-page .apply-summary,
  .apply-page .apply-form-panel {
    padding: 1.35rem;
  }
}

.job-card__visual{overflow:hidden;padding:0!important}.job-card__visual img{width:100%;height:100%;object-fit:cover;display:block}.job-card__visual:has(img){background:#fff}

/* Home page published jobs carousel */
.home-jobs-section { overflow: hidden; }
.home-jobs-section__head { align-items: end; }
.home-jobs-section__head > div { max-width: 44rem; }
.home-jobs-section__head p { margin-top: .75rem; max-width: 42rem; }
.home-jobs-carousel { position: relative; padding: 1rem 3.5rem 3.25rem; }
.home-jobs-carousel__viewport { overflow: hidden; border-radius: 1.5rem; }
.home-jobs-carousel__track { display: flex; gap: 1.25rem; transition: transform 560ms cubic-bezier(.22,.61,.36,1); will-change: transform; }
.home-job-card { flex: 0 0 calc((100% - 2.5rem) / 3); min-height: 24rem; padding: 1.5rem; border: 1px solid rgba(11,42,74,.12); border-radius: 1.25rem; background: rgba(255,255,255,.96); box-shadow: 0 1.25rem 3rem rgba(11,42,74,.09); display: flex; flex-direction: column; }
.home-job-card.is-featured { border-color: rgba(47,174,99,.3); box-shadow: 0 1.5rem 3.5rem rgba(47,174,99,.12); }
.home-job-card__top { display: flex; align-items: center; gap: .9rem; min-height: 4.75rem; }
.home-job-card__icon { width: 4rem; height: 4rem; flex: 0 0 4rem; display: grid; place-items: center; border-radius: 50%; background: #eaf7ef; color: #0b2a4a; font-size: 1.55rem; }
.home-job-card__badge { display: block; width: fit-content; margin-bottom: .45rem; padding: .3rem .6rem; border-radius: 999px; background: #effaf3; color: #21834a; font-size: .7rem; font-weight: 800; letter-spacing: .02em; }
.home-job-card__code { display: block; color: #667085; font-size: .72rem; font-weight: 700; letter-spacing: .08em; }
.home-job-card h3 { min-height: 4.4rem; margin: 1.35rem 0 1rem; color: #0b2a4a; font-size: clamp(1.25rem, 1.8vw, 1.65rem); line-height: 1.16; }
.home-job-card__facts { display: grid; gap: .65rem; padding: 1rem 0; border-top: 1px solid rgba(11,42,74,.1); border-bottom: 1px solid rgba(11,42,74,.1); color: #526173; font-size: .9rem; }
.home-job-card__facts span { display: flex; align-items: center; gap: .55rem; }
.home-job-card__facts i { width: 1rem; color: #2fae63; text-align: center; }
.home-job-card__footer { display: flex; align-items: end; justify-content: space-between; gap: 1rem; margin-top: auto; padding-top: 1.15rem; }
.home-job-card__footer strong { color: #0b2a4a; font-size: 1rem; line-height: 1.35; }
.home-job-card__footer a { display: inline-flex; align-items: center; gap: .5rem; padding: .7rem .9rem; border-radius: .7rem; background: #0b2a4a; color: #fff; font-size: .78rem; font-weight: 800; white-space: nowrap; }
.home-job-card__footer a i { color: #2fae63; }
.home-jobs-carousel__arrow { position: absolute; top: 47%; z-index: 2; width: 2.75rem; height: 2.75rem; display: grid; place-items: center; border: 1px solid rgba(11,42,74,.14); border-radius: 50%; background: #fff; color: #0b2a4a; box-shadow: 0 .5rem 1.25rem rgba(11,42,74,.12); transform: translateY(-50%); cursor: pointer; transition: transform .2s ease, background .2s ease, color .2s ease; }
.home-jobs-carousel__arrow:hover { background: #0b2a4a; color: #fff; transform: translateY(-50%) scale(1.05); }
.home-jobs-carousel__arrow--prev { left: 0; }
.home-jobs-carousel__arrow--next { right: 0; }
.home-jobs-carousel__dots { position: absolute; bottom: .7rem; left: 50%; display: flex; gap: .45rem; transform: translateX(-50%); }
.home-jobs-carousel__dots button { width: .55rem; height: .55rem; padding: 0; border: 0; border-radius: 50%; background: #c8d2dc; cursor: pointer; }
.home-jobs-carousel__dots button.is-active { width: 1.35rem; border-radius: 999px; background: #2fae63; }
@media (max-width: 980px) { .home-job-card { flex-basis: calc((100% - 1.25rem) / 2); } }
@media (max-width: 640px) { .home-jobs-section__head { align-items: start; } .home-jobs-section__head > a { margin-top: 1rem; } .home-jobs-carousel { padding-right: 2.25rem; padding-left: 2.25rem; } .home-job-card { flex-basis: 100%; min-height: 22rem; } .home-jobs-carousel__arrow { width: 2.35rem; height: 2.35rem; } .home-job-card__footer { align-items: stretch; flex-direction: column; } .home-job-card__footer a { justify-content: center; } }
@media (prefers-reduced-motion: reduce) { .home-jobs-carousel__track { transition: none; } }

/* Compact animated home jobs strip */
.home-jobs-section { padding: 4rem 0 4.5rem; }
.home-jobs-section__head { margin-bottom: 1.5rem; }
.home-jobs-section__head p { margin-top: .45rem; }
.home-jobs-carousel { padding: .5rem 2.75rem 2.25rem; }
.home-jobs-carousel__track { transition: transform 700ms cubic-bezier(.16,1,.3,1); }
.home-job-card { min-height: 19rem; padding: 1.15rem; }
.home-job-card__top { min-height: 3.75rem; gap: .7rem; }
.home-job-card__icon { width: 3.25rem; height: 3.25rem; flex-basis: 3.25rem; font-size: 1.25rem; }
.home-job-card h3 { min-height: 3.25rem; margin: .9rem 0 .75rem; font-size: clamp(1.1rem, 1.6vw, 1.45rem); }
.home-job-card__facts { gap: .4rem; padding: .7rem 0; font-size: .82rem; }
.home-job-card__footer { padding-top: .8rem; }
.home-job-card__footer strong { font-size: .88rem; }
.home-job-card__footer a { padding: .58rem .75rem; font-size: .72rem; }
.home-job-card:hover { transform: translateY(-4px); box-shadow: 0 1.5rem 3rem rgba(11,42,74,.14); transition: transform .25s ease, box-shadow .25s ease; }
@media (max-width: 640px) { .home-jobs-section { padding: 3rem 0 3.5rem; } .home-jobs-carousel { padding-right: 2rem; padding-left: 2rem; } .home-job-card { min-height: 18rem; } }

.home-jobs-section__head { display: flex; grid-template-columns: none; justify-content: space-between; gap: 1.5rem; }
.home-jobs-section__head > a { flex: 0 0 auto; align-self: end; }
.home-jobs-carousel.is-single { padding-right: 0; padding-left: 0; }
.home-jobs-carousel.is-single .home-jobs-carousel__viewport { width: min(100%, 48rem); margin-inline: auto; }
.home-jobs-carousel.is-single .home-jobs-carousel__track { justify-content: center; }
.home-jobs-carousel.is-single .home-job-card { flex: 0 1 42rem; min-height: 21rem; }
.home-jobs-carousel.is-single .home-jobs-carousel__arrow,
.home-jobs-carousel.is-single .home-jobs-carousel__dots { display: none; }
@media (max-width: 640px) { .home-jobs-section__head { display: block; } .home-jobs-section__head > a { margin-top: 1rem; } .home-jobs-carousel.is-single { padding-right: 0; padding-left: 0; } .home-jobs-carousel.is-single .home-job-card { min-height: 19rem; } }

/* Tighten the gap below the home jobs area */
.home-jobs-section { padding-top: 2.75rem; padding-bottom: 1.75rem; }
.home-jobs-carousel { padding-bottom: 1rem; }
.home-jobs-carousel.is-single { padding-bottom: .25rem; }
@media (max-width: 640px) { .home-jobs-section { padding-top: 2.25rem; padding-bottom: 1.25rem; } .home-jobs-carousel { padding-bottom: .75rem; } .home-jobs-carousel.is-single { padding-bottom: 0; } }

/* The following global .section normally adds 7.5rem top padding. Keep the next Home section close to the jobs carousel. */
.home-jobs-section + .section { padding-top: 2.5rem; }
@media (max-width: 640px) { .home-jobs-section + .section { padding-top: 2rem; } }

/* Dark glassmorphism PINACKLE Promise section */
.promise-section { overflow: hidden; background: #061a30; }
.promise-section .container { position: relative; z-index: 1; }
.promise-card { position: relative; overflow: visible; padding: clamp(2rem, 5vw, 4rem); border: 1px solid rgba(190, 236, 255, .28); border-radius: 1.75rem; background: linear-gradient(135deg, rgba(31, 67, 95, .74), rgba(6, 31, 56, .82)); box-shadow: 0 2rem 5rem rgba(0, 0, 0, .26), inset 0 1px 0 rgba(255,255,255,.14); backdrop-filter: blur(18px); }
.promise-card::before { content: ""; position: absolute; inset: 0; z-index: 0; border: 1px solid rgba(126, 233, 174, .18); border-radius: 1.75rem; pointer-events: none; }
.promise-card .quote-card__avatar { display: grid; place-items: center; overflow: visible; }
.promise-card .quote-card__avatar img { display: block; width: 7.2rem; height: 3.9rem; max-width: none; object-fit: cover; object-position: center 43%; filter: drop-shadow(0 0 5px rgba(47,174,99,.45)); }
.promise-card::after { content: "“"; position: absolute; top: 1rem; right: 2rem; color: rgba(142, 245, 199, .2); font: 700 7rem/1 Georgia, serif; pointer-events: none; }
.promise-card .eyebrow { color: #7ee9ae; }
.promise-card .eyebrow::before { background: #55d990; }
.promise-card blockquote { position: relative; z-index: 1; max-width: 52rem; margin-bottom: 2.2rem; color: #f5fbff; font-size: clamp(1.55rem, 3vw, 2.45rem); line-height: 1.28; }
.promise-card .quote-card__author { position: relative; z-index: 1; gap: 1rem; }
.promise-card .quote-card__avatar { position: relative; display: grid; width: 7.2rem; height: 3.9rem; flex: 0 0 7.2rem; place-items: center; overflow: hidden; border: 1px solid rgba(187, 255, 222, .55); border-radius: 1rem; background: rgba(6, 26, 48, .78); box-shadow: 0 0 0 .35rem rgba(47,174,99,.08), 0 0 1.5rem rgba(47,174,99,.36); color: #fff; text-align: center; }
.promise-card .quote-card__avatar::after { content: ""; position: absolute; inset: -.45rem; border: 1px solid rgba(126,233,174,.28); border-radius: 1.2rem; animation: promiseAvatarPulse 3.2s ease-in-out infinite; pointer-events: none; }
.promise-card .quote-card__author strong { color: #fff; font-size: .95rem; }
.promise-card .quote-card__author span { color: rgba(235, 247, 255, .7); font-size: .82rem; }
@keyframes promiseAvatarPulse { 0%,100% { transform: scale(.94); opacity: .35; } 50% { transform: scale(1.08); opacity: .9; } }
@media (prefers-reduced-motion: reduce) { .promise-card .quote-card__avatar::after { animation: none; } }
@media (max-width: 640px) { .promise-card { padding: 1.7rem; } .promise-card .quote-card__avatar, .promise-card .quote-card__avatar img { width: 6rem; } .promise-card blockquote { margin-bottom: 1.6rem; } .promise-card::after { right: 1rem; font-size: 5rem; } }


/* --------------------------------------------------------------------------
   Two-audience glass cards — job seekers and UAE businesses
   -------------------------------------------------------------------------- */
.audience-section {
  position: relative;
  overflow: hidden;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.audience-card {
  position: relative;
  display: grid;
  grid-template-columns: 3.4rem minmax(0, 1fr);
  gap: 1.1rem;
  min-height: 14rem;
  padding: 1.55rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.35rem;
  background: linear-gradient(135deg, rgba(20, 61, 91, 0.78), rgba(6, 28, 49, 0.84));
  box-shadow: 0 1.2rem 3rem rgba(3, 17, 31, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.audience-card::before {
  position: absolute;
  right: -3rem;
  bottom: -4rem;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: rgba(47, 174, 99, 0.2);
  content: "";
  filter: blur(1.5rem);
  pointer-events: none;
}

.audience-card:hover {
  transform: translateY(-0.35rem);
  border-color: rgba(47, 174, 99, 0.58);
  box-shadow: 0 1.5rem 3.5rem rgba(3, 17, 31, 0.24), 0 0 1.5rem rgba(47, 174, 99, 0.1);
}

.audience-card__icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 3.2rem;
  height: 3.2rem;
  place-items: center;
  border: 1px solid rgba(126, 232, 171, 0.42);
  border-radius: 1rem;
  background: linear-gradient(145deg, rgba(47, 174, 99, 0.3), rgba(8, 43, 70, 0.85));
  box-shadow: 0 0 1.4rem rgba(47, 174, 99, 0.16);
  color: #8ee7b2;
  font-size: 1.2rem;
}

.audience-card > div {
  position: relative;
  z-index: 1;
}

.audience-card__eyebrow {
  display: block;
  margin: 0.1rem 0 0.45rem;
  color: #83e2aa;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.audience-card h3 {
  margin-bottom: 0.55rem;
  color: #fff;
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  line-height: 1.2;
}

.audience-card p {
  max-width: 34rem;
  margin-bottom: 1.1rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  line-height: 1.6;
}

.audience-card__button {
  width: fit-content;
  min-height: 2.65rem;
  padding: 0.65rem 0.95rem;
  font-size: 0.76rem;
}

@media (max-width: 760px) {
  .audience-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .audience-card {
    min-height: 0;
    padding: 1.3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .audience-card,
  .audience-card:hover {
    transform: none;
    transition: none;
  }
}


/* Compact audience section spacing and one-line desktop heading */
.audience-section--third {
  padding: 3.75rem 0 4.25rem;
}

.audience-section--third .section__head {
  margin-bottom: 1.75rem;
}

.audience-section--third .section__head h2 {
  max-width: none;
  font-size: clamp(1.7rem, 3.1vw, 2.8rem);
  white-space: nowrap;
}

.audience-section--third .section__head p {
  margin-bottom: 0;
}

.audience-section--third .audience-grid {
  margin-top: 1.25rem;
}

@media (max-width: 760px) {
  .audience-section--third {
    padding: 2.75rem 0 3rem;
  }

  .audience-section--third .section__head h2 {
    white-space: normal;
  }
}


/* Final compact spacing refinement for the third audience section */
.audience-section--third {
  padding: 2.75rem 0 3.25rem;
}

.audience-section--third .section__head {
  margin-bottom: 1.15rem;
}

.audience-section--third .section__head .eyebrow {
  margin-bottom: 0.55rem;
}

.audience-section--third .section__head h2 {
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1.12;
}

.audience-section--third .section__head p {
  margin-top: 0.55rem;
  line-height: 1.45;
}

.audience-section--third .audience-grid {
  gap: 1rem;
  margin-top: 0.9rem;
}

.audience-section--third .audience-card {
  min-height: 12.5rem;
  padding: 1.35rem;
}

.audience-section--third .audience-card p {
  margin-bottom: 0.85rem;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .audience-section--third {
    padding: 2.25rem 0 2.75rem;
  }

  .audience-section--third .section__head {
    margin-bottom: 0.9rem;
  }

  .audience-section--third .section__head h2 {
    font-size: clamp(1.55rem, 7vw, 2.1rem);
  }

  .audience-section--third .audience-grid {
    margin-top: 0.7rem;
  }
}


/* Home FAQ section — visible AEO-friendly answers */
.section--faq {
  padding: 3.5rem 0 4rem;
}

.section--faq .section__head {
  margin-bottom: 1.35rem;
}

.section--faq .section__head h2 {
  max-width: none;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1.12;
}

.section--faq .section__head p {
  margin-top: 0.55rem;
  margin-bottom: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem 1rem;
  max-width: 62rem;
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(11, 42, 74, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 0.8rem 2rem rgba(11, 42, 74, 0.06);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.faq-item:hover,
.faq-item[open] {
  border-color: rgba(47, 174, 99, 0.5);
  box-shadow: 0 1rem 2.2rem rgba(11, 42, 74, 0.1);
  transform: translateY(-0.12rem);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4rem;
  padding: 1rem 1.15rem;
  color: #0b2a4a;
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 750;
  line-height: 1.35;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary i {
  flex: 0 0 auto;
  color: #2fae63;
  font-size: 0.85rem;
  transition: transform 0.25s ease;
}

.faq-item[open] summary i {
  transform: rotate(45deg);
}

.faq-item p {
  margin: -0.15rem 1.15rem 1.1rem;
  color: #536678;
  font-size: 0.88rem;
  line-height: 1.6;
}

@media (max-width: 760px) {
  .section--faq {
    padding: 2.75rem 0 3.25rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}


/* PINACKLE Jobs Page — candidate conversion and responsive refinement */
.jobs-page .page-hero {
  padding: 124px 0 64px;
}

.jobs-page .page-hero__inner {
  max-width: 920px;
}

.jobs-page .page-hero h1 {
  max-width: 780px;
  margin-bottom: 1rem;
  font-size: clamp(2.65rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: -.06em;
}

.jobs-page .page-hero p {
  max-width: 700px;
  line-height: 1.65;
}

.jobs-page .jobs-board-section {
  padding: 78px 0;
}

.jobs-page .section-heading--split {
  align-items: end;
  margin-bottom: 1.6rem;
}

.jobs-page .jobs-filter {
  gap: .75rem;
  padding: .75rem;
  border: 1px solid rgba(47, 174, 99, .18);
  border-radius: 1rem;
  box-shadow: 0 12px 32px rgba(11, 42, 74, .06);
}

.jobs-page .jobs-filter__search,
.jobs-page .jobs-filter select {
  min-height: 3.05rem;
  border-radius: .7rem;
}

.jobs-page .jobs-filter .button {
  min-height: 3.05rem;
  white-space: nowrap;
}

.jobs-page .public-job-list {
  gap: 1rem;
  margin-top: 1.25rem;
}

.jobs-page .public-job-card {
  padding: 1.45rem;
  border-top: 3px solid rgba(47, 174, 99, .62);
  transition: transform .25s ease, box-shadow .25s ease;
}

.jobs-page .public-job-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(11, 42, 74, .1);
}

.jobs-page .public-job-card h3 {
  margin: .8rem 0;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  letter-spacing: -.035em;
}

.jobs-page .public-job-card__summary {
  line-height: 1.6;
}

.jobs-page .public-job-card__footer {
  align-items: center;
  gap: 1rem;
  margin-top: 1.1rem;
}

.jobs-page .public-job-card__footer .button {
  flex: 0 0 auto;
}

.jobs-page .split-callout {
  gap: 2rem;
}

.jobs-page .jobs-empty {
  padding: 2.5rem 1.5rem;
  text-align: center;
}

@media (max-width: 900px) {
  .jobs-page .page-hero {
    padding: 104px 0 54px;
  }

  .jobs-page .jobs-board-section {
    padding: 64px 0;
  }
}

@media (max-width: 640px) {
  .jobs-page .page-hero {
    padding: 92px 0 44px;
  }

  .jobs-page .page-hero h1 {
    font-size: clamp(2.15rem, 10.5vw, 3.1rem);
    line-height: 1.03;
  }

  .jobs-page .page-hero p {
    font-size: .94rem;
    line-height: 1.58;
  }

  .jobs-page .jobs-board-section {
    padding: 52px 0;
  }

  .jobs-page .jobs-filter {
    padding: .6rem;
  }

  .jobs-page .public-job-card {
    padding: 1.15rem;
  }

  .jobs-page .public-job-card__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .jobs-page .public-job-card__footer .button {
    width: 100%;
    justify-content: center;
  }
}


/* ========================================================================== 
   HOME PAGE PLACEMENT NOTIFICATION
   Truthful, dismissible, non-blocking visitor notification.
   ========================================================================== */

.placement-popup {
  position: fixed;
  z-index: 1200;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: .85rem;
  width: min(28rem, calc(100vw - 2rem));
  padding: 1rem 1.05rem 1rem 1rem;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, .66);
  border-radius: 1.05rem;
  background: linear-gradient(135deg, rgba(11, 42, 74, .96), rgba(23, 62, 99, .94));
  color: #fff;
  box-shadow: 0 20px 50px rgba(11, 42, 74, .28), 0 0 0 1px rgba(47, 174, 99, .13);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 1;
  transform: translateY(0);
  transition: opacity .28s ease, transform .28s ease;
}

.placement-popup[hidden] {
  display: none;
}

.placement-popup.is-entering {
  opacity: 0;
  transform: translateY(1rem);
}

.placement-popup.is-closing {
  opacity: 0;
  transform: translateY(1rem);
}

.placement-popup__brand {
  width: 2.9rem;
  height: 2.9rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: .78rem;
  background: rgba(255, 255, 255, .11);
}

.placement-popup__brand img {
  width: 2.25rem;
  height: 2.25rem;
  object-fit: contain;
}

.placement-popup__content {
  min-width: 0;
}

.placement-popup__eyebrow {
  display: block;
  margin-bottom: .22rem;
  color: #8de0ae;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.placement-popup__title,
.placement-popup__text {
  margin: 0;
}

.placement-popup__title {
  color: #fff;
  font-size: .88rem;
  font-weight: 800;
  line-height: 1.35;
}

.placement-popup__text {
  margin-top: .2rem;
  color: rgba(255, 255, 255, .76);
  font-size: .73rem;
  line-height: 1.48;
}

.placement-popup__cta {
  display: inline-flex;
  gap: .35rem;
  margin-top: .56rem;
  align-items: center;
  color: #a4efbd;
  font-size: .72rem;
  font-weight: 800;
  text-decoration: none;
}

.placement-popup__cta:hover,
.placement-popup__cta:focus-visible {
  color: #fff;
}

.placement-popup__cta:focus-visible,
.placement-popup__close:focus-visible {
  outline: 3px solid rgba(141, 224, 174, .45);
  outline-offset: 3px;
}

.placement-popup__close {
  width: 1.85rem;
  height: 1.85rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  background: rgba(255, 255, 255, .09);
  color: rgba(255, 255, 255, .82);
  cursor: pointer;
  font-size: .74rem;
}

.placement-popup__close:hover {
  background: rgba(255, 255, 255, .18);
  color: #fff;
}

@media (max-width: 640px) {
  .placement-popup {
    right: .75rem;
    bottom: max(.75rem, env(safe-area-inset-bottom));
    left: .75rem;
    width: auto;
    padding: .85rem .9rem .9rem .85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .placement-popup {
    transition: none;
  }
}

/* Primary contact location map */
.contact-location {
  padding-top: 1rem;
}

.contact-location__layout {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(1.25rem, 3vw, 2.4rem);
  align-items: stretch;
  padding: clamp(1rem, 2vw, 1.5rem);
  border: 1px solid rgba(47, 174, 99, .16);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 18px 42px rgba(11, 42, 74, .08);
}

.contact-location__copy {
  display: flex;
  padding: clamp(1rem, 2.5vw, 2rem);
  flex-direction: column;
  justify-content: center;
}

.contact-location__copy h2 {
  margin: .55rem 0 .7rem;
}

.contact-location__copy p {
  max-width: 30rem;
  margin: 0 0 1.25rem;
  color: var(--body);
}

.contact-location__copy .button {
  align-self: flex-start;
}

.contact-location__map {
  min-height: 22rem;
  overflow: hidden;
  border: 1px solid rgba(11, 42, 74, .12);
  border-radius: 1rem;
  background: #eaf1f5;
}

.contact-location__map iframe {
  display: block;
  width: 100%;
  min-height: 22rem;
  height: 100%;
  border: 0;
}

@media (max-width: 780px) {
  .contact-location {
    padding-top: .5rem;
  }

  .contact-location__layout {
    grid-template-columns: 1fr;
    gap: .8rem;
    padding: .7rem;
  }

  .contact-location__copy {
    padding: 1rem .8rem;
  }

  .contact-location__copy .button {
    width: 100%;
  }

  .contact-location__map,
  .contact-location__map iframe {
    min-height: 18rem;
  }
}

/* Floating WhatsApp contact CTA */
.whatsapp-float {
  position: fixed;
  z-index: 1250;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  display: inline-flex;
  min-width: 3.65rem;
  min-height: 3.65rem;
  padding: .75rem 1rem;
  gap: .6rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 999px;
  background: linear-gradient(135deg, #128c7e, #25d366);
  box-shadow: 0 14px 34px rgba(18, 140, 126, .3), 0 0 0 5px rgba(37, 211, 102, .1);
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}

.whatsapp-float i {
  display: grid;
  width: 1.8rem;
  height: 1.8rem;
  place-items: center;
  font-size: 1.3rem;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  color: #fff;
  transform: translateY(-3px);
  filter: saturate(1.08);
  box-shadow: 0 18px 40px rgba(18, 140, 126, .36), 0 0 0 7px rgba(37, 211, 102, .13);
}

.whatsapp-float:focus-visible {
  outline: 3px solid rgba(255, 255, 255, .9);
  outline-offset: 3px;
}

@media (max-width: 640px) {
  .whatsapp-float {
    right: max(.9rem, env(safe-area-inset-right));
    bottom: calc(max(.9rem, env(safe-area-inset-bottom)) + 3.8rem);
    width: 3.35rem;
    height: 3.35rem;
    min-width: 3.35rem;
    padding: 0;
  }

  .whatsapp-float i {
    width: auto;
    height: auto;
    font-size: 1.5rem;
  }

  .whatsapp-float__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float {
    transition: none;
  }
}
