/* Sparksupport Globel tech — Enterprise HSE
   Design: minimal · readable · mobile-first
   Palette: #0B1F3A (primary) · #2274B4 (primary action) · #FF6B00 (secondary) · #00D1FF (accent)
   Type: Inter (body) · Poppins (headings, UI) */

:root {
  --primary: #0b1f3a;
  --primary-action: #2274b4;
  --primary-action-dark: #1a5c90;
  --logo-blue: #152d52;
  --secondary: #ff6b00;
  --accent: #00d1ff;
  --bg: #f5f7fa;
  --bg-white: #ffffff;
  --text: #1a2332;
  --text-muted: #5a6577;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 2px 16px rgba(11, 31, 58, 0.06);
  --shadow-hover: 0 12px 40px rgba(11, 31, 58, 0.1);
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Poppins", var(--font-sans);
  --header-h: 72px;
  --touch: 44px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --section-y: clamp(4rem, 9vw, 7rem);
  --section-gap: clamp(1.5rem, 4vw, 2.75rem);
  --container: 1200px;
  --container-wide: 1280px;
  --container-pad: clamp(1rem, 4vw, 1.5rem);
  --prose: 65ch;
  /* Smart Hire Desk (smart-hire-desk.html) */
  --shd-bg: #f6f8fc;
  --shd-surface: #ffffff;
  --shd-text: #0f172a;
  --shd-muted: #475569;
  --shd-soft: #64748b;
  --shd-primary: #2563eb;
  --shd-primary-dark: #1d4ed8;
  --shd-violet: #6366f1;
  --shd-teal: #0d9488;
  --shd-gradient: linear-gradient(135deg, #2563eb 0%, #6366f1 45%, #0d9488 100%);
  --shd-gradient-soft: linear-gradient(180deg, #eef2ff 0%, #f0fdfa 50%, #f6f8fc 100%);
  --shd-warning-bg: #fffbeb;
  --shd-warning-border: #fde68a;
  --shd-warning-text: #92400e;
  --shd-radius: 14px;
  --shd-radius-lg: 22px;
  --shd-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  --shd-shadow-hover: 0 12px 40px rgba(37, 99, 235, 0.12);
  --shd-shadow-mock: 0 4px 6px -1px rgba(15, 23, 42, 0.06), 0 24px 48px -12px rgba(37, 99, 235, 0.14);
  --shd-font: "Inter", system-ui, -apple-system, sans-serif;
  --shd-display: "Plus Jakarta Sans", var(--shd-font);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(0.9375rem, 0.92rem + 0.25vw, 1rem);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

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

/* ----- Header ----- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(11, 31, 58, 0.06);
  transition: box-shadow var(--transition);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow);
}

.header-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  min-height: var(--touch);
  padding: 0.25rem 0;
  flex-shrink: 0;
}

.brand-logo,
.footer-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.footer-logo {
  height: 36px;
  opacity: 0.95;
}

.nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary);
  opacity: 0.88;
  transition: color var(--transition), opacity var(--transition);
}

.nav a:hover {
  color: var(--primary-action);
  opacity: 1;
}

.nav > a.nav-link--active {
  color: var(--primary-action);
  opacity: 1;
  font-weight: 600;
}

.mt-5 {
  margin-top: 50px;
}
@media (min-width: 1024px) {
  .nav a {
    padding: 0.35rem 0;
  }
}

.nav a:focus-visible,
.nav-dropdown__trigger:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--touch);
  padding: 0.65rem 1.35rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-action) 0%, var(--primary-action-dark) 100%);
  color: #fff;
}

.btn-lg {
  padding: 0.85rem 1.85rem;
  font-size: 1rem;
  min-height: 48px;
}

.btn-header {
  display: none;
  background: linear-gradient(135deg, var(--primary-action) 0%, var(--primary-action-dark) 100%);
  color: #fff;
  white-space: nowrap;
}

.btn-header:hover {
  background: var(--primary-action-dark);
  filter: brightness(1.05);
}

.btn-ghost-light {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.65);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--primary);
  transition: transform 0.3s, opacity 0.3s;
}

.site-header.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (min-width: 1024px) {
  .nav,
  .btn-header {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }
}

/* Mobile nav — stacked, touch-friendly */
@media (max-width: 1023px) {
  .site-header.nav-open .nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #fff;
    padding: 0.75rem var(--container-pad) 1.25rem;
    gap: 0;
    border-bottom: 1px solid rgba(11, 31, 58, 0.08);
    box-shadow: var(--shadow);
  }

  .site-header.nav-open .nav > a {
    display: flex;
    align-items: center;
    min-height: var(--touch);
    padding: 0.5rem 0.25rem;
    font-size: 1rem;
    border-bottom: 1px solid rgba(11, 31, 58, 0.06);
    opacity: 1;
  }

  .site-header.nav-open .nav > .nav-dropdown {
    border-bottom: 1px solid rgba(11, 31, 58, 0.06);
  }

  .site-header.nav-open .nav > *:last-child {
    border-bottom: none;
  }
}

/* Nav: Our products dropdown */
.nav-dropdown {
  position: relative;
}

/* Desktop: invisible hit-area so the cursor can move from the trigger into the
   panel without crossing a “dead” gap (which would close the menu). */
@media (min-width: 1024px) {
  .nav-dropdown::before {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: max(100%, 14rem);
    min-height: 0.75rem;
    z-index: 1099;
  }
}

.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0.35rem 0;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary);
  opacity: 0.88;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition), opacity var(--transition);
}

.nav-dropdown__trigger:hover {
  color: var(--primary-action);
  opacity: 1;
}

.nav-dropdown__chevron {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown__chevron,
.nav-dropdown:focus-within .nav-dropdown__chevron {
  transform: rotate(180deg);
}

.nav-dropdown__panel {
  list-style: none;
  margin: 0;
  padding: 0.45rem 0;
  min-width: 14rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  border: 1px solid rgba(11, 31, 58, 0.1);
  z-index: 1100;
}

.nav-dropdown__panel a {
  display: block;
  padding: 0.55rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
  opacity: 1;
  transition: background var(--transition), color var(--transition);
}

.nav-dropdown__panel a:hover {
  background: rgba(34, 116, 180, 0.08);
  color: var(--primary-action);
}

.nav-dropdown__panel a.nav-dropdown__link--active {
  background: rgba(34, 116, 180, 0.12);
  color: var(--primary-action);
  font-weight: 600;
}

@media (min-width: 1024px) {
  .nav-dropdown__panel {
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }

  .nav-dropdown:hover .nav-dropdown__panel,
  .nav-dropdown:focus-within .nav-dropdown__panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

@media (max-width: 1023px) {
  .site-header.nav-open .nav-dropdown {
    width: 100%;
  }

  .site-header.nav-open .nav-dropdown__trigger {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    min-height: var(--touch);
    padding: 0.5rem 0.25rem;
    font-size: 1rem;
    opacity: 1;
  }

  .site-header.nav-open .nav-dropdown__panel {
    position: static;
    display: none;
    min-width: 0;
    margin: 0;
    padding: 0 0 0.5rem 0.75rem;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }

  .site-header.nav-open .nav-dropdown.nav-dropdown--open .nav-dropdown__panel {
    display: block;
  }

  .site-header.nav-open .nav-dropdown__panel a {
    padding: 0.5rem 0.25rem;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(11, 31, 58, 0.05);
  }

  .site-header.nav-open .nav-dropdown__panel a:last-child {
    border-bottom: none;
  }

  .site-header.nav-open .nav-dropdown.nav-dropdown--open .nav-dropdown__chevron {
    transform: rotate(180deg);
  }
}

/* ----- Hero ----- */
.hero {
  position: relative;
  min-height: min(100vh, 960px);
  padding: calc(var(--header-h) + 2.5rem) 0 4.5rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-inner {
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.hero-inner--split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 959px) {
  .hero-inner--split {
    grid-template-columns: 1fr;
  }

  .hero-inner--split .hero-stats {
    margin-top: 0.25rem;
  }
}

@media (min-width: 960px) {
  .hero-inner--split {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 380px);
    gap: 2rem clamp(1.5rem, 4vw, 3.5rem);
    align-items: center;
  }

  .hero-inner--split .hero-content {
    max-width: none;
  }

  .hero-inner--split .hero-stats,
  .hero-inner--split .hero-stats.hero-stats--six {
    justify-self: end;
    align-self: center;
    width: 100%;
    max-width: 380px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../assets/images/banner.jpg") center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(11, 31, 58, 0.92) 0%,
    rgba(11, 31, 58, 0.75) 45%,
    rgba(11, 31, 58, 0.45) 100%
  );
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(0, 209, 255, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 209, 255, 0.4) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero-glow-lines {
  position: absolute;
  inset: -20% -10%;
  background:
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(0, 209, 255, 0.15), transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(255, 107, 0, 0.08), transparent 45%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 42rem;
}

.hero-inner--split .hero-content {
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.2vw, 3.1rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 1.25rem;
  text-wrap: balance;
}

.hero-lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 1rem;
  max-width: 58ch;
}

.hero-tagline {
  font-size: 0.98rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 1.75rem;
  max-width: 52ch;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 0;
}

@media (max-width: 520px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

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

@media (min-width: 640px) {
  .hero-stats--six {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 6.5rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(0, 209, 255, 0.22);
  border-radius: var(--radius);
  padding: 0.85rem 0.55rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: statBadgeFloat 5s ease-in-out infinite, statPulse 5s ease-in-out infinite;
  will-change: transform;
}

.stat-badge:nth-child(2) {
  animation-delay: 0.4s, 0.4s;
}

.stat-badge:nth-child(3) {
  animation-delay: 0.8s, 0.8s;
}

.stat-badge:nth-child(4) {
  animation-delay: 1.2s, 1.2s;
}

.stat-badge:nth-child(5) {
  animation-delay: 1.6s, 1.6s;
}

.stat-badge:nth-child(6) {
  animation-delay: 2s, 2s;
}

.stat-badge__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  background: rgba(0, 209, 255, 0.12);
  border: 1px solid rgb(0 143 255);
  color: #008fff;
  box-shadow: 0 4px 24px rgba(0, 209, 255, 0.12);
}

.stat-badge__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.stat-badge__text {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(0.68rem, 1.75vw, 0.8rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.96);
  line-height: 1.3;
  text-align: center;
  hyphens: auto;
}

@keyframes statBadgeFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes statPulse {
  0%,
  100% {
    border-color: rgba(0, 209, 255, 0.2);
    box-shadow: none;
  }
  50% {
    border-color: rgba(0, 209, 255, 0.35);
    box-shadow: 0 0 16px rgba(0, 209, 255, 0.08);
  }
}

@media (max-width: 640px) {
  .why-card {
    min-height: 0;
  }

  .stat-badge {
    min-height: 5.75rem;
    padding: 0.65rem 0.45rem;
  }
}

/* ----- Sections ----- */
section[id] {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

main {
  overflow-x: hidden;
}

.section {
  position: relative;
  padding: var(--section-y) var(--container-pad);
}

.section--alt {
  background: linear-gradient(180deg, #fff 0%, #fafbfc 100%);
}

.section--dark {
  background: linear-gradient(165deg, #071426 0%, var(--primary) 55%, #0d2847 100%);
  color: #e8ecf2;
}

/* Dark promo bands (SparkFlow, SmartLearn) — wide background image */
.section.section--dark.sf-band {
  position: relative;
  overflow: hidden;
  background-color: #071426;
  background-image:
    linear-gradient(165deg, rgba(7, 20, 38, 0.9) 0%, rgba(11, 31, 58, 0.82) 52%, rgba(13, 40, 71, 0.92) 100%),
    url("../assets/images/bg-wide.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #e8ecf2;
}

.section--products {
  background: linear-gradient(180deg, #eef1f6 0%, #fff 40%, #f8fafc 100%);
  overflow: hidden;
}

.section--sparkanimate {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 50%, #fafbfc 100%);
}

/* Tighter gap between “Our Product Suite” and SparkAnimate */
#products.section--products {
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

#products + #sparkanimate.section--sparkanimate {
  padding-top: clamp(2rem, 4vw, 3rem);
}

/* SparkAnimate homepage block — animated visual + copy */
@keyframes saKenBurns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.09);
  }
}

@keyframes saFrameFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes saScan {
  0% {
    background-position: 180% 0;
  }
  100% {
    background-position: -180% 0;
  }
}

@keyframes saGlowPulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(1);
  }
  50% {
    opacity: 0.95;
    transform: scale(1.06);
  }
}

@keyframes saCaptionPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 209, 255, 0.45);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.15);
    box-shadow: 0 0 0 6px rgba(0, 209, 255, 0);
  }
}

.sparkanimate-feature {
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.75rem);
  align-items: center;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11, 31, 58, 0.08);
  box-shadow: var(--shadow-hover);
}

@media (min-width: 900px) {
  .sparkanimate-feature {
    grid-template-columns: minmax(300px, 1fr) minmax(0, 1.08fr);
    gap: clamp(2rem, 4vw, 3.25rem);
    padding: 2.25rem 2.5rem;
    align-items: center;
  }
}

.sparkanimate-feature__visual {
  position: relative;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
}

.sparkanimate-feature__glow-ring {
  position: absolute;
  inset: -14% -8% -10% -8%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 45%, rgba(0, 209, 255, 0.22) 0%, rgba(34, 116, 180, 0.08) 45%, transparent 72%);
  pointer-events: none;
  z-index: 0;
  animation: saGlowPulse 6s ease-in-out infinite;
}

.sparkanimate-feature__frame {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  box-shadow:
    0 16px 48px rgba(11, 31, 58, 0.14),
    0 0 0 1px rgba(0, 209, 255, 0.12);
  animation: saFrameFloat 9s ease-in-out infinite;
}

.sparkanimate-feature__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform-origin: center center;
  animation: saKenBurns 22s ease-in-out infinite alternate;
}

.sparkanimate-feature__scanline {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.14) 50%,
    transparent 65%
  );
  background-size: 220% 100%;
  animation: saScan 5s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.sparkanimate-feature__caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin: 1.1rem 0 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-action);
}

