/* Xenova Labor Services — HrHub-style (navy, royal blue, cyan gradients) */
:root {
  --navy-950: #070d16;
  --navy-900: #0c1629;
  --navy-800: #132337;
  --navy-700: #1a3354;
  --royal: #1a6dd8;
  --royal-hover: #155cc0;
  --cyan-50: #eff8ff;
  --cyan-100: #dbeefe;
  --cyan-200: #bfdbfe;
  --white: #ffffff;
  --text: #1a2332;
  --text-muted: #5a6578;
  --border: rgba(19, 35, 55, 0.1);
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow: 0 4px 24px rgba(12, 22, 41, 0.08);
  --shadow-lg: 0 20px 50px rgba(12, 22, 41, 0.12);
  --font: "Manrope", system-ui, sans-serif;
  --container: min(1140px, 100% - 2rem);
  --topbar-h: 40px;
  --nav-h: 92px;
  --header-total: calc(var(--topbar-h) + var(--nav-h));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--royal);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

main > section {
  padding: 4.5rem 0;
  scroll-margin-top: var(--header-total);
}

/* —— Scroll reveal (sections + marquee, partners, footer) —— */
.section-reveal {
  opacity: 0;
  transform: translate3d(0, 1.75rem, 0);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.section-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

/* Hero: avoid invisible first paint (opacity stays 1) */
.hero.section-reveal {
  opacity: 1;
  transform: translate3d(0, 1.15rem, 0);
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero.section-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.marquee-bar.section-reveal,
.partner-bar.section-reveal {
  transform: translate3d(0, 1rem, 0);
}

@media (prefers-reduced-motion: reduce) {
  .section-reveal {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}

/* —— Top bar —— */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  height: var(--topbar-h);
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.top-bar .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 1.5rem;
}

@media (min-width: 768px) {
  .top-bar .container {
    justify-content: space-between;
  }
}

.top-bar a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.top-bar a:hover {
  color: var(--cyan-200);
  text-decoration: none;
}

.top-bar-sep {
  opacity: 0.35;
  user-select: none;
}

/* —— Main header (dark: contrast for white logo) —— */
.site-header {
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  right: 0;
  z-index: 1001;
  height: var(--nav-h);
  background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 24px rgba(7, 13, 22, 0.35);
}

.header-main {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
}

.brand:hover {
  text-decoration: none;
}

.brand img {
  height: clamp(52px, 10vw, 76px);
  width: auto;
  max-width: min(280px, 55vw);
  object-fit: contain;
  object-position: left center;
}

.brand-text {
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  max-width: 160px;
  line-height: 1.2;
}

@media (max-width: 959px) {
  .visually-hidden-mobile {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}

@media (min-width: 960px) {
  .visually-hidden-mobile {
    display: none;
  }
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: #fff;
  margin-inline: auto;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 960px) {
  .nav-toggle {
    display: none;
  }
}

.site-nav {
  position: fixed;
  top: var(--header-total);
  left: 0;
  right: 0;
  background: var(--navy-900);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 1.25rem;
  display: none;
  flex-direction: column;
  gap: 0.1rem;
  box-shadow: 0 16px 40px rgba(7, 13, 22, 0.45);
}

.site-nav.is-open {
  display: flex;
}

@media (min-width: 960px) {
  .site-nav {
    position: static;
    display: flex !important;
    flex-direction: row;
    flex: 1;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    border: none;
    box-shadow: none;
    background: transparent;
    gap: 0.15rem;
  }
}

.site-nav a {
  padding: 0.55rem 0.85rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 8px;
  text-decoration: none;
}

.site-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.header-cta-wrap {
  flex-shrink: 0;
}

.nav-cta {
  display: none;
  padding: 0.65rem 1.35rem;
  background: #fff;
  color: var(--navy-900) !important;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
  transition: background 0.2s, transform 0.15s, color 0.2s;
}

.nav-cta:hover {
  background: var(--cyan-100);
  color: var(--navy-900) !important;
  text-decoration: none;
  transform: translateY(-1px);
}

@media (min-width: 960px) {
  .nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* mobile: show CTA in drawer */
@media (max-width: 959px) {
  .site-nav .nav-cta-mobile {
    display: flex;
    margin-top: 0.5rem;
    justify-content: center;
    background: #fff;
    color: var(--navy-900) !important;
    padding: 0.75rem;
    border-radius: 8px;
  }

  .site-nav .nav-cta-mobile:hover {
    background: var(--cyan-100);
  }
}

@media (min-width: 960px) {
  .site-nav .nav-cta-mobile {
    display: none;
  }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: var(--royal);
  color: #fff;
  box-shadow: 0 4px 18px rgba(26, 109, 216, 0.35);
}

.btn-primary:hover {
  background: var(--royal-hover);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.45);
}

.btn-outline-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline-dark {
  background: transparent;
  color: var(--royal);
  border: 2px solid var(--royal);
}

.btn-outline-dark:hover {
  background: rgba(26, 109, 216, 0.06);
}

.btn-block {
  width: 100%;
}

.btn .icon-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  min-height: min(92dvh, 820px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-total) + 3rem) 1.5rem 4rem;
  background-color: var(--navy-950);
  background-image:
    linear-gradient(105deg, rgba(7, 13, 22, 0.52) 0%, rgba(12, 22, 41, 0.45) 45%, rgba(19, 35, 55, 0.5) 100%),
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(26, 109, 216, 0.12) 0%, transparent 55%),
    url("../images/Hrhub-home1-banner-img.png");
  background-size: auto, auto, cover;
  background-position: center, center, center;
  background-repeat: no-repeat;
  overflow: hidden;
  scroll-margin-top: var(--header-total);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M60 0H0v60' fill='none' stroke='%23ffffff' stroke-opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.2;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-inline: auto;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #e0f2fe;
  margin-bottom: 1rem;
  text-shadow: 0 1px 12px rgba(7, 13, 22, 0.45);
}