.sparkanimate-feature__caption-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: saCaptionPulse 2.4s ease-in-out infinite;
}

.sparkanimate-feature__body {
  min-width: 0;
  text-align: left;
}

.sparkanimate-feature__body .section-intro {
  max-width: none;
}

.section--sparkanimate .sparkanimate-feature__body .sparkanimate-feature__cta.product-card__more {
  margin-top: 1.5rem;
}

@media (prefers-reduced-motion: reduce) {
  .sparkanimate-feature__glow-ring,
  .sparkanimate-feature__frame,
  .sparkanimate-feature__img,
  .sparkanimate-feature__scanline,
  .sparkanimate-feature__caption-dot {
    animation: none !important;
  }

  .sparkanimate-feature__img {
    transform: none !important;
  }

  .sparkanimate-feature__frame {
    transform: none !important;
  }
}

.section--global {
  background: linear-gradient(180deg, #fff 0%, #eef2f7 50%, #fff 100%);
}

.section--global .global-list-plain {
  margin-bottom: 1.25rem !important;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.container--narrow {
  max-width: 720px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.8vw, 2.25rem);
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 1rem;
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.section-title--center {
  text-align: center;
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.section-head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: min(48rem, 100%);
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
}

.section-title--center + .section-intro--center {
  margin-top: -0.35rem;
}

.section-title--light {
  color: #fff;
}

.section-intro {
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  color: var(--text-muted);
  margin: 0 0 var(--section-gap);
  max-width: var(--prose);
}

.section-intro--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.premium-service .section-head--center .section-intro--center {
  margin-bottom: 0;
}

.premium-service .section-head--center {
  margin-bottom: 0.35rem;
}

.section-intro--muted {
  color: rgba(255, 255, 255, 0.72);
}

.section-intro--tight {
  margin-bottom: 0.85rem;
  max-width: 60ch;
}

.section-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--primary);
  margin: 1.5rem 0 1rem;
  line-height: 1.35;
}

.split__content .section-title + .section-subtitle {
  margin-top: 0.35rem;
}

.ideal-list {
  margin: 0.5rem 0 0;
  padding: 1.15rem 1.15rem 1.15rem 1.75rem;
  color: var(--text-muted);
  line-height: 1.65;
  background: rgba(11, 31, 58, 0.03);
  border: 1px solid rgba(11, 31, 58, 0.07);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
}

.ideal-list li {
  margin-bottom: 0.45rem;
}

.ideal-list li:last-child {
  margin-bottom: 0;
}

/* Split */
.split {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 960px) {
  .split {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 3.5rem;
    align-items: center;
  }

  .split--reverse {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }

  .split--reverse .split__content {
    order: 2;
  }

  .split--reverse .split__media {
    order: 1;
  }
}

.premium-service {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  width: 100%;
}

.split--premium {
  width: 100%;
}

.premium-service .split--premium:not(:first-child) .split__content > .section-subtitle:first-of-type {
  margin-top: 0;
}

.split__image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover), 0 0 0 1px rgba(11, 31, 58, 0.06);
  aspect-ratio: 4/5;
  max-height: min(640px, 70vh);
}

.split__image-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.split__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11, 31, 58, 0.5) 100%);
  pointer-events: none;
}

.glass-list {
  list-style: none;
  margin: 0.5rem 0 1.25rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .glass-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }
}

.glass-card {
  display: flex;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(11, 31, 58, 0.06);
  backdrop-filter: blur(10px);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.glass-card:hover {
  border-color: rgba(0, 209, 255, 0.35);
  box-shadow: 0 8px 32px rgba(0, 209, 255, 0.1);
}

.glass-card__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(11, 31, 58, 0.08), rgba(0, 209, 255, 0.12));
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.glass-card__icon svg {
  width: 22px;
  height: 22px;
}

.glass-card strong {
  display: block;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.glass-card strong:only-child {
  margin-bottom: 0;
}

.glass-card:has(strong:only-child) {
  align-items: center;
}

.glass-card__text {
  display: block;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Products */
.tech-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(0, 209, 255, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 107, 0, 0.06) 0%, transparent 40%),
    linear-gradient(rgba(11, 31, 58, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 31, 58, 0.03) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
  pointer-events: none;
}

.product-grid {
  display: grid;
  gap: 1.75rem;
  align-items: stretch;
}

@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  padding: 1.75rem 1.65rem;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11, 31, 58, 0.08);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  overflow: hidden;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent, rgba(0, 209, 255, 0.4), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(11, 31, 58, 0.1), 0 0 0 1px rgba(0, 209, 255, 0.12);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--primary), var(--logo-blue));
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.product-card__icon svg {
  width: 26px;
  height: 26px;
}

.product-card__icon img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-card__icon--logo {
  flex-shrink: 0;
  width: 250px;
  height: auto;
  border-radius: 0;
  background: #fff;
  padding: 0;
  box-sizing: border-box;
}

.product-card__title {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 0.85rem;
  line-height: 1.32;
  letter-spacing: -0.01em;
}

.product-card__body {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.product-card__desc {
  margin: 0 0 15px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.product-card__body .product-card__desc + .product-card__desc {
  margin-top: 0.65rem;
}

.product-card__list {
  margin: 0.5rem 0 0.75rem 1.1rem;
  padding: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.product-card__list li {
  margin-bottom: 0.35rem;
}

.product-card__more.btn {
  margin: 15px 0 0 0;
  margin-top: auto;
  align-self: center;
  width: fit-content;
  justify-content: center;
  text-decoration: none;
  background: linear-gradient(135deg, var(--primary-action) 0%, var(--primary-action-dark) 100%) !important;
  display: inline-block;
  padding: 10px 35px;
}

.product-card__more.btn:hover,
.product-card__more.btn:focus-visible {
  background: linear-gradient(135deg, var(--primary-action) 0%, var(--primary-action-dark) 100%) !important;
  filter: brightness(1.03);
}

/* Why us */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.trust-badge {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(11, 31, 58, 0.1);
  color: var(--primary);
  box-shadow: 0 2px 12px rgba(11, 31, 58, 0.05);
}

.why-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.why-subheading {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  text-align: center;
  max-width: 40rem;
  margin: clamp(1.5rem, 4vw, 2.25rem) auto 1.5rem;
}

.why-grid--six {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .why-grid--six {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-grid--six {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.why-card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 1.15rem;
  row-gap: 0.45rem;
  align-items: start;
  height: 100%;
  min-height: 7.5rem;
  padding: 1.35rem 1.25rem;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11, 31, 58, 0.06);
  box-shadow: var(--shadow);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.why-card:hover {
  border-color: rgba(0, 209, 255, 0.3);
  box-shadow: var(--shadow-hover);
}

.why-card__icon {
  grid-column: 1;
  grid-row: 1 / -1;
  align-self: start;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(145deg, #f5f7fa, #f5f7fa);
  color: #2374b4;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eeeeee;
}

.why-card__icon svg {
  width: 24px;
  height: 24px;
}

.why-card__title {
  grid-column: 2;
  grid-row: 1;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
}

.why-card__text {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Process */
.section--process {
  position: relative;
  overflow: hidden;
}

.section--process::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 55% at 50% -25%, rgba(0, 209, 255, 0.14), transparent 52%),
    radial-gradient(ellipse 50% 45% at 100% 100%, rgba(255, 107, 0, 0.08), transparent 55%);
  pointer-events: none;
}

.section--process .container {
  position: relative;
  z-index: 1;
}

.process-flow {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .process-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
  }

  .process-flow__item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: min(100%, calc(50% - 0.575rem));
    margin-inline: auto;
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .process-flow {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
  }

  .process-flow__item:last-child:nth-child(odd) {
    grid-column: auto;
    max-width: none;
    margin-inline: 0;
    width: auto;
  }
}

.process-flow__item {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 1.35rem 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.process-flow__item:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 209, 255, 0.35);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(0, 209, 255, 0.12);
}

.process-flow__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.process-flow__num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--accent);
}

.process-flow__body {
  flex: 1;
  min-height: 0;
}

.process-flow__title {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.55rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.process-flow__text {
  margin: 0;
  font-size: clamp(0.82rem, 1.2vw, 0.9rem);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

/* Industries */
.industry-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .industry-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .industry-grid--six {
    grid-template-columns: repeat(3, 1fr);
  }
}

.industry-card {
  display: block;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow);
  border: 1px solid rgba(11, 31, 58, 0.08);
  color: inherit;
  text-decoration: none;
}

.industry-card img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-card:hover img {
  transform: scale(1.08);
}

.industry-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 31, 58, 0.1) 0%,
    transparent 35%,
    rgba(11, 31, 58, 0.65) 72%,
    rgba(11, 31, 58, 0.96) 100%
  );
  pointer-events: none;
}

.industry-card__title {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  z-index: 1;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.industry-grid--six .industry-card__title {
  font-size: 0.82rem;
  line-height: 1.4;
}

@media (min-width: 640px) {
  .industry-grid--six .industry-card__title {
    font-size: 0.9rem;
  }
}

@media (min-width: 1024px) {
  .industry-grid--six .industry-card__title {
    font-size: 0.95rem;
    left: 1.15rem;
    right: 1.15rem;
    bottom: 1.15rem;
  }
}

/* Map */
.map-wrap {
  margin-top: 2.5rem;
}

.map-panel {
  display: grid;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(11, 31, 58, 0.1);
  background: linear-gradient(145deg, #f8fafc 0%, #eef2f7 48%, #fff 100%);
  box-shadow:
    0 4px 24px rgba(11, 31, 58, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

@media (min-width: 900px) {
  .map-panel {
    grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.65fr);
    align-items: stretch;
  }
}

.map-panel__visual {
  position: relative;
  min-height: 220px;
  background: linear-gradient(180deg, #071426 0%, #0b1f3a 100%);
}

.map-panel__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(0, 209, 255, 0.06) 0%, transparent 42%, rgba(255, 107, 0, 0.04) 100%);
}

.world-map {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(380px, 52vh);
}

.map-pin__ripple {
  transform-origin: center;
  transform-box: fill-box;
  animation: mapRipple 2.6s ease-out infinite;
  animation-delay: var(--delay, 0s);
}

.map-pin__halo {
  transform-origin: center;
  transform-box: fill-box;
  animation: mapHalo 2.6s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes mapRipple {
  0% {
    opacity: 0.45;
    transform: scale(0.72);
  }
  100% {
    opacity: 0;
    transform: scale(1.65);
  }
}

@keyframes mapHalo {
  0%,
  100% {
    opacity: 0.22;
    transform: scale(1);
  }
  50% {
    opacity: 0.38;
    transform: scale(1.12);
  }
}

.map-panel__meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 1.35rem 1.25rem 1.5rem;
  background: linear-gradient(180deg, #fff 0%, #fafbfc 100%);
  border-top: 1px solid rgba(11, 31, 58, 0.07);
}

@media (min-width: 900px) {
  .map-panel__meta {
    border-top: none;
    border-left: 1px solid rgba(11, 31, 58, 0.08);
    padding: 1.5rem 1.35rem;
  }
}

.map-panel__label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-action);
}

.map-legend {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.map-legend__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(11, 31, 58, 0.07);
  box-shadow: 0 1px 4px rgba(11, 31, 58, 0.04);
}

.map-legend__code {
  flex-shrink: 0;
  min-width: 2.25rem;
  padding: 0.2rem 0.4rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  color: var(--primary);
  background: linear-gradient(180deg, rgba(0, 209, 255, 0.12) 0%, rgba(0, 209, 255, 0.05) 100%);
  border-radius: 6px;
  border: 1px solid rgba(0, 209, 255, 0.35);
}

.map-legend__name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.35;
}

.global-list-plain {
  font-weight: 600;
  color: var(--primary);
  margin: 0 auto 1rem !important;
}

.global-bullets {
  list-style: none;
  margin: 0 auto 2rem;
  padding: 0;
  max-width: 420px;
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.global-bullets li {
  padding-left: 0;
}

.global-bullets li::before {
  content: "• ";
  color: var(--accent);
  font-weight: bold;
}


/* Benefits */
.benefits-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid--six {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.6rem 1.5rem;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11, 31, 58, 0.06);
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}

.benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.benefit-item__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(34, 116, 180, 0.14), rgba(0, 209, 255, 0.15));
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.benefit-item__icon svg {
  width: 24px;
  height: 24px;
}

.benefit-item__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 0.5rem;
}

.benefit-item__text {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
}

.benefit-metric {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--primary-action), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.benefit-metric--static {
  background: none;
  color: var(--primary);
  -webkit-background-clip: unset;
  background-clip: unset;
}

.benefit-metric-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
  line-height: 1.4;
}

/* CTA */
.cta-block {
  position: relative;
  padding: clamp(4rem, 10vw, 6rem) var(--container-pad);
  text-align: center;
  overflow: hidden;
}

.cta-block__bg {
  position: absolute;
  inset: 0;
  background: url("../assets/images/Strengthen-bg.jpg") center / cover no-repeat;
  transform: scale(1.05);
}

.cta-block__blur {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(11, 31, 58, 0.82);
}

.cta-block__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-block__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  margin: 0 auto 1.25rem;
  max-width: 28ch;
}

.cta-block__text {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  max-width: 58ch;
  margin: 0 auto 1rem;
  line-height: 1.65;
}

.cta-block__text--emphasis {
  font-weight: 600;
  margin-bottom: 1.75rem;
}

.cta-block__list {
  list-style: none;
  margin: 0 auto 1.5rem;
  padding: 1rem 1.25rem;
  max-width: 28rem;
  width: 100%;
  text-align: left;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.02rem;
  line-height: 1.65;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}

.cta-block__list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
}

.cta-block__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(11, 31, 58, 0.08);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(11, 31, 58, 0.04);
  transition: box-shadow 0.3s;
}

.faq-item[open] {
  box-shadow: var(--shadow);
}

.faq-item__summary {
  padding: 1.2rem 1.35rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--primary);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 2.75rem;
  transition: background 0.2s;
}

.faq-item__summary:hover {
  background: rgba(11, 31, 58, 0.03);
}

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

.faq-item__summary::after {
  content: "";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--primary-action);
  border-bottom: 2px solid var(--primary-action);
  transform: translateY(-60%) rotate(45deg);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item[open] .faq-item__summary::after {
  transform: translateY(-20%) rotate(-135deg);
}

.faq-item__body {
  padding: 0 1.35rem 1.25rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  animation: faqOpen 0.35s ease;
}

@keyframes faqOpen {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #050d18 0%, var(--primary) 100%);
  color: rgba(255, 255, 255, 0.85);
  padding: 4rem var(--container-pad) 0;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.65);
  max-width: 32ch;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin: 0 0 1rem;
}

.footer-links,
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.5rem;
}

.footer-links a,
.footer-contact a {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--primary-action);
}

.footer-note {
  font-size: 0.8rem;
  opacity: 0.65;
}

.social-row {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: var(--touch);
  height: var(--touch);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.social-icon:hover {
  background: var(--primary-action);
  color: #fff;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal a:hover {
  color: var(--accent);
}

/* ----- Contact section (all pages) ----- */
.contact-section {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

.contact-section__intro {
  max-width: 40rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.contact-aside__global {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0;
  padding: 0 0 1.1rem;
  border-bottom: 1px solid rgba(11, 31, 58, 0.08);
  text-align: left;
}

.contact-aside__global-headline {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  line-height: 1.35;
}

.contact-aside__global-text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.contact-aside__regions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.15rem 0 0;
}

.contact-aside__region {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--primary);
  background: rgba(11, 31, 58, 0.06);
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: 6px;
  line-height: 1.2;
}

.contact-section__layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .contact-section__layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
    gap: 2.5rem;
  }
}

.contact-aside__card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.35rem 1.25rem 1.4rem;
  border-radius: var(--radius-lg, 12px);
  height: 100%;
  background: linear-gradient(165deg, #102a45 0%, var(--primary) 45%, #071018 100%);
  border: 1px solid rgba(0, 209, 255, 0.2);
}

.contact-aside__card .contact-aside__title {
  color: #f0f4f8;
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.contact-aside__card .contact-aside__global {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.contact-aside__card .contact-aside__global-headline {
  color: #f8fafc;
}

.contact-aside__card .contact-aside__global-text {
  color: rgba(248, 250, 252, 0.76);
}

.contact-aside__card .contact-aside__region {
  background: rgba(0, 209, 255, 0.12);
  border-color: rgba(0, 209, 255, 0.3);
  color: var(--accent);
}

.contact-aside__card .contact-aside__label {
  color: rgba(255, 255, 255, 0.52);
}

.contact-aside__card .contact-aside__value {
  color: rgba(255, 255, 255, 0.95);
}

.contact-aside__card a.contact-aside__value {
  color: var(--accent);
}

.contact-aside__card a.contact-aside__value:hover {
  color: #fff;
}

.contact-aside__card .contact-aside__value a {
  color: var(--accent);
}

.contact-aside__card .contact-aside__value a:hover {
  color: #fff;
}

.contact-aside__card .contact-aside__note {
  color: rgba(255, 255, 255, 0.48);
}

.contact-aside__title {
  font-family: var(--font-display, "Poppins", sans-serif);
  font-size: 1.12rem;
  font-weight: 600;
  margin: 0;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(11, 31, 58, 0.08);
  color: var(--text);
  line-height: 1.3;
}

.contact-aside__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.contact-aside__row {
  display: grid;
  grid-template-columns: minmax(3.25rem, 4.25rem) minmax(0, 1fr);
  gap: 0.5rem 0.85rem;
  align-items: start;
}

.contact-aside__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(90, 101, 119, 0.88);
  padding-top: 0.2rem;
  line-height: 1.3;
}

.contact-aside__value {
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--text);
  word-break: break-word;
}

a.contact-aside__value {
  color: var(--primary-action);
  text-decoration: none;
}

a.contact-aside__value:hover {
  text-decoration: underline;
}

.contact-aside__value a {
  color: var(--primary-action);
  font-weight: 500;
  text-decoration: none;
}

.contact-aside__value a:hover {
  text-decoration: underline;
}

.contact-aside__note {
  display: inline;
  margin-left: 0.25rem;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-muted);
}

@media (max-width: 420px) {
  .contact-aside__row {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .contact-aside__label {
    padding-top: 0;
  }
}

.contact-form {
  margin: 0;
}

.contact-form__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .contact-form__grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-field--full {
    grid-column: 1 / -1;
  }
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-field__label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}

.contact-field__req {
  color: var(--accent, #5ecfff);
}

.contact-field__opt {
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.contact-field__input {
  width: 100%;
  box-sizing: border-box;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  border: 1px solid rgba(11, 31, 58, 0.14);
  background: #fff;
  color: var(--text);
  font: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-field__input::placeholder {
  color: rgba(90, 101, 119, 0.5);
}

.contact-field__input:focus {
  outline: none;
  border-color: rgba(94, 207, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(94, 207, 255, 0.15);
}

.contact-field__select {
  cursor: pointer;
  appearance: none;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235a6577' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2rem;
}

.contact-field__textarea {
  min-height: 7rem;
  resize: vertical;
}

.contact-form__actions {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: flex-start;
}

.contact-form__submit {
  min-width: 10rem;
}

.contact-form__note {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--text-muted);
  max-width: 26rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Contact page (contact.html) */
.page-contact .contact-page-hero {
  padding: calc(var(--header-h) + clamp(1.75rem, 4vw, 2.75rem)) 0 clamp(1.5rem, 3vw, 2.25rem);
  background: linear-gradient(180deg, rgba(11, 31, 58, 0.06) 0%, rgba(245, 247, 250, 0.5) 45%, transparent 100%);
  border-bottom: 1px solid rgba(11, 31, 58, 0.07);
}

.page-contact .contact-page-hero__lead {
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
}

.page-contact .contact-page-hero .sf-section-label--center {
  text-align: center;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .stat-badge,
  .map-pin__ripple,
  .map-pin__halo {
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ----- SparkFlow product page ----- */
.page-sparkflow .sf-hero {
  position: relative;
  min-height: min(92vh, 880px);
  padding: calc(var(--header-h) + 2rem) 0 3rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-sparkflow .sf-hero__inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.page-sparkflow .sf-hero__content {
  min-width: 0;
}

@media (min-width: 900px) {
  .page-sparkflow .sf-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
    gap: 2.5rem 3rem;
    align-items: center;
  }

  .page-sparkflow .sf-hero .sf-statbar {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin: 0;
    align-self: stretch;
  }

  .page-sparkflow .sf-hero__actions {
    margin-bottom: 0;
  }
}

.sf-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #071426 0%, var(--primary) 42%, #0d2847 100%);
}

.page-sparkflow .sf-hero__bg {
  background-color: #071426;
  background-image:
    linear-gradient(135deg, rgba(7, 20, 38, 0.9) 0%, rgba(11, 31, 58, 0.82) 42%, rgba(13, 40, 71, 0.92) 100%),
    url("../assets/images/sparkflow-banner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-smartlearn .sf-hero__bg {
  background-color: #071426;
  background-image:
    linear-gradient(135deg, rgba(7, 20, 38, 0.9) 0%, rgba(11, 31, 58, 0.82) 42%, rgba(13, 40, 71, 0.92) 100%),
    url("../assets/images/smartlearn-banner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.sf-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(0, 209, 255, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(255, 107, 0, 0.08), transparent 50%);
  pointer-events: none;
}

.sf-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-wide);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
  box-sizing: border-box;
}

.sf-doc-head {
  padding: 1.25rem var(--container-pad) 0;
  max-width: var(--container-wide);
  margin: 0 auto;
  text-align: center;
}

.sf-doc-head__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--primary);
}

.sf-doc-head__subtitle {
  margin: 0.35rem 0 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
}

.sf-doc-head__meta {
  margin: 0.5rem 0 0;
  font-size: 0.78rem;
  color: rgba(11, 31, 58, 0.45);
}

.sf-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 209, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

.sf-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  max-width: 18ch;
}

.sf-hero__lead {
  margin: 0 0 1.75rem;
  max-width: 58ch;
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.sf-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.btn-ghost-sf {
  border: 2px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.btn-ghost-sf:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.65);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(11, 31, 58, 0.06);
  border-color: var(--primary);
}

.sf-statbar {
  display: grid;
  gap: 1rem;
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .sf-statbar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .sf-statbar {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.sf-statbar__line {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.45;
}

.sf-statbar__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  margin-top: 0.08rem;
  color: var(--accent);
  opacity: 0.95;
}

.sf-statbar__icon svg {
  width: 100%;
  height: 100%;
}

.sf-statbar__text {
  flex: 1;
  min-width: 0;
}

.sf-section-label {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-action);
  text-align: center;
  margin: 0 0 0.65rem;
}

.sf-section-label--left {
  text-align: left;
}

.sf-section-label--light {
  color: var(--accent);
}

.sf-feature-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .sf-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.sf-feature-card {
  padding: 1.5rem 1.35rem;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11, 31, 58, 0.08);
  box-shadow: var(--shadow);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.sf-feature-card:hover {
  border-color: rgba(0, 209, 255, 0.25);
  box-shadow: var(--shadow-hover);
}

.sf-feature-card__head {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.sf-feature-card__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.1rem 0 0;
  color: #2676b5;
}

.sf-feature-card__icon svg {
  width: 26px;
  height: 26px;
  display: block;
}

.sf-feature-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 0.65rem;
  line-height: 1.3;
}

.sf-feature-card__head .sf-feature-card__title {
  margin-bottom: 0;
  flex: 1;
  min-width: 0;
}

.sf-feature-card__text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.sf-band__inner {
  text-align: center;
}

.sf-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.sf-band__actions--split {
  justify-content: center;
}

.sf-steps {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.sf-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.15rem;
  align-items: start;
  padding: 1.35rem 1.25rem;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11, 31, 58, 0.08);
  box-shadow: var(--shadow);
}

.sf-step__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--accent);
  line-height: 1;
}

.sf-step__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 0.45rem;
}

.sf-step__body p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* How it works — SparkFlow “Structured. Transparent. Effortless.” */
.sf-section-how {
  position: relative;
  overflow: hidden;
}

.sf-section-how::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 55% at 50% -25%, rgba(0, 209, 255, 0.09), transparent 52%),
    linear-gradient(180deg, #f6f8fb 0%, #fff 40%, #fafbfc 100%);
}

.sf-section-how .container {
  position: relative;
  z-index: 1;
}

.sf-how__head {
  max-width: 40rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.sf-how__head .sf-section-label {
  margin-bottom: 0.55rem;
}

.sf-how__head .section-title--center {
  margin-bottom: clamp(0.85rem, 2vw, 1.2rem);
}

.sf-how__head .section-title--center::after {
  content: "";
  display: block;
  width: 3rem;
  height: 3px;
  margin: 0.95rem auto 0;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary-action));
}

.sf-how__head .section-intro--center {
  margin-bottom: 0;
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
}

.sf-section-how .sf-steps--process {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 2.25rem;
  max-width: min(72rem, 100%);
  gap: 1rem;
}