.hero h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 2px 28px rgba(7, 13, 22, 0.55), 0 1px 4px rgba(7, 13, 22, 0.45);
}

.hero-lead {
  margin: 0 auto 2rem;
  max-width: 640px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.75;
  text-shadow: 0 1px 16px rgba(7, 13, 22, 0.5);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

/* —— Section labels —— */
.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--royal);
  margin-bottom: 0.6rem;
}

.section-head {
  margin-bottom: 2.5rem;
  max-width: 640px;
}

.section-head h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  line-height: 1.2;
}

.section-head .lead,
.lead {
  margin: 0;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.section-white {
  background: var(--white);
}

.section-soft {
  background: linear-gradient(180deg, var(--cyan-50) 0%, var(--white) 100%);
}

/* —— About —— */
.about-split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 960px) {
  .about-split {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.about-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1.25;
}

.about-copy > p {
  color: var(--text-muted);
  margin: 0 0 1.75rem;
}

.pillar-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}

.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--royal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(26, 109, 216, 0.35);
}

.pillar-icon svg {
  width: 22px;
  height: 22px;
}

.pillar-row h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy-900);
}

.pillar-row p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.about-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 1.75rem;
}

.call-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.call-pill strong {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--royal);
}

.about-collage {
  position: relative;
  height: min(420px, 55vw);
  max-height: 480px;
}

.collage-circle {
  position: absolute;
  width: 55%;
  aspect-ratio: 1;
  border-radius: 50%;
  top: 8%;
  left: 0;
  overflow: hidden;
  background: var(--navy-800);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.collage-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.collage-rect {
  position: absolute;
  width: 62%;
  height: 58%;
  border-radius: var(--radius-xl);
  bottom: 5%;
  right: 0;
  overflow: hidden;
  background: var(--navy-800);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
}

.collage-rect img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.collage-badge {
  position: absolute;
  bottom: 18%;
  left: 8%;
  padding: 0.85rem 1.1rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--royal);
  max-width: 200px;
  line-height: 1.35;
}