.sf-section-how .sf-steps--process .sf-step {
  gap: 1.35rem;
  padding: 1.45rem 1.35rem;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(11, 31, 58, 0.07);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(11, 31, 58, 0.05);
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.sf-section-how .sf-steps--process .sf-step:hover {
  border-color: rgba(0, 209, 255, 0.22);
  box-shadow: 0 10px 32px rgba(11, 31, 58, 0.09);
}

.sf-section-how .sf-step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 50%;
  background: linear-gradient(160deg, #fff 0%, #f0f4fa 100%);
  border: 2px solid rgba(0, 209, 255, 0.4);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--primary);
  line-height: 1;
  flex-shrink: 0;
  box-shadow:
    0 2px 8px rgba(0, 209, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.sf-section-how .sf-step:nth-child(2) .sf-step__num {
  border-color: rgba(34, 116, 180, 0.42);
  box-shadow:
    0 2px 8px rgba(34, 116, 180, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.sf-section-how .sf-step:nth-child(3) .sf-step__num {
  border-color: rgba(34, 116, 180, 0.42);
  box-shadow:
    0 2px 8px rgba(34, 116, 180, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.sf-section-how .sf-step:nth-child(4) .sf-step__num {
  border-color: rgba(255, 107, 0, 0.35);
  box-shadow:
    0 2px 8px rgba(255, 107, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.sf-section-how .sf-step:nth-child(5) .sf-step__num {
  border-color: rgba(0, 209, 255, 0.45);
}

.sf-section-how .sf-step__title {
  font-size: 1.08rem;
  line-height: 1.3;
}

.sf-section-how .sf-step__body p {
  font-size: 0.9rem;
  line-height: 1.6;
}

@media (min-width: 640px) {
  .sf-section-how .sf-steps--process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
  }
}

@media (min-width: 720px) {
  .sf-section-how .sf-steps--process .sf-step {
    padding: 1.55rem 1.5rem;
  }
}

/* Use cases — “One Platform. Every HSE Operation.” */
.section.section--alt.sf-section--usecases {
  position: relative;
  overflow: hidden;
  background: transparent;
}

.sf-section--usecases::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 100% 60% at 50% 0%, rgba(0, 209, 255, 0.06), transparent 55%),
    linear-gradient(180deg, #f8fafc 0%, #fff 38%, #f9fafb 100%);
}

.sf-section--usecases::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image: radial-gradient(rgba(11, 31, 58, 0.06) 1px, transparent 1px);
  background-size: 20px 20px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 85%);
}

.sf-section--usecases .container {
  position: relative;
  z-index: 1;
}

.sf-usecases__head {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}

.sf-usecases__head .sf-section-label {
  margin-bottom: 0.65rem;
}

.sf-usecases__head .section-title--center {
  margin-bottom: clamp(0.85rem, 2.2vw, 1.25rem);
}

.sf-usecases__head .section-title--center::after {
  content: "";
  display: block;
  width: 2.75rem;
  height: 3px;
  margin: 0.9rem auto 0;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary-action));
}

.sf-usecases__head .section-intro--center {
  margin-bottom: clamp(1.5rem, 3.5vw, 2.25rem);
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
}

.sf-usecase-grid {
  display: grid;
  gap: 1.15rem;
  margin-top: 0;
}

@media (min-width: 640px) {
  .sf-usecase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

@media (min-width: 1100px) {
  .sf-usecase-grid {
    gap: 1.35rem;
  }
}

.sf-usecase-card {
  position: relative;
  padding: 1.35rem 1.2rem 1.35rem 1.35rem;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11, 31, 58, 0.07);
  box-shadow: 0 1px 3px rgba(11, 31, 58, 0.04);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  overflow: hidden;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.sf-usecase-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  bottom: 1rem;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, var(--accent) 0%, var(--primary-action) 100%);
}

.sf-usecase-card:nth-child(3n + 2)::before {
  background: linear-gradient(180deg, var(--primary-action) 0%, #1e8bc4 100%);
}

.sf-usecase-card:nth-child(3n + 3)::before {
  background: linear-gradient(180deg, #2488c2 0%, var(--secondary) 100%);
}

.sf-usecase-card:hover {
  border-color: rgba(0, 209, 255, 0.22);
  box-shadow:
    0 8px 28px rgba(11, 31, 58, 0.08),
    0 0 0 1px rgba(0, 209, 255, 0.1);
  transform: translateY(-3px);
}

.sf-usecase-card:focus-within {
  border-color: rgba(0, 209, 255, 0.28);
  box-shadow: 0 8px 28px rgba(11, 31, 58, 0.08);
}

@media (prefers-reduced-motion: reduce) {
  .sf-usecase-card:hover,
  .sf-usecase-card:focus-within {
    transform: none;
  }
}

.sf-usecase-card__cat {
  margin: 0;
  align-self: flex-start;
  padding: 0.28rem 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--primary-action);
  background: rgba(34, 116, 180, 0.1);
  border: 1px solid rgba(34, 116, 180, 0.18);
  border-radius: 999px;
}

.sf-usecase-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
  line-height: 1.32;
  letter-spacing: -0.01em;
}

.sf-usecase-card__text {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.58;
  flex: 1;
}

.sf-usecase-card__tags {
  margin: 0.15rem 0 0;
  padding: 0.7rem 0.75rem;
  border-radius: var(--radius);
  border: none;
  border-top: 1px solid rgba(11, 31, 58, 0.06);
  background: rgba(11, 31, 58, 0.025);
  font-size: 0.72rem;
  line-height: 1.5;
  color: rgba(11, 31, 58, 0.48);
}

.sf-ai-figure {
  position: relative;
  margin: 0 auto 2.5rem;
  max-width: min(56rem, 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 4px 24px rgba(11, 31, 58, 0.1),
    0 0 0 1px rgba(11, 31, 58, 0.06);
  background: linear-gradient(145deg, #f0f4f9 0%, #fff 50%);
  aspect-ratio: 16 / 9;
}

.sf-ai-figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-position: center;
}

.sf-ai-figure + .sf-ai-grid {
  margin-top: 0;
}

.sf-ai-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 960px) {
  .sf-ai-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 1.5rem;
  }
}

.sf-ai-panel__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 0.65rem;
}

.sf-ai-panel__text {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.sf-chat {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  border: 1px solid rgba(11, 31, 58, 0.08);
}

.sf-chat__row {
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-size: 0.88rem;
  line-height: 1.5;
}

.sf-chat__row--user {
  background: rgba(11, 31, 58, 0.06);
  margin-right: 1.5rem;
}

.sf-chat__row--ai {
  background: rgba(0, 209, 255, 0.08);
  border: 1px solid rgba(0, 209, 255, 0.2);
  margin-left: 1.5rem;
}

.sf-chat__row p {
  margin: 0.35rem 0 0;
}

.sf-chat__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--primary);
  opacity: 0.85;
}

.sf-capa-list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* AI & CAPA — SparkFlow section treatment */
.sf-section-ai {
  position: relative;
  overflow: hidden;
}

.sf-section-ai::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 85% 55% at 50% -15%, rgba(0, 209, 255, 0.1), transparent 52%),
    radial-gradient(ellipse 50% 40% at 100% 40%, rgba(34, 116, 180, 0.06), transparent 50%),
    radial-gradient(ellipse 45% 35% at 0% 70%, rgba(255, 107, 0, 0.04), transparent 48%);
}

.sf-section-ai .container {
  position: relative;
  z-index: 1;
}

.sf-section-ai .sf-ai-section__head {
  max-width: 42rem;
  margin: 0 auto 1.75rem;
  text-align: center;
}

.sf-section-ai .sf-ai-section__head .section-title--center::after {
  content: "";
  display: block;
  width: 3.25rem;
  height: 4px;
  margin: 1rem auto 0;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--accent), var(--primary-action));
}

.sf-section-ai .sf-ai-figure {
  margin-bottom: 2rem;
  max-height: min(420px, 52vw);
  aspect-ratio: 16 / 9;
}

.sf-section-ai .sf-ai-grid {
  margin-top: 0;
}

.sf-section-ai .sf-ai-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem 1.35rem 1.45rem;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11, 31, 58, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.sf-section-ai .sf-ai-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.sf-section-ai .sf-ai-panel--chat::before {
  background: linear-gradient(90deg, var(--accent), var(--primary-action));
}

.sf-section-ai .sf-ai-panel--capa::before {
  background: linear-gradient(90deg, var(--primary-action), var(--secondary));
}

.sf-section-ai .sf-ai-panel:hover {
  border-color: rgba(0, 209, 255, 0.22);
  box-shadow: var(--shadow-hover);
}

.sf-section-ai .sf-ai-panel .sf-section-label--left {
  margin-bottom: 0.5rem;
}

.sf-section-ai .sf-ai-panel .sf-chat {
  flex: 1;
  margin-top: 0.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(11, 31, 58, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.sf-section-ai .sf-chat__row--user {
  margin-right: 0.75rem;
  border-radius: 14px 14px 14px 4px;
}

.sf-section-ai .sf-chat__row--ai {
  margin-left: 0.75rem;
  border-radius: 14px 14px 4px 14px;
}

.sf-section-ai .sf-capa-list {
  margin-top: 0.35rem;
  padding: 0.85rem 0 0;
  border-top: 1px solid rgba(11, 31, 58, 0.07);
}

.sf-section-ai .sf-capa-list li {
  position: relative;
  padding-left: 1.45rem;
  margin-bottom: 0.5rem;
}

.sf-section-ai .sf-capa-list li:last-child {
  margin-bottom: 0;
}

.sf-section-ai .sf-capa-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--primary-action), var(--accent));
  box-shadow: 0 0 0 2px rgba(0, 209, 255, 0.2);
}

.sf-capa-list li {
  margin-bottom: 0.4rem;
}

.sf-testimonial-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (min-width: 900px) {
  .sf-testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.sf-quote {
  margin: 0;
  padding: 1.5rem 1.35rem;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11, 31, 58, 0.08);
  box-shadow: var(--shadow);
}

.sf-quote__stars {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  color: var(--primary-action);
}

.sf-quote__text {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.sf-quote__footer {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.sf-quote__name {
  font-style: normal;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary);
}

.sf-quote__role {
  font-size: 0.82rem;
  color: rgba(11, 31, 58, 0.55);
}

.sf-final-cta {
  padding: clamp(3.5rem, 8vw, 5.5rem) var(--container-pad);
  background: linear-gradient(180deg, #fff 0%, #eef2f7 100%);
}

.sf-final-cta__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.sf-final-cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 1rem;
  line-height: 1.25;
}

.sf-final-cta__text {
  margin: 0 0 1.75rem;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.sf-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.sf-final-cta__note {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(11, 31, 58, 0.55);
}

.sf-footer-product {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
}

.page-sparkflow section[id] {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

/* ----- SmartLearn product page ----- */
.page-smartlearn .sf-hero {
  position: relative;
  min-height: min(92vh, 880px);
  padding: calc(var(--header-h) + 2rem) 0 3rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-smartlearn .sf-hero__title {
  max-width: min(42rem, 100%);
}

.page-smartlearn .sf-section-label--center {
  text-align: center;
}

.page-smartlearn .sl-container--narrow {
  width: 100%;
  max-width: min(42rem, 100%);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  box-sizing: border-box;
}

.page-smartlearn .sl-container--narrow .sl-bullets--center {
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}

.page-smartlearn .sl-glass-card {
  margin-top: 1.5rem;
  padding: 1.5rem 1.35rem 1.45rem;
  text-align: left;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.95) 0%, #fff 50%, #f8fafc 100%);
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: var(--radius-lg);
}

.page-smartlearn .sl-glass-card .sl-bullets--center {
  margin-bottom: 0;
}

.page-smartlearn .sl-glass-card + .section-intro,
.page-smartlearn .sl-glass-card + .sl-emphasis {
  margin-top: 1.5rem;
}

/* SmartLearn — “HSE Leaders” challenge section */
/* SmartLearn — “Built for HSE Leaders…” (hero + overlapping card) */
.page-smartlearn .sl-section--challenge {
  background: linear-gradient(180deg, #e6ecf4 0%, #f2f5f9 55%, #fafbfc 100%);
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
}

.page-smartlearn .sl-challenge {
  max-width: min(56rem, 100%);
  margin: 0 auto;
}

.page-smartlearn .sl-challenge__hero {
  position: relative;
  text-align: center;
  padding: clamp(2rem, 4.5vw, 2.85rem) clamp(1.25rem, 3vw, 2rem) clamp(2.5rem, 5vw, 3.25rem);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% -30%, rgba(0, 209, 255, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(255, 107, 0, 0.08), transparent 45%),
    linear-gradient(155deg, #0b1f3a 0%, #123a5c 52%, #0d2847 100%);
  color: #fff;
}

.page-smartlearn .sl-challenge__hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 3.5rem;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--accent), var(--primary-action), var(--secondary));
}

.page-smartlearn .sl-challenge__eyebrow {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.page-smartlearn .sl-challenge__title {
  margin: 0 auto 1rem;
  max-width: min(36rem, 100%);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.05rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #fff;
  text-wrap: balance;
}

.page-smartlearn .sl-challenge__lead {
  margin: 0 auto;
  max-width: 40ch;
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
}

.page-smartlearn .sl-challenge__content {
  position: relative;
  z-index: 1;
  margin-top: -1.35rem;
  padding: clamp(1.65rem, 3vw, 2.1rem) clamp(1.25rem, 3vw, 2rem) clamp(1.35rem, 2.5vw, 1.75rem);
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11, 31, 58, 0.09);
  box-shadow: 0 20px 50px rgba(11, 31, 58, 0.1);
}

.page-smartlearn .sl-challenge__subhead {
  margin: 0 0 1rem;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.02em;
  text-align: center;
}

.page-smartlearn .sl-challenge-grid {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 0.65rem;
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .page-smartlearn .sl-challenge-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }
}

.page-smartlearn .sl-challenge-grid__item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.8rem 0.9rem;
  background: linear-gradient(160deg, #f9fafb 0%, #fff 100%);
  border: 1px solid rgba(11, 31, 58, 0.07);
  border-radius: var(--radius);
  border-left: 3px solid rgba(255, 107, 0, 0.65);
}

.page-smartlearn .sl-challenge-grid__icon {
  flex-shrink: 0;
  margin-top: 0.05rem;
  color: var(--secondary);
}

.page-smartlearn .sl-challenge-grid__icon svg {
  display: block;
  width: 1.3rem;
  height: 1.3rem;
}

.page-smartlearn .sl-challenge-grid__text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.45;
}

.page-smartlearn .sl-challenge__footer {
  margin: 0;
  padding: 0.85rem 1rem;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.45;
  background: linear-gradient(135deg, rgba(0, 209, 255, 0.1) 0%, rgba(34, 116, 180, 0.08) 100%);
  border-radius: var(--radius);
  border: 1px solid rgba(0, 209, 255, 0.22);
}

/* SmartLearn — “What is SmartLearn?” overview */
.page-smartlearn .sl-section--overview {
  background: linear-gradient(180deg, #fff 0%, #f4f7fb 50%, #fff 100%);
}

.page-smartlearn .sl-overview {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(11, 31, 58, 0.09);
  background: #fff;
  box-sizing: border-box;
}

.page-smartlearn .sl-overview__head {
  padding: clamp(1.75rem, 4vw, 2.35rem) clamp(1.25rem, 3vw, 2rem) 1.35rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(0, 209, 255, 0.07) 0%, rgba(255, 255, 255, 0.98) 100%);
  border-bottom: 1px solid rgba(11, 31, 58, 0.07);
}

.page-smartlearn .sl-overview__eyebrow {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-action);
}

.page-smartlearn .sl-overview__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--primary);
}

.page-smartlearn .sl-overview__subhead {
  margin: 0 auto;
  max-width: 34rem;
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  font-weight: 600;
  color: var(--primary-action);
  line-height: 1.45;
}

.page-smartlearn .sl-overview__head::after {
  content: "";
  display: block;
  width: 3rem;
  height: 3px;
  margin: 1.15rem auto 0;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary-action));
}

.page-smartlearn .sl-overview__split {
  display: grid;
  gap: 1.5rem;
  align-items: start;
  padding: clamp(1.5rem, 3.5vw, 2.25rem) clamp(1.25rem, 3vw, 2rem);
}

@media (min-width: 900px) {
  .page-smartlearn .sl-overview__split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
    gap: 2rem;
    align-items: stretch;
  }
}

.page-smartlearn .sl-overview__media {
  margin: 0;
}

.page-smartlearn .sl-overview__media picture {
  display: block;
  width: 100%;
}

.page-smartlearn .sl-overview__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 4 / 3;
  max-height: min(380px, 50vh);
}

.page-smartlearn .sl-overview__body {
  padding: 0;
  min-width: 0;
}

.page-smartlearn .sl-overview__intro {
  margin: 0 0 1.1rem;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--primary);
  text-align: center;
  letter-spacing: 0.02em;
}

.page-smartlearn .sl-overview-pillars {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 520px) {
  .page-smartlearn .sl-overview-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .page-smartlearn .sl-overview-pillars {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.page-smartlearn .sl-overview-pillars li {
  padding: 1rem 1rem 1rem 1.15rem;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.35;
  background: linear-gradient(145deg, #fff 0%, #f6f8fb 100%);
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
  transition:
    border-color var(--transition),
    transform var(--transition);
}

.page-smartlearn .sl-overview-pillars li:nth-child(3n + 2) {
  border-left-color: var(--primary-action);
}

.page-smartlearn .sl-overview-pillars li:nth-child(3n + 3) {
  border-left-color: var(--secondary);
}

.page-smartlearn .sl-overview-pillars li:hover {
  border-color: rgba(0, 209, 255, 0.25);
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .page-smartlearn .sl-overview-pillars li:hover {
    transform: none;
  }
}

.page-smartlearn .sl-overview__closing {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text-muted);
  text-align: center;
  padding: 1.1rem 1.15rem;
  background: rgba(11, 31, 58, 0.035);
  border-radius: var(--radius);
  border: 1px solid rgba(11, 31, 58, 0.07);
}

.page-smartlearn .sl-section--intro .section-title--center::after {
  content: "";
  display: block;
  width: 3rem;
  height: 3px;
  margin: 1rem auto 0;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary-action));
}

.page-smartlearn .sl-section--intro .sf-section-label {
  margin-bottom: 0.5rem;
}

.page-smartlearn .sl-section--platform {
  position: relative;
  overflow: hidden;
}

.page-smartlearn .sl-section--platform::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 209, 255, 0.09), transparent 50%),
    radial-gradient(ellipse 55% 40% at 100% 30%, rgba(34, 116, 180, 0.06), transparent 48%),
    linear-gradient(180deg, #f4f7fb 0%, #fff 45%, #fafbfc 100%);
}

.page-smartlearn .sl-section--platform .container {
  position: relative;
  z-index: 1;
}

.page-smartlearn .sl-section__head {
  width: 100%;
  max-width: 48rem;
  margin: 0 auto 0.5rem;
  text-align: center;
  box-sizing: border-box;
}

.page-smartlearn .sl-section__head .sf-section-label {
  margin-bottom: 0.5rem;
}

.page-smartlearn .sl-section__head + .sl-numbered-list {
  margin-top: 2.25rem;
}

.page-smartlearn .sl-bullets {
  margin: 0 auto 1rem;
  padding: 0;
  list-style: none;
  max-width: 42rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.page-smartlearn .sl-bullets li {
  margin-bottom: 0.5rem;
  padding-left: 1.35rem;
  position: relative;
}

.page-smartlearn .sl-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary-action));
}

.page-smartlearn .sl-bullets--center {
  text-align: left;
  width: 100%;
  max-width: min(28rem, 100%);
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.page-smartlearn .sl-emphasis {
  display: block;
  width: 100%;
  text-align: center;
  font-weight: 600;
  color: var(--primary);
  font-size: 1.05rem;
}

.page-smartlearn .sl-subhead {
  font-weight: 600;
  color: var(--primary-action);
}

.page-smartlearn .sl-numbered-list {
  counter-reset: sl-cap;
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: min(1100px, 100%);
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 700px) {
  .page-smartlearn .sl-numbered-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }
}

.page-smartlearn .sl-numbered-item {
  counter-increment: sl-cap;
  position: relative;
  min-width: 0;
  padding: 1.45rem 1.35rem 1.4rem 4.35rem;
  background: linear-gradient(180deg, #fff 0%, #fafbfc 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11, 31, 58, 0.08);
  overflow: visible;
  text-align: left;
  transition:
    border-color var(--transition),
    transform var(--transition);
}

.page-smartlearn .sl-numbered-item::before {
  content: counter(sl-cap);
  position: absolute;
  left: 1.2rem;
  top: 1.35rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  line-height: 1;
  background: linear-gradient(145deg, var(--primary-action), var(--logo-blue));
  border-radius: 12px;
}

.page-smartlearn .sl-numbered-item:nth-child(3n + 1)::before {
  background: linear-gradient(145deg, var(--accent), var(--primary-action));
}

.page-smartlearn .sl-numbered-item:nth-child(3n + 2)::before {
  background: linear-gradient(145deg, var(--primary-action), #1e8bc4);
}

.page-smartlearn .sl-numbered-item:nth-child(3n + 3)::before {
  background: linear-gradient(145deg, #2488c2, var(--secondary));
}

.page-smartlearn .sl-numbered-item:hover {
  border-color: rgba(0, 209, 255, 0.22);
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .page-smartlearn .sl-numbered-item:hover {
    transform: none;
  }
}

.page-smartlearn .sl-numbered-item__title {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 0.65rem;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.page-smartlearn .sl-numbered-item__intro {
  margin: 0 0 0.5rem;
  font-weight: 500;
  color: var(--text);
}

.page-smartlearn .sl-numbered-item p:last-child {
  margin-bottom: 0;
}

.page-smartlearn .sl-numbered-item .sl-bullets {
  margin: 0.5rem 0 0.85rem;
  max-width: none;
}

.page-smartlearn .sl-industry-grid,
.page-visual-hse .sl-industry-grid {
  display: grid;
  gap: 1.15rem;
  margin-top: 2rem;
  width: 100%;
  max-width: min(1100px, 100%);
  margin-left: auto;
  margin-right: auto;
  align-items: stretch;
  justify-items: stretch;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .page-smartlearn .sl-industry-grid,
  .page-visual-hse .sl-industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .page-smartlearn .sl-industry-grid,
  .page-visual-hse .sl-industry-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.page-smartlearn .sl-industry-card,
.page-visual-hse .sl-industry-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  min-width: 0;
  height: 100%;
  background: linear-gradient(180deg, #fff 0%, #f6f8fb 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11, 31, 58, 0.08);
  position: relative;
  overflow: hidden;
  transition:
    border-color var(--transition),
    transform var(--transition);
}

.page-smartlearn .sl-industry-card__media,
.page-visual-hse .sl-industry-card__media {
  position: relative;
  flex-shrink: 0;
  aspect-ratio: 16 / 10;
  width: 100%;
  background: rgba(11, 31, 58, 0.06);
}

.page-smartlearn .sl-industry-card__media picture,
.page-visual-hse .sl-industry-card__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.page-smartlearn .sl-industry-card__media img,
.page-visual-hse .sl-industry-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.page-smartlearn .sl-industry-card__media::after,
.page-visual-hse .sl-industry-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(11, 31, 58, 0.35) 100%);
  pointer-events: none;
}

.page-smartlearn .sl-industry-card__body,
.page-visual-hse .sl-industry-card__body {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  text-align: left;
  padding: 1.15rem 1.2rem 1.2rem;
  gap: 0.4rem;
  min-height: 0;
}

.page-smartlearn .sl-industry-card__body::before,
.page-visual-hse .sl-industry-card__body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary-action));
  opacity: 0.9;
}

.page-smartlearn .sl-industry-card:hover,
.page-visual-hse .sl-industry-card:hover {
  border-color: rgba(0, 209, 255, 0.28);
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .page-smartlearn .sl-industry-card:hover,
  .page-visual-hse .sl-industry-card:hover {
    transform: none;
  }
}

.page-smartlearn .sl-industry-card__name,
.page-visual-hse .sl-industry-card__name {
  display: block;
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: -0.01em;
  line-height: 1.3;
  text-align: left;
}

.page-smartlearn .sl-industry-card__meta,
.page-visual-hse .sl-industry-card__meta {
  display: block;
  margin: 0;
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.45;
  text-align: left;
}

/* SmartLearn — “Why SmartLearn?” (list + image, no card chrome) */
.page-smartlearn .sl-why__head {
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
}

.page-smartlearn .sl-why__layout {
  display: grid;
  gap: 1.75rem;
  align-items: start;
  margin-top: 2rem;
}

@media (min-width: 900px) {
  .page-smartlearn .sl-why__layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 2.25rem 2.5rem;
  }
}

.page-smartlearn .sl-why__media {
  margin: 0;
}

.page-smartlearn .sl-why__media picture {
  display: block;
  width: 100%;
}

.page-smartlearn .sl-why__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4 / 3;
  max-height: min(420px, 55vh);
}

.page-smartlearn .sl-why__body {
  min-width: 0;
}

.page-smartlearn .sl-why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: none;
}

.page-smartlearn .sl-why-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin: 0;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(11, 31, 58, 0.08);
  text-align: left;
}

.page-smartlearn .sl-why-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.page-smartlearn .sl-why-item:first-child {
  padding-top: 0;
}

.page-smartlearn .sl-why-item__icon {
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: var(--primary-action);
}

.page-smartlearn .sl-why-item__icon svg {
  display: block;
  width: 1.35rem;
  height: 1.35rem;
}

.page-smartlearn .sl-why-item__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.page-smartlearn .sl-outcomes {
  display: grid;
  gap: 1.15rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .page-smartlearn .sl-outcomes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .page-smartlearn .sl-outcomes {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.page-smartlearn .sl-outcome {
  position: relative;
  padding: 1.35rem 1.2rem 1.35rem 1.5rem;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11, 31, 58, 0.08);
  transition: border-color var(--transition);
}

.page-smartlearn .sl-outcome::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  bottom: 1rem;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--accent), var(--primary-action));
}

.page-smartlearn .sl-outcome:hover {
  border-color: rgba(0, 209, 255, 0.2);
}

.page-smartlearn .sl-outcome__title {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 0.5rem;
}

.page-smartlearn .sl-outcome p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.page-smartlearn .sl-table-wrap {
  margin-top: 2rem;
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11, 31, 58, 0.1);
  background: #fff;
}

.page-smartlearn .sl-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.page-smartlearn .sl-compare-table th,
.page-smartlearn .sl-compare-table td {
  padding: 0.9rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(11, 31, 58, 0.08);
  vertical-align: top;
}

.page-smartlearn .sl-compare-table thead th {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--primary);
  background: rgba(11, 31, 58, 0.04);
}

.page-smartlearn .sl-compare-table thead th:last-child {
  color: var(--primary-action);
  background: rgba(0, 209, 255, 0.08);
}

.page-smartlearn .sl-compare-table tbody tr:nth-child(even) {
  background: rgba(11, 31, 58, 0.02);
}

.page-smartlearn .sl-compare-table tbody tr:last-child th,
.page-smartlearn .sl-compare-table tbody tr:last-child td {
  border-bottom: none;
}

.page-smartlearn .sl-compare-table tbody th[scope="row"] {
  font-weight: 600;
  color: var(--primary);
  width: 28%;
}

.page-smartlearn .sl-compare-table td:last-child {
  font-weight: 500;
  color: var(--primary);
  background: rgba(0, 209, 255, 0.04);
}

.page-smartlearn .sl-container--faq {
  width: 100%;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.page-smartlearn .sl-faq-list {
  margin-top: 1.25rem;
}

.page-smartlearn .sl-faq-section .section-title {
  margin-bottom: 0.35rem;
}

.page-smartlearn .section .section-intro--center {
  max-width: min(40rem, 100%);
  width: 100%;
  box-sizing: border-box;
}

.page-smartlearn .section .section-title--center {
  margin-left: auto;
  margin-right: auto;
  max-width: min(48rem, 100%);
  width: 100%;
  box-sizing: border-box;
}

.page-smartlearn .sf-feature-grid {
  width: 100%;
  box-sizing: border-box;
}

/* SmartLearn — “How SmartLearn Works” (timeline) */
.page-smartlearn .sl-section--how {
  position: relative;
  overflow: hidden;
}

.page-smartlearn .sl-section--how::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 75% 45% at 50% -12%, rgba(0, 209, 255, 0.08), transparent 48%),
    linear-gradient(180deg, #f4f7fb 0%, #fff 45%, #fafbfc 100%);
}

.page-smartlearn .sl-section--how .container {
  position: relative;
  z-index: 1;
}

.page-smartlearn .sl-how__head {
  max-width: 42rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.page-smartlearn .sl-how__sub {
  margin-bottom: 0;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.page-smartlearn .sl-how-steps {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: min(46rem, 100%);
  position: relative;
}

.page-smartlearn .sl-how-steps::before {
  content: "";
  position: absolute;
  left: calc(2.75rem / 2);
  top: 0.75rem;
  bottom: 0.75rem;
  width: 2px;
  transform: translateX(-50%);
  border-radius: 2px;
  background: linear-gradient(180deg, var(--accent), rgba(34, 116, 180, 0.45));
}

.page-smartlearn .sl-how-step {
  position: relative;
  display: grid;
  grid-template-columns: 2.75rem minmax(0, 1fr);
  gap: 1rem 1.15rem;
  align-items: start;
  padding-bottom: 1.35rem;
}

.page-smartlearn .sl-how-step:last-child {
  padding-bottom: 0;
}

.page-smartlearn .sl-how-step__marker {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--primary);
  background: #fff;
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.98);
  line-height: 1;
}

.page-smartlearn .sl-how-step:nth-child(2) .sl-how-step__marker {
  border-color: var(--primary-action);
}

.page-smartlearn .sl-how-step:nth-child(3) .sl-how-step__marker {
  border-color: var(--secondary);
}

.page-smartlearn .sl-how-step:nth-child(4) .sl-how-step__marker {
  border-color: var(--accent);
}

.page-smartlearn .sl-how-step:nth-child(5) .sl-how-step__marker {
  border-color: var(--primary-action);
}

.page-smartlearn .sl-how-step__panel {
  padding: 1.05rem 1.15rem 1.1rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--primary-action);
}

.page-smartlearn .sl-how-step:nth-child(1) .sl-how-step__panel {
  border-left-color: var(--accent);
}

.page-smartlearn .sl-how-step:nth-child(3) .sl-how-step__panel {
  border-left-color: var(--secondary);
}

.page-smartlearn .sl-how-step:nth-child(5) .sl-how-step__panel {
  border-left-color: var(--accent);
}