/* —— Process / services cyan —— */
.section-process {
  background: radial-gradient(ellipse 120% 80% at 50% 0%, var(--cyan-100) 0%, var(--white) 55%);
  border-block: 1px solid rgba(26, 109, 216, 0.08);
}

.section-process .section-head {
  text-align: center;
  margin-inline: auto;
  max-width: 560px;
}

.process-track {
  position: relative;
  max-width: 1000px;
  margin: 0 auto 2.5rem;
  padding: 1rem 0 2rem;
}

.process-line {
  display: none;
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 3px;
  background: linear-gradient(90deg, var(--royal), var(--cyan-200), var(--royal));
  border-radius: 3px;
  opacity: 0.45;
}

@media (min-width: 900px) {
  .process-line {
    display: block;
  }
}

.process-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.process-item {
  text-align: center;
  position: relative;
}

.process-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--royal);
  color: var(--royal);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(26, 109, 216, 0.15);
  position: relative;
  z-index: 1;
}

.process-icon svg {
  width: 30px;
  height: 30px;
}

.process-item h3 {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy-900);
}

.process-item p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 220px;
  margin-inline: auto;
}

.process-cta-wrap {
  text-align: center;
}

.process-cta {
  display: inline-flex;
  min-width: min(100%, 420px);
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 0.95rem;
}

/* —— Dark feature band —— */
.section-dark-band {
  position: relative;
  padding: 4.5rem 0;
  background-color: var(--navy-900);
  background-image:
    linear-gradient(180deg, rgba(7, 13, 22, 0.9) 0%, rgba(12, 22, 41, 0.88) 50%, rgba(7, 13, 22, 0.92) 100%),
    url("../images/laborservices.png");
  background-size: auto, cover;
  background-position: center, center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  color: rgba(255, 255, 255, 0.85);
  overflow: hidden;
}

.section-dark-band .section-label {
  color: var(--cyan-200);
}

.section-dark-band .section-head--on-dark {
  max-width: none;
  margin-bottom: 2rem;
}

.section-dark-band .section-head--on-dark h2 {
  color: #fff;
}

.section-dark-band .section-head--on-dark .lead {
  color: rgba(255, 255, 255, 0.7);
}

.dark-band-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 960px) {
  .dark-band-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
  }
}

.trust-score {
  text-align: center;
}

@media (min-width: 960px) {
  .trust-score {
    text-align: left;
  }
}

.trust-score .score {
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.03em;
}

.stars {
  color: #fbbf24;
  font-size: 1.35rem;
  letter-spacing: 0.15em;
  margin: 0.5rem 0 1rem;
}

.trust-quote {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  font-style: italic;
}

.feature-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 1.35rem;
  background: var(--navy-800);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: rgba(26, 109, 216, 0.4);
  transform: translateX(4px);
}

.feature-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: rgba(26, 109, 216, 0.25);
  color: var(--cyan-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-card-icon svg {
  width: 26px;
  height: 26px;
}

.feature-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
}

.feature-card p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
}

/* —— Marquee —— */
.marquee-bar {
  padding: 0.85rem 0;
  background: linear-gradient(90deg, var(--cyan-100) 0%, var(--cyan-50) 50%, var(--cyan-100) 100%);
  border-block: 1px solid rgba(26, 109, 216, 0.12);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-right: 2.5rem;
  flex-shrink: 0;
}

.marquee-item {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-700);
  white-space: nowrap;
}

.marquee-dot {
  color: var(--royal);
  font-weight: 900;
}

/* —— Compliance —— */
.compliance-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .compliance-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.card-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.85rem;
  margin-bottom: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--royal);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center / 12px no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center / 12px no-repeat;
}