.page-smartlearn .sl-how-step__title {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.3;
}

.page-smartlearn .sl-how-step__text {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

@media (min-width: 640px) {
  .page-smartlearn .sl-how-step {
    grid-template-columns: 3rem minmax(0, 1fr);
    gap: 1.15rem 1.5rem;
  }

  .page-smartlearn .sl-how-step__marker {
    width: 3rem;
    height: 3rem;
    font-size: 0.78rem;
  }

  .page-smartlearn .sl-how-steps::before {
    left: calc(3rem / 2);
  }
}

.page-smartlearn .faq-item,
.page-smartlearn .faq-item[open] {
  box-shadow: none;
}

@media (max-width: 540px) {
  .page-smartlearn .sf-band__actions--split {
    flex-direction: column;
    align-items: stretch;
  }

  .page-smartlearn .sf-band__actions--split .btn {
    width: 100%;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }
}

.page-smartlearn .sl-subhead.section-intro--center {
  max-width: min(36rem, 100%);
}

.page-smartlearn section[id] {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

/* SmartLearn: use-case cards */
.page-smartlearn .sf-feature-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #fafbfc 100%);
  box-shadow: none;
  transition:
    border-color var(--transition),
    transform var(--transition);
}

.page-smartlearn .sf-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary-action));
  opacity: 0.75;
}

.page-smartlearn .sf-feature-card:hover {
  border-color: rgba(0, 209, 255, 0.25);
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .page-smartlearn .sf-feature-card:hover {
    transform: none;
  }
}

.page-smartlearn #use-cases .section-title--center {
  margin-bottom: 0.5rem;
}

.page-smartlearn #use-cases .sf-feature-grid {
  margin-top: 2rem;
}

/* ==========================================================================
   Smart Hire Desk — smart-hire-desk.html
   ========================================================================== */

body.page-smart-hire-desk {
  font-family: var(--shd-font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--shd-text);
  background: var(--shd-bg);
}

.page-smart-hire-desk #shd-main a:not(.shd-btn):not(.btn):not(.brand) {
  color: var(--shd-primary);
  text-decoration: none;
}

.page-smart-hire-desk #shd-main a:not(.shd-btn):not(.btn):not(.brand):hover {
  text-decoration: underline;
}

.shd-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.1rem, 4vw, 1.75rem);
}

/* SHD: Buttons */
.shd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.25rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  text-decoration: none;
}

.shd-btn:focus-visible {
  outline: 2px solid var(--shd-primary);
  outline-offset: 2px;
}

.shd-btn--primary {
  background: var(--shd-gradient);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
}

.shd-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shd-shadow-hover);
  text-decoration: none;
  color: #fff;
}

.shd-btn--secondary {
  background: var(--shd-surface);
  color: var(--shd-primary);
  border: 1px solid rgba(37, 99, 235, 0.25);
  box-shadow: var(--shd-shadow);
}

.shd-btn--secondary:hover {
  background: #f8fafc;
  transform: translateY(-1px);
  text-decoration: none;
}

.shd-btn--ghost {
  background: transparent;
  color: var(--shd-primary);
  border: 1px solid transparent;
  padding: 0.5rem 0.75rem;
}

.shd-btn--ghost:hover {
  background: rgba(37, 99, 235, 0.06);
  text-decoration: none;
}

.shd-btn--lg {
  padding: 0.85rem 1.5rem;
  font-size: 0.95rem;
  border-radius: 12px;
}

@media (prefers-reduced-motion: reduce) {
  .shd-btn:hover {
    transform: none;
  }
}

/* SHD: Sections */
.shd-section {
  padding: clamp(3rem, 8vw, 5.5rem) 0;
  position: relative;
}

.shd-section--tint {
  background: var(--shd-gradient-soft);
}

.shd-section--dark {
  background: linear-gradient(155deg, #0f172a 0%, #1e1b4b 55%, #134e4a 100%);
  color: #e2e8f0;
}

.shd-section__label {
  display: block;
  margin: 0 0 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--shd-violet);
}

.shd-section__title {
  margin: 0 0 1rem;
  font-family: var(--shd-display);
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--shd-text);
}

.shd-section--dark .shd-section__title {
  color: #fff;
}

.shd-section__intro {
  margin: 0 auto 2rem;
  max-width: 52rem;
  font-size: 1.05rem;
  color: var(--shd-muted);
  line-height: 1.65;
}

.shd-section--dark .shd-section__intro {
  color: rgba(226, 232, 240, 0.88);
}

.shd-section__intro--center {
  text-align: center;
}

.shd-section__title--center {
  text-align: center;
  max-width: 100%;
}

.shd-section__title--center::after {
  content: "";
  display: block;
  width: 2.75rem;
  height: 3px;
  margin: 0.85rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--shd-primary), var(--shd-teal));
}

.shd-section--problem {
  background: linear-gradient(180deg, rgba(255, 251, 235, 0.65) 0%, rgba(246, 248, 252, 0.4) 50%, transparent 100%);
  border-block: 1px solid rgba(253, 230, 138, 0.4);
}

.page-smart-hire-desk #shd-main {
  position: relative;
  isolation: isolate;
}

.page-smart-hire-desk #shd-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 45% at 50% -5%, rgba(99, 102, 241, 0.07), transparent 55%),
    radial-gradient(ellipse 55% 35% at 100% 40%, rgba(13, 148, 136, 0.05), transparent 50%),
    radial-gradient(ellipse 50% 30% at 0% 70%, rgba(37, 99, 235, 0.04), transparent 45%);
  pointer-events: none;
  z-index: 0;
}

.page-smart-hire-desk #shd-main > * {
  position: relative;
  z-index: 1;
}

/* SHD: Hero */
.shd-hero {
  padding-top: clamp(2rem, 5vw, 3.5rem);
  padding-bottom: clamp(3rem, 7vw, 5rem);
  overflow: hidden;
}

.page-smart-hire-desk .shd-hero {
  padding-top: calc(var(--header-h) + clamp(1.25rem, 3vw, 2rem));
}

.shd-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 80% -10%, rgba(99, 102, 241, 0.15), transparent 50%),
    radial-gradient(ellipse 60% 40% at 10% 30%, rgba(13, 148, 136, 0.1), transparent 45%);
  pointer-events: none;
}

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

.shd-hero__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

@media (min-width: 960px) {
  .shd-hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  }
}

.shd-hero__headline {
  margin: 0 0 1rem;
  font-family: var(--shd-display);
  font-size: clamp(2.1rem, 5vw, 3.15rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  background: linear-gradient(120deg, #0f172a 0%, #2563eb 40%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.shd-hero__sub {
  margin: 0 0 1.25rem;
  font-size: 1.08rem;
  color: var(--shd-muted);
  line-height: 1.65;
  max-width: 36rem;
}

.shd-hero__pull {
  margin: 0 0 1.5rem;
  padding: 1rem 1.15rem;
  border-left: 4px solid var(--shd-violet);
  background: rgba(99, 102, 241, 0.06);
  border-radius: 0 var(--shd-radius) var(--shd-radius) 0;
  font-size: 1.1rem;
  font-weight: 600;
  font-style: italic;
  color: var(--shd-text);
  line-height: 1.5;
}

.shd-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.shd-trust-grid {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .shd-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.shd-trust-badge {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.75rem 0.9rem;
  background: var(--shd-surface);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--shd-radius);
  box-shadow: var(--shd-shadow);
  font-size: 0.85rem;
  color: var(--shd-muted);
  line-height: 1.45;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.shd-trust-badge:hover {
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: var(--shd-shadow-hover);
}

.shd-trust-badge svg {
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: var(--shd-teal);
}

.shd-hero__visual {
  position: relative;
  border-radius: var(--shd-radius-lg);
  background: linear-gradient(155deg, #fff 0%, #f8fafc 45%, #eef2ff 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shd-shadow-mock);
  padding: 1.25rem;
  min-height: 280px;
}

.shd-hero__visual::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--shd-radius-lg) + 1px);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.45), rgba(13, 148, 136, 0.35));
  opacity: 0.35;
  z-index: -1;
  filter: blur(12px);
}

.shd-mock {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.shd-mock__bar {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.75rem;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.shd-mock__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
}

.shd-mock__dot:nth-child(1) {
  background: #f87171;
}

.shd-mock__dot:nth-child(2) {
  background: #fbbf24;
}

.shd-mock__dot:nth-child(3) {
  background: #34d399;
}

.shd-mock__body {
  display: grid;
  grid-template-columns: 140px 1fr;
  min-height: 220px;
}

@media (max-width: 500px) {
  .shd-mock__body {
    grid-template-columns: 1fr;
  }
}

.shd-mock__sidebar {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-right: 1px solid #e2e8f0;
  padding: 0.75rem;
  font-size: 0.65rem;
  color: var(--shd-soft);
}

.shd-mock__sidebar strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--shd-text);
  font-size: 0.7rem;
}

.shd-mock__pipe {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.shd-mock__stage {
  padding: 0.35rem 0.45rem;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #e2e8f0;
  font-size: 0.62rem;
}

.shd-mock__stage--active {
  border-color: var(--shd-primary);
  background: rgba(37, 99, 235, 0.06);
  color: var(--shd-primary);
  font-weight: 600;
}

.shd-mock__main {
  padding: 0.75rem;
}

.shd-mock__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.65rem;
}

.shd-mock__title {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--shd-text);
}

.shd-mock__tag {
  font-size: 0.6rem;
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  background: rgba(13, 148, 136, 0.12);
  color: var(--shd-teal);
  font-weight: 600;
}

.shd-mock__cards {
  display: grid;
  gap: 0.4rem;
}

.shd-mock__card {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.5rem;
  border-radius: 8px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  font-size: 0.65rem;
}

.shd-mock__avatar {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--shd-gradient);
  opacity: 0.85;
}

.shd-mock__card span {
  flex: 1;
  color: var(--shd-muted);
}

.shd-mock__pill {
  font-size: 0.58rem;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  background: #e0e7ff;
  color: #4338ca;
  font-weight: 600;
}

/* SHD: Problem cards */
.shd-problem-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .shd-problem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .shd-problem-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.shd-problem-card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto;
  column-gap: 0.85rem;
  align-items: center;
  padding: 1.15rem 1.2rem;
  background: linear-gradient(180deg, #fffbeb 0%, #fff7ed 100%);
  border: 1px solid var(--shd-warning-border);
  border-radius: var(--shd-radius);
  box-shadow: 0 2px 12px rgba(146, 64, 14, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.shd-problem-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(146, 64, 14, 0.12);
  border-color: rgba(251, 191, 36, 0.65);
}

.shd-problem-card__icon {
  grid-column: 1;
  grid-row: 1;
  color: #d97706;
}

.shd-problem-card p {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  font-size: 0.9rem;
  color: var(--shd-warning-text);
  line-height: 1.55;
}

/* SHD: Platform Features — clean horizontal rows, no busy chrome */
.shd-section--features .shd-features-head {
  max-width: 40rem;
  margin: 0 auto 2.75rem;
  text-align: center;
}

.shd-section--features .shd-section__intro {
  margin-bottom: 0;
}

.shd-features-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .shd-features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}

.shd-feature-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem 1.15rem;
  margin: 0;
  padding: 1.15rem 1.2rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.shd-feature-card:hover {
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.07);
}

.shd-feature-card__icon {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.shd-feature-card__icon svg {
  width: 2.15rem;
  height: auto;
  max-height: 2rem;
  opacity: 0.92;
}

.shd-feature-card__body {
  flex: 1;
  min-width: 0;
  padding: 0;
}

.shd-feature-card__step {
  display: block;
  margin: 0 0 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #94a3b8;
  font-variant-numeric: tabular-nums;
}

.shd-feature-card__title {
  margin: 0 0 0.45rem;
  font-family: var(--shd-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--shd-text);
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.shd-feature-card__desc {
  margin: 0;
  font-size: 0.9rem;
  color: var(--shd-muted);
  line-height: 1.6;
}

/* SHD: How it works */
.shd-steps {
  max-width: 44rem;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.shd-step {
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  gap: 1rem 1.25rem;
  padding-bottom: 1.75rem;
  position: relative;
}

.shd-step:last-child {
  padding-bottom: 0;
}

.shd-step::before {
  content: "";
  position: absolute;
  left: calc(3.25rem / 2);
  top: 3rem;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--shd-primary), var(--shd-teal));
  opacity: 0.35;
  transform: translateX(-50%);
}

.shd-step:last-child::before {
  display: none;
}

.shd-step__num {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 14px;
  background: var(--shd-gradient);
  color: #fff;
  font-family: var(--shd-display);
  font-weight: 800;
  font-size: 0.85rem;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
  position: relative;
  z-index: 1;
}

.shd-step__content {
  padding: 1rem 1.15rem 1.1rem;
  margin-top: -0.1rem;
  background: var(--shd-surface);
  border-radius: var(--shd-radius);
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 2px 14px rgba(15, 23, 42, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.shd-step:hover .shd-step__content {
  border-color: rgba(37, 99, 235, 0.14);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.08);
}

.shd-step__title {
  margin: 0 0 0.4rem;
  font-family: var(--shd-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--shd-text);
}

.shd-step p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--shd-muted);
  line-height: 1.6;
}

/* SHD: Audience */
.shd-audience-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .shd-audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .shd-audience-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.shd-audience-card {
  padding: 1.35rem 1.4rem;
  background: var(--shd-surface);
  border-radius: var(--shd-radius);
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: var(--shd-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.shd-audience-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shd-shadow-hover);
}

.shd-audience-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(99, 102, 241, 0.12));
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
  color: var(--shd-primary);
}

.shd-audience-card h3 {
  margin: 0 0 0.6rem;
  font-family: var(--shd-display);
  font-size: 1.05rem;
  font-weight: 700;
}

.shd-audience-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--shd-muted);
  line-height: 1.55;
}

/* SHD: Differentiators */
.shd-diff-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .shd-diff-grid {
    grid-template-columns: 1fr 1.1fr;
    align-items: start;
  }
}

.shd-messaging-panel {
  padding: 1.5rem 1.65rem;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  border-radius: var(--shd-radius-lg);
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: var(--shd-shadow);
}

.shd-diff-table-title {
  margin: 0 0 1rem;
  font-family: var(--shd-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--shd-text);
}

.shd-check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.shd-check-list li {
  display: flex;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  font-size: 0.95rem;
  color: var(--shd-text);
  line-height: 1.55;
}

.shd-check-list li:last-child {
  border-bottom: none;
}

.shd-check-list svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--shd-teal);
}

.shd-table-wrap {
  overflow-x: auto;
  border-radius: var(--shd-radius);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shd-shadow);
  background: var(--shd-surface);
}

.shd-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.shd-table th,
.shd-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.shd-table th {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  font-weight: 700;
  color: var(--shd-text);
}

.shd-table tbody tr:nth-child(even) td {
  background: rgba(248, 250, 252, 0.9);
}

.shd-table tbody tr:hover td {
  background: rgba(239, 246, 255, 0.65);
}

.shd-table tr:last-child td {
  border-bottom: none;
}

.shd-table td:first-child {
  font-weight: 600;
  color: var(--shd-muted);
  width: 28%;
}

.shd-table .shd-highlight {
  color: var(--shd-primary);
  font-weight: 600;
}

/* SHD: Testimonial */
.shd-quote {
  position: relative;
  max-width: 52rem;
  margin: 0 auto;
  padding: clamp(2.25rem, 5vw, 3rem);
  background: linear-gradient(145deg, #fff 0%, #f1f5f9 55%, #eef2ff 100%);
  border-radius: var(--shd-radius-lg);
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: var(--shd-shadow);
  text-align: center;
  overflow: hidden;
}

.shd-quote::before {
  content: "\201C";
  position: absolute;
  top: 0.35rem;
  left: 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 12vw, 5rem);
  line-height: 1;
  color: rgba(37, 99, 235, 0.07);
  pointer-events: none;
}

.shd-quote__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, #cbd5e1, #94a3b8);
  border: 3px solid #fff;
  box-shadow: var(--shd-shadow);
}

.shd-quote blockquote {
  position: relative;
  z-index: 1;
  margin: 0 0 1.5rem;
  font-family: var(--shd-display);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 600;
  line-height: 1.55;
  color: var(--shd-text);
}

.shd-quote figcaption {
  position: relative;
  z-index: 1;
  font-size: 0.9rem;
  color: var(--shd-muted);
}

/* SHD: Final CTA */
.shd-cta-section {
  padding: clamp(3.25rem, 9vw, 5.5rem) 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 100%, rgba(99, 102, 241, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 50% at 0% 20%, rgba(13, 148, 136, 0.18), transparent 50%),
    radial-gradient(ellipse 50% 40% at 100% 30%, rgba(37, 99, 235, 0.12), transparent 45%),
    linear-gradient(165deg, #0b1220 0%, #1e1b4b 42%, #0f172a 100%);
  color: #e2e8f0;
}

.shd-cta-section .shd-container {
  max-width: 920px;
}

.shd-cta-final {
  position: relative;
  border-radius: calc(var(--shd-radius-lg) + 4px);
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(99, 102, 241, 0.35), rgba(13, 148, 136, 0.25));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 32px 64px -20px rgba(0, 0, 0, 0.55);
}

.shd-cta-final::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(160deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 27, 75, 0.88) 50%, rgba(15, 23, 42, 0.95) 100%);
  pointer-events: none;
  z-index: 0;
}

.shd-cta-final::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(99, 102, 241, 0.15), transparent 55%),
    repeating-linear-gradient(
      -14deg,
      transparent,
      transparent 20px,
      rgba(255, 255, 255, 0.018) 20px,
      rgba(255, 255, 255, 0.018) 21px
    );
  pointer-events: none;
  z-index: 0;
}

.shd-cta-final__accent {
  position: absolute;
  left: 0;
  top: 12%;
  bottom: 12%;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, #6366f1, #2563eb, #0d9488);
  box-shadow: 0 0 24px rgba(99, 102, 241, 0.45);
  z-index: 1;
}

.shd-cta-final__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: clamp(2.25rem, 5vw, 3.25rem) clamp(1.35rem, 4vw, 2.75rem);
}

.shd-cta-final__title {
  margin: 0 0 1.15rem;
  font-family: var(--shd-display);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.shd-cta-final__line {
  display: block;
  font-size: clamp(1.65rem, 4.2vw, 2.65rem);
  color: rgba(248, 250, 252, 0.92);
}

.shd-cta-final__line--accent {
  background: linear-gradient(120deg, #a5b4fc 0%, #e0e7ff 35%, #5eead4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.shd-cta-final__lede {
  margin: 0 auto 1.85rem;
  max-width: 38rem;
  font-size: 1.05rem;
  color: rgba(203, 213, 225, 0.95);
  line-height: 1.65;
}

.shd-cta-final__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.85rem;
}

.shd-cta-final .shd-btn--primary {
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.45);
}

.shd-cta-final .shd-btn--secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
}

.shd-cta-final .shd-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.4);
}

.shd-cta-final__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  align-items: center;
}

.shd-cta-final__trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  font-size: 0.82rem;
  color: rgba(226, 232, 240, 0.88);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}

.shd-cta-final__trust svg {
  flex-shrink: 0;
  color: #6ee7b7;
}

@media (min-width: 640px) {
  .shd-cta-final__trust {
    gap: 0.75rem;
  }
}

/* SHD: scroll reveal */
.shd-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.shd-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .shd-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .shd-feature-card:hover,
  .shd-problem-card:hover,
  .shd-audience-card:hover {
    transform: none;
  }
}

/* ----- SparkAnimate Visual HSE (sparkanimate-visual-hse.html) — inner page ----- */
.page-visual-hse {
  background: var(--bg);
}

.page-visual-hse #vhs-main {
  padding-top: 0;
}

/* Match inner product banners (e.g. SmartLearn .sf-hero) */
.vhs-inner-hero {
  position: relative;
  min-height: min(88vh, 840px);
  padding: calc(var(--header-h) + 1.75rem) 0 2.75rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.vhs-inner-hero__bg {
  position: absolute;
  inset: 0;
  background: url("../assets/images/animate-banner.jpg") center / cover no-repeat;
  background-position: 50% 4%;
  will-change: transform;
}

.vhs-inner-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(11, 31, 58, 0.94) 0%,
    rgba(11, 31, 58, 0.82) 42%,
    rgba(11, 31, 58, 0.55) 100%
  );
}

.vhs-inner-hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(0, 209, 255, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 209, 255, 0.5) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  will-change: transform;
}

/* Floating gradient orbs (hero) */
.vhs-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  pointer-events: none;
  z-index: 1;
}

.vhs-hero-orb--1 {
  width: min(46vw, 400px);
  height: min(46vw, 400px);
  background: rgba(0, 209, 255, 0.35);
  top: -8%;
  right: 4%;
}

.vhs-hero-orb--2 {
  width: min(40vw, 340px);
  height: min(40vw, 340px);
  background: rgba(255, 107, 0, 0.22);
  bottom: -12%;
  left: -6%;
}

.vhs-inner-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  box-sizing: border-box;
}

.vhs-breadcrumb {
  margin-bottom: 1.25rem;
}

.vhs-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.65rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
}

.vhs-breadcrumb__list a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color var(--transition);
}

.vhs-breadcrumb__list a:hover {
  color: var(--accent);
}

.vhs-breadcrumb__list li[aria-current="page"] {
  color: rgba(255, 255, 255, 0.95);
}

.vhs-inner-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.45rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 1rem;
  max-width: 52rem;
  text-wrap: balance;
}

.vhs-inner-hero__lead {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1rem;
  max-width: 42rem;
  line-height: 1.65;
}

.vhs-inner-hero__trust {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 1.75rem;
  max-width: 48rem;
  line-height: 1.6;
  padding-left: 1rem;
  border-left: 3px solid var(--accent);
}

.vhs-inner-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.vhs-inner-hero__actions .btn {
  min-height: 48px;
}

@media (max-width: 520px) {
  .vhs-inner-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .vhs-inner-hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

.vhs-section {
  padding: var(--section-y) var(--container-pad);
  box-sizing: border-box;
}

.vhs-section--alt {
  background: linear-gradient(180deg, #eef2f7 0%, #f5f7fa 100%);
}

/* Tighter vertical gap between “THE SOLUTION” and “WHAT WE CREATE” */
.page-visual-hse #solution.vhs-section {
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.page-visual-hse #solution + #what-we-create.vhs-section {
  padding-top: clamp(2rem, 4vw, 3rem);
}

.page-visual-hse #industries.vhs-section {
  padding-top: 0;
}

.vhs-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-action);
  margin: 0 0 0.75rem;
}

.vhs-eyebrow--on-dark {
  color: var(--accent);
}

.vhs-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.vhs-section-title--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 52rem;
}

.vhs-section-head {
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
  max-width: 48rem;
}

.vhs-section-head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 56rem;
}

.vhs-section-head--center .vhs-eyebrow {
  text-align: center;
  text-wrap: balance;
  line-height: 1.35;
  max-width: 100%;
  padding-inline: 0.15rem;
}

.vhs-section-head--center .vhs-section-title {
  margin-left: auto;
  margin-right: auto;
}

.vhs-section-head--center .vhs-intro {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.vhs-intro {
  font-size: 1.02rem;
  color: var(--text-muted);
  margin: 0.5rem 0 0;
  line-height: 1.65;
}

.vhs-prose {
  font-size: 1rem;
  color: var(--text);
  margin: 0 0 1rem;
  line-height: 1.7;
}

.vhs-prose--emphasis {
  font-weight: 500;
  color: var(--primary);
  margin-top: 1.25rem;
}

.vhs-section-footnote {
  text-align: center;
  max-width: 52rem;
  margin: 2rem auto 0;
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.vhs-split {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.vhs-split__content {
  min-width: 0;
}

.vhs-split__media {
  min-width: 0;
  width: 100%;
}

@media (min-width: 900px) {
  .vhs-split {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
    align-items: start;
  }

  .vhs-split--reverse .vhs-split__content {
    order: 2;
  }

  .vhs-split--reverse .vhs-split__media {
    order: 1;
  }

  /* THE SOLUTION: equal-width text + image columns */
  .page-visual-hse #solution .vhs-split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
  }

  .page-visual-hse #solution .vhs-media-frame {
    max-height: min(75vh, 620px);
  }
}

.vhs-media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  aspect-ratio: 4 / 5;
  max-height: 520px;
  width: 100%;
  margin-inline: auto;
}

.vhs-media-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.vhs-media-frame__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11, 31, 58, 0.35) 100%);
  pointer-events: none;
}

.vhs-icon-list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vhs-icon-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  font-size: 0.98rem;
  color: var(--text);
  line-height: 1.55;
}

.vhs-icon-list__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(34, 116, 180, 0.1);
  color: var(--primary-action);
}

.vhs-icon-list__icon svg {
  width: 20px;
  height: 20px;
}

.vhs-steps {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: vhsstep;
}

.vhs-steps__item {
  display: flex;
  gap: 0.85rem;
  align-items: stretch;
  position: relative;
  padding-bottom: 1rem;
}

.vhs-steps__item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 44px;
  bottom: 0;
  width: 2px;
  margin-left: -1px;
  background: linear-gradient(180deg, rgba(34, 116, 180, 0.35), rgba(34, 116, 180, 0.08));
}

.vhs-steps__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-action), var(--primary-action-dark));
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(34, 116, 180, 0.35);
  z-index: 1;
}

.vhs-steps__body {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem 0.85rem;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(11, 31, 58, 0.08);
  box-shadow: var(--shadow);
  font-weight: 500;
  color: var(--primary);
  transition: transform var(--transition), box-shadow var(--transition);
}

.vhs-steps__item:hover .vhs-steps__body {
  transform: translateX(4px);
  box-shadow: var(--shadow-hover);
}

.vhs-steps__icon {
  display: flex;
  color: var(--primary-action);
}

.vhs-steps__icon svg {
  width: 20px;
  height: 20px;
}

.vhs-key-line {
  margin-top: 1.75rem;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(0, 209, 255, 0.12) 0%, rgba(34, 116, 180, 0.1) 100%);
  border: 1px solid rgba(0, 209, 255, 0.25);
}

.vhs-key-line__text {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.55;
}

.vhs-create-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

.vhs-create-grid__text {
  min-width: 0;
}

.vhs-create-grid__visual {
  min-width: 0;
  width: 100%;
}

@media (min-width: 900px) {
  .vhs-create-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    align-items: start;
  }
}

.vhs-check-list {
  margin: 1rem 0 1.25rem;
  padding: 0 0 0 1.25rem;
  color: var(--text);
  line-height: 1.75;
}

.vhs-check-list li {
  margin-bottom: 0.5rem;
  padding-left: 0.25rem;
}

.vhs-check-list li::marker {
  color: var(--primary-action);
}

.vhs-card--visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(11, 31, 58, 0.08);
  box-shadow: var(--shadow-hover);
  background: #fff;
}

.vhs-card__img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

/* WHAT WE CREATE — larger, taller image + aligned grid (no double motion on card) */
#what-we-create .vhs-section-head {
  width: 100%;
  max-width: none;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

#what-we-create .vhs-create-grid {
  width: 100%;
  align-items: start;
}

#what-we-create .vhs-create-grid__text {
  padding-top: 0.15rem;
}

#what-we-create .vhs-create-grid__visual {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}

#what-we-create .vhs-card--visual {
  width: 100%;
  margin: 0;
}

/* Parent column handles stagger; inner card must not stack a second transform */
.page-visual-hse #what-we-create.reveal .vhs-card--visual {
  opacity: 1;
  transform: none;
  transition: none;
}

#what-we-create .vhs-card__img {
  aspect-ratio: 4 / 3;
}

@media (min-width: 900px) {
  #what-we-create .vhs-create-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
    gap: clamp(2rem, 4vw, 3.25rem);
    align-items: start;
  }
}