/* —— Why + commitment —— */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.why-grid li {
  padding: 0.9rem 1rem 0.9rem 2.6rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  position: relative;
  box-shadow: 0 1px 3px rgba(12, 22, 41, 0.04);
}

.why-grid li::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--royal);
}

.commitment-card {
  border-left: 4px solid var(--royal);
}

.commitment-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  color: var(--navy-900);
}

.commitment-quote {
  margin: 1.25rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--royal);
  font-style: normal;
}

/* —— Industry event cards —— */
.industry-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.industry-card {
  display: grid;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

@media (min-width: 768px) {
  .industry-card {
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
  }
}

.industry-date {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--cyan-100) 0%, var(--cyan-50) 100%);
  border: 1px solid rgba(26, 109, 216, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--royal);
  line-height: 1.1;
}

.industry-date span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.85;
}

.industry-date strong {
  font-size: 1.15rem;
}

.industry-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy-900);
}

.industry-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* —— Contact —— */
.contact-split {
  display: grid;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 900px) {
  .contact-split {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form-side {
  padding: 2.25rem 2rem;
  background: var(--navy-900);
  color: #fff;
}

.contact-form-side h2 {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
  font-weight: 800;
}

.contact-form-side .sub {
  margin: 0 0 1.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.form-field {
  margin-bottom: 1rem;
}

.form-field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.35rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form-side .btn-primary {
  margin-top: 0.5rem;
}

.contact-testimonial {
  padding: 2.25rem 2rem;
  background: linear-gradient(165deg, var(--cyan-50) 0%, var(--white) 60%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-testimonial .stars {
  margin: 0 0 1rem;
}

.contact-testimonial blockquote {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy-800);
  line-height: 1.6;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--royal);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy-900);
}

.testimonial-author span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* —— Partners —— */
.partner-bar {
  padding: 1.75rem 0;
  background: var(--royal);
}

.partner-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 2.5rem;
}

.partner-inner span {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  opacity: 0.95;
}

/* —— Newsletter —— */
.newsletter {
  padding: 3rem 0;
  background: var(--navy-950);
  color: #fff;
}

.newsletter .container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: stretch;
}

@media (min-width: 768px) {
  .newsletter .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
}

.newsletter h2 {
  margin: 0;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 800;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  width: 100%;
  max-width: 480px;
}

.newsletter-form input {
  flex: 1 1 200px;
  padding: 0.85rem 1.1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: inherit;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.newsletter-form .btn-primary {
  box-shadow: none;
}

/* —— Footer —— */
.site-footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.7);
  padding: 3.5rem 0 2rem;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

.footer-col h3 {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.footer-brand {
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.footer-about {
  margin: 0;
  line-height: 1.6;
  max-width: 280px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--cyan-200);
}

.footer-bottom {
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

.social-row {
  display: flex;
  gap: 0.75rem;
}

.social-row a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
}

.social-row a:hover {
  background: var(--royal);
  color: #fff;
}

.phone-placeholder {
  pointer-events: none;
  cursor: default;
  opacity: 0.85;
}

/* —— Back to top —— */
.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  min-width: 3.25rem;
  padding: 0.55rem 0.65rem 0.5rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--royal);
  box-shadow: 0 6px 24px rgba(26, 109, 216, 0.45), 0 2px 8px rgba(7, 13, 22, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s, background 0.2s;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--royal-hover);
  color: #fff;
}

.back-to-top:focus {
  outline: none;
}

.back-to-top:focus-visible {
  outline: 3px solid var(--cyan-200);
  outline-offset: 3px;
}

.back-to-top__arrow {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.back-to-top__label {
  line-height: 1;
  opacity: 0.95;
}

@media (min-width: 1100px) {
  .back-to-top {
    right: 1.75rem;
    bottom: 1.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .back-to-top {
    transition: opacity 0.15s ease, visibility 0.15s;
  }

  .back-to-top.is-visible {
    transform: none;
  }
}