@media (min-width: 1200px) {
  #what-we-create .vhs-create-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.45fr);
  }
}

.vhs-card__img-cap {
  height: 6px;
  background: linear-gradient(90deg, var(--primary-action), var(--accent), var(--secondary));
}

/* Why Visual Training: 5 cards — 3 + 2 centered on large screens (avoids broken 3-col + full-span row) */
.vhs-feature-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  width: 100%;
}

@media (min-width: 640px) and (max-width: 1023px) {
  .vhs-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vhs-feature-card--wide {
    grid-column: 1 / -1;
    max-width: 36rem;
    justify-self: center;
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .vhs-feature-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .vhs-feature-grid .vhs-feature-card:nth-child(1) {
    grid-column: 1 / 3;
  }

  .vhs-feature-grid .vhs-feature-card:nth-child(2) {
    grid-column: 3 / 5;
  }

  .vhs-feature-grid .vhs-feature-card:nth-child(3) {
    grid-column: 5 / 7;
  }

  .vhs-feature-grid .vhs-feature-card:nth-child(4) {
    grid-column: 2 / 4;
  }

  .vhs-feature-grid .vhs-feature-card:nth-child(5),
  .vhs-feature-grid .vhs-feature-card--wide {
    grid-column: 4 / 6;
  }
}

.vhs-feature-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  border: 1px solid rgba(11, 31, 58, 0.08);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  height: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.vhs-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(34, 116, 180, 0.2);
}

.vhs-feature-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(34, 116, 180, 0.1);
  color: var(--primary-action);
  margin-bottom: 0.85rem;
}

.vhs-feature-card__icon svg {
  width: 22px;
  height: 22px;
}

.vhs-feature-card__text {
  margin: 0;
  font-size: 0.98rem;
  color: var(--text);
  line-height: 1.55;
  flex: 1;
}

.vhs-industry-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  width: 100%;
  align-items: stretch;
}

@media (min-width: 600px) {
  .vhs-industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .vhs-industry-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.vhs-industry-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  text-align: center;
  border: 1px solid rgba(11, 31, 58, 0.08);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100%;
}

.vhs-industry-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.vhs-industry-card__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 0.65rem;
  color: var(--primary-action);
}

.vhs-industry-card__icon svg {
  width: 28px;
  height: 28px;
}

.vhs-industry-card__text {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.45;
}

.vhs-section--compare {
  background: #fff;
}

.vhs-compare {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(11, 31, 58, 0.1);
  box-shadow: var(--shadow);
}

.vhs-compare__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  color: #fff;
}

.vhs-compare__col {
  padding: 1rem 0.85rem;
}

.vhs-compare__col--before {
  background: linear-gradient(135deg, #5a6577 0%, #3d4654 100%);
}

.vhs-compare__col--after {
  background: linear-gradient(135deg, var(--primary-action) 0%, var(--primary-action-dark) 100%);
}

.vhs-compare__rows {
  background: #fff;
}

.vhs-compare__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(11, 31, 58, 0.08);
  align-items: stretch;
}

.vhs-compare__cell {
  padding: 1rem 1.1rem;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
  display: flex;
  align-items: center;
}

.vhs-compare__cell--highlight {
  background: rgba(34, 116, 180, 0.06);
  color: var(--primary);
  font-weight: 500;
}

@media (max-width: 559px) {
  .vhs-compare__head {
    font-size: 0.78rem;
  }

  .vhs-compare__col {
    padding: 0.75rem 0.5rem;
  }

  .vhs-compare__cell {
    padding: 0.75rem 0.55rem;
    font-size: 0.82rem;
    line-height: 1.45;
  }
}

.vhs-process {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  width: 100%;
}

.vhs-process__step {
  display: flex;
  gap: 1.15rem;
  align-items: center;
  padding-bottom: 1.5rem;
  position: relative;
}

.vhs-process__step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 52px;
  bottom: 0;
  width: 2px;
  margin-left: -1px;
  background: linear-gradient(180deg, rgba(34, 116, 180, 0.4), rgba(34, 116, 180, 0.05));
}

.vhs-process__marker {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid rgba(34, 116, 180, 0.35);
  color: var(--primary-action);
  box-shadow: var(--shadow);
  z-index: 1;
}

.vhs-process__marker svg {
  width: 22px;
  height: 22px;
}

.vhs-process__text {
  margin: 0;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
  flex: 1;
  padding: 0.65rem 1rem;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(11, 31, 58, 0.08);
  box-shadow: var(--shadow);
}

.vhs-final-cta {
  position: relative;
  padding: clamp(3.5rem, 8vw, 5rem) var(--container-pad);
  overflow: hidden;
  box-sizing: border-box;
}

.vhs-final-cta__bg {
  position: absolute;
  inset: 0;
  background: url("../assets/images/banner.jpg") center / cover no-repeat;
}

.vhs-final-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(11, 31, 58, 0.95) 0%, rgba(26, 92, 144, 0.88) 50%, rgba(11, 31, 58, 0.92) 100%);
}

.vhs-final-cta__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: min(44rem, 100%);
  margin: 0 auto;
  width: 100%;
}

.vhs-final-cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 1rem;
  line-height: 1.25;
}

.vhs-final-cta__text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1.75rem;
  line-height: 1.65;
}

.vhs-final-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.vhs-final-cta__label {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.vhs-final-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

@media (max-width: 520px) {
  .vhs-final-cta__buttons {
    flex-direction: column;
    width: 100%;
  }

  .vhs-final-cta__buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

.page-visual-hse .vhs-faq-list {
  margin-top: 2rem;
}

/* ----- SparkAnimate page — motion (respects prefers-reduced-motion) ----- */
@keyframes vhsKenBurns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.07);
  }
}

@keyframes vhsGridDrift {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(32px, 32px);
  }
}

@keyframes vhsOrbFloatA {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(18px, 14px);
  }
}

@keyframes vhsOrbFloatB {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-20px, -18px);
  }
}

@keyframes vhsHeroFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes vhsSoftPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 209, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(0, 209, 255, 0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .page-visual-hse .vhs-inner-hero__bg {
    animation: vhsKenBurns 22s ease-in-out infinite alternate;
  }

  .page-visual-hse .vhs-inner-hero__pattern {
    animation: vhsGridDrift 18s linear infinite alternate;
  }

  .page-visual-hse .vhs-hero-orb--1 {
    animation: vhsOrbFloatA 14s ease-in-out infinite;
  }

  .page-visual-hse .vhs-hero-orb--2 {
    animation: vhsOrbFloatB 17s ease-in-out infinite;
  }

  .page-visual-hse .vhs-hero-intro > * {
    opacity: 0;
    animation: vhsHeroFadeUp 0.78s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  }

  .page-visual-hse .vhs-hero-intro > *:nth-child(1) {
    animation-delay: 0.06s;
  }
  .page-visual-hse .vhs-hero-intro > *:nth-child(2) {
    animation-delay: 0.14s;
  }
  .page-visual-hse .vhs-hero-intro > *:nth-child(3) {
    animation-delay: 0.24s;
  }
  .page-visual-hse .vhs-hero-intro > *:nth-child(4) {
    animation-delay: 0.34s;
  }
  .page-visual-hse .vhs-hero-intro > *:nth-child(5) {
    animation-delay: 0.44s;
  }

  .page-visual-hse .vhs-inner-hero .btn-ghost-light.vhs-btn-play {
    animation: vhsSoftPulse 2.8s ease-in-out infinite;
    animation-delay: 0.65s;
  }

  .page-visual-hse .vhs-final-cta__bg {
    animation: vhsKenBurns 26s ease-in-out infinite alternate;
  }
}

.page-visual-hse .reveal {
  transition-duration: 0.78s;
  transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
}

.page-visual-hse .reveal .vhs-stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s cubic-bezier(0.33, 1, 0.68, 1), transform 0.55s cubic-bezier(0.33, 1, 0.68, 1);
}

.page-visual-hse .reveal.is-visible .vhs-stagger > * {
  opacity: 1;
  transform: translateY(0);
}

.page-visual-hse .reveal.is-visible .vhs-stagger > *:nth-child(1) {
  transition-delay: 0.04s;
}
.page-visual-hse .reveal.is-visible .vhs-stagger > *:nth-child(2) {
  transition-delay: 0.09s;
}
.page-visual-hse .reveal.is-visible .vhs-stagger > *:nth-child(3) {
  transition-delay: 0.14s;
}
.page-visual-hse .reveal.is-visible .vhs-stagger > *:nth-child(4) {
  transition-delay: 0.19s;
}
.page-visual-hse .reveal.is-visible .vhs-stagger > *:nth-child(5) {
  transition-delay: 0.24s;
}
.page-visual-hse .reveal.is-visible .vhs-stagger > *:nth-child(6) {
  transition-delay: 0.29s;
}
.page-visual-hse .reveal.is-visible .vhs-stagger > *:nth-child(7) {
  transition-delay: 0.34s;
}
.page-visual-hse .reveal.is-visible .vhs-stagger > *:nth-child(8) {
  transition-delay: 0.39s;
}
.page-visual-hse .reveal.is-visible .vhs-stagger > *:nth-child(9) {
  transition-delay: 0.44s;
}
.page-visual-hse .reveal.is-visible .vhs-stagger > *:nth-child(10) {
  transition-delay: 0.49s;
}
.page-visual-hse .reveal.is-visible .vhs-stagger > *:nth-child(11) {
  transition-delay: 0.54s;
}
.page-visual-hse .reveal.is-visible .vhs-stagger > *:nth-child(12) {
  transition-delay: 0.59s;
}

/* Index #services: same stagger + media reveal as SparkAnimate “THE SOLUTION” */
#services.reveal .vhs-stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s cubic-bezier(0.33, 1, 0.68, 1), transform 0.55s cubic-bezier(0.33, 1, 0.68, 1);
}

#services.reveal.is-visible .vhs-stagger > * {
  opacity: 1;
  transform: translateY(0);
}

#services.reveal.is-visible .vhs-stagger > *:nth-child(1) {
  transition-delay: 0.04s;
}
#services.reveal.is-visible .vhs-stagger > *:nth-child(2) {
  transition-delay: 0.09s;
}
#services.reveal.is-visible .vhs-stagger > *:nth-child(3) {
  transition-delay: 0.14s;
}
#services.reveal.is-visible .vhs-stagger > *:nth-child(4) {
  transition-delay: 0.19s;
}
#services.reveal.is-visible .vhs-stagger > *:nth-child(5) {
  transition-delay: 0.24s;
}

#services.reveal .vhs-media-frame {
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  transition: opacity 0.65s ease 0.08s, transform 0.72s cubic-bezier(0.34, 1.02, 0.32, 1) 0.08s;
}

#services.reveal.is-visible .vhs-media-frame {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.page-visual-hse .reveal.is-visible .vhs-stagger--pair > *:nth-child(1) {
  transition-delay: 0.08s;
}
.page-visual-hse .reveal.is-visible .vhs-stagger--pair > *:nth-child(2) {
  transition-delay: 0.18s;
}

.page-visual-hse #what-we-create.reveal.is-visible .vhs-stagger--pair > *:nth-child(1),
.page-visual-hse #what-we-create.reveal.is-visible .vhs-stagger--pair > *:nth-child(2) {
  transition-delay: 0.06s;
}

.page-visual-hse .reveal .vhs-media-frame,
.page-visual-hse .reveal .vhs-card--visual {
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  transition: opacity 0.65s ease 0.08s, transform 0.72s cubic-bezier(0.34, 1.02, 0.32, 1) 0.08s;
}

.page-visual-hse .reveal.is-visible .vhs-media-frame,
.page-visual-hse .reveal.is-visible .vhs-card--visual {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.page-visual-hse .vhs-final-cta.reveal .vhs-cta-intro > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.page-visual-hse .vhs-final-cta.reveal.is-visible .vhs-cta-intro > * {
  opacity: 1;
  transform: translateY(0);
}

.page-visual-hse .vhs-final-cta.reveal.is-visible .vhs-cta-intro > *:nth-child(1) {
  transition-delay: 0.05s;
}
.page-visual-hse .vhs-final-cta.reveal.is-visible .vhs-cta-intro > *:nth-child(2) {
  transition-delay: 0.12s;
}
.page-visual-hse .vhs-final-cta.reveal.is-visible .vhs-cta-intro > *:nth-child(3) {
  transition-delay: 0.19s;
}
.page-visual-hse .vhs-final-cta.reveal.is-visible .vhs-cta-intro > *:nth-child(4) {
  transition-delay: 0.26s;
}

.page-visual-hse .reveal .vhs-compare {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease 0.05s, transform 0.6s ease 0.05s;
}

.page-visual-hse .reveal.is-visible .vhs-compare {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .page-visual-hse .vhs-inner-hero__bg,
  .page-visual-hse .vhs-inner-hero__pattern,
  .page-visual-hse .vhs-final-cta__bg,
  .page-visual-hse .vhs-hero-orb--1,
  .page-visual-hse .vhs-hero-orb--2 {
    animation: none !important;
  }

  .page-visual-hse .vhs-hero-intro > *,
  .page-visual-hse .vhs-inner-hero .btn.vhs-btn-play {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .page-visual-hse .reveal .vhs-stagger > *,
  .page-visual-hse .reveal .vhs-media-frame,
  .page-visual-hse .reveal .vhs-card--visual,
  .page-visual-hse .vhs-final-cta.reveal .vhs-cta-intro > *,
  .page-visual-hse .reveal .vhs-compare,
  #services.reveal .vhs-stagger > *,
  #services.reveal .vhs-media-frame {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .page-visual-hse .reveal {
    transition: none !important;
  }

  .vhs-feature-card:hover,
  .vhs-industry-card:hover,
  .vhs-steps__item:hover .vhs-steps__body {
    transform: none;
  }
}

/* Touch: reduce tap delay on interactive controls (no visual change) */
@media (max-width: 1023px) {
  .btn,
  .nav a,
  .nav-dropdown__trigger,
  .nav-toggle,
  .shd-btn {
    touch-action: manipulation;
  }
}
