/* =========================================================
   SMART HIRING — PREMIUM PUBLIC DESIGN SYSTEM
   Covers:
   - Public layout
   - Global loader
   - Page transitions
   - Scroll reveal
   - Public navbar
   - Mobile navigation
   - Public footer
   - Accessibility helpers
========================================================= */

/* =========================================================
   1. DESIGN TOKENS
========================================================= */

:root {
  --sh-primary: #7138e8;
  --sh-primary-dark: #5420c7;
  --sh-primary-deep: #391493;
  --sh-primary-light: #9568f2;
  --sh-primary-soft: #f0eafe;

  --sh-secondary: #16b8a6;
  --sh-secondary-dark: #0d8f81;
  --sh-secondary-soft: #e7faf7;

  --sh-accent: #f6a723;
  --sh-success: #22a06b;
  --sh-danger: #dc3545;
  --sh-warning: #f59e0b;
  --sh-info: #2563eb;

  --sh-white: #ffffff;
  --sh-black: #09090b;

  --sh-bg: #f7f8fc;
  --sh-bg-alt: #f0f2f8;
  --sh-surface: #ffffff;
  --sh-surface-soft: #fbfbfe;

  --sh-text: #171321;
  --sh-text-secondary: #514b60;
  --sh-text-muted: #777184;
  --sh-text-light: #aaa4b5;

  --sh-border: #e8e5ee;
  --sh-border-strong: #d9d4e2;

  --sh-footer-bg: #100b1c;
  --sh-footer-bg-light: #181027;
  --sh-footer-text: #d8d1e5;
  --sh-footer-muted: #a99eb8;

  --sh-gradient-primary: linear-gradient(
    135deg,
    #7138e8 0%,
    #8d4cf2 48%,
    #16b8a6 100%
  );

  --sh-gradient-dark: linear-gradient(
    135deg,
    #0d0916 0%,
    #181027 50%,
    #22153b 100%
  );

  --sh-gradient-soft: linear-gradient(
    135deg,
    rgba(113, 56, 232, 0.12),
    rgba(22, 184, 166, 0.09)
  );

  --sh-shadow-xs: 0 2px 8px rgba(20, 13, 38, 0.05);

  --sh-shadow-sm: 0 8px 24px rgba(20, 13, 38, 0.07);

  --sh-shadow-md: 0 16px 42px rgba(20, 13, 38, 0.11);

  --sh-shadow-lg: 0 24px 70px rgba(20, 13, 38, 0.15);

  --sh-shadow-primary: 0 18px 45px rgba(113, 56, 232, 0.28);

  --sh-radius-sm: 10px;
  --sh-radius-md: 16px;
  --sh-radius-lg: 24px;
  --sh-radius-xl: 32px;
  --sh-radius-pill: 999px;

  --sh-transition-fast: 180ms ease;
  --sh-transition: 280ms ease;
  --sh-transition-slow: 500ms ease;

  --sh-navbar-height: 86px;

  /* Shared motion and interaction standards */
  --sh-ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
  --sh-reveal-duration: 700ms;
  --sh-hover-lift: -6px;
  --sh-accent-line-height: 3px;
}

/* =========================================================
   2. GLOBAL RESET AND BASE
========================================================= */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--sh-navbar-height) + 24px);
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: clip;
  background:
    radial-gradient(circle at 5% 0%, rgba(113, 56, 232, 0.05), transparent 28%),
    radial-gradient(
      circle at 95% 15%,
      rgba(22, 184, 166, 0.05),
      transparent 24%
    ),
    var(--sh-bg);

  color: var(--sh-text);

  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  font-size: 16px;
  line-height: 1.65;

  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.sh-loader-active,
body.sh-mobile-menu-open {
  overflow: hidden;
}

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

a,
button,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

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

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

::selection {
  background: rgba(113, 56, 232, 0.22);
  color: var(--sh-primary-deep);
}

/* =========================================================
   3. PUBLIC PAGE LAYOUT
========================================================= */

.sh-page {
  position: relative;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  opacity: 0;
  transform: translateY(5px);
  transition:
    opacity 450ms ease,
    transform 450ms ease;
}

body.sh-page-ready .sh-page {
  opacity: 1;
  transform: translateY(0);
}

.sh-main {
  position: relative;
  z-index: 1;
  flex: 1 0 auto;
  min-height: 50vh;
  outline: none;
}

/* =========================================================
   4. ACCESSIBILITY
========================================================= */

.sh-skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100000;
  padding: 11px 18px;
  border-radius: var(--sh-radius-pill);
  background: var(--sh-text);
  color: var(--sh-white);
  box-shadow: var(--sh-shadow-md);
  font-size: 0.9rem;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform var(--sh-transition);
}

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

.sh-noscript-message {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99999;
  max-width: 420px;
  padding: 14px 18px;
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--sh-radius-md);
  background: #fff8e7;
  color: #6c4a08;
  box-shadow: var(--sh-shadow-md);
  font-size: 0.9rem;
  font-weight: 600;
}

:focus-visible {
  outline: 3px solid rgba(113, 56, 232, 0.3);
  outline-offset: 3px;
}

/* =========================================================
   5. GLOBAL SITE LOADER
========================================================= */

.loader-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 24px;

  background:
    radial-gradient(
      circle at center,
      rgba(113, 56, 232, 0.14),
      transparent 35%
    ),
    rgba(10, 6, 19, 0.78);

  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);

  opacity: 1;
  visibility: visible;

  transition:
    opacity 240ms ease,
    visibility 240ms ease;
}

.loader-overlay.loader-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-container {
  position: relative;

  display: flex;
  min-width: 260px;
  min-height: 172px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;

  padding: 34px 38px;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.16),
    rgba(255, 255, 255, 0.06)
  );

  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);

  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
}

.loader-container::before {
  content: "";
  position: absolute;
  top: -70px;
  left: -50px;

  width: 160px;
  height: 160px;

  border-radius: 50%;

  background: rgba(113, 56, 232, 0.32);
  filter: blur(30px);
}

.loader-container::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -80px;

  width: 170px;
  height: 170px;

  border-radius: 50%;

  background: rgba(22, 184, 166, 0.22);
  filter: blur(34px);
}

.dot-wave {
  position: relative;
  z-index: 1;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  min-height: 34px;
}

.dot-wave .dot {
  width: 11px;
  height: 11px;

  border-radius: 50%;

  background: linear-gradient(135deg, #ffffff, #d7c4ff);

  box-shadow: 0 0 14px rgba(168, 127, 255, 0.8);

  animation: sh-dot-wave 1.25s ease-in-out infinite;
}

.dot-wave .dot:nth-child(1) {
  animation-delay: 0ms;
}

.dot-wave .dot:nth-child(2) {
  animation-delay: 100ms;
}

.dot-wave .dot:nth-child(3) {
  animation-delay: 200ms;
}

.dot-wave .dot:nth-child(4) {
  animation-delay: 300ms;
}

.dot-wave .dot:nth-child(5) {
  animation-delay: 400ms;
}

.dot-wave .dot:nth-child(6) {
  animation-delay: 500ms;
}

.loader-text {
  position: relative;
  z-index: 1;

  min-height: 27px;
  margin: 0;

  color: rgba(255, 255, 255, 0.95);

  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
}

.blinking-dots {
  display: inline-block;
  width: 28px;
  text-align: left;
}

@keyframes sh-dot-wave {
  0%,
  60%,
  100% {
    opacity: 0.45;
    transform: translateY(0) scale(0.85);
  }

  30% {
    opacity: 1;
    transform: translateY(-13px) scale(1.12);
  }
}

/* =========================================================
   6. SCROLL REVEAL
========================================================= */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* =========================================================
   7. PUBLIC NAVBAR WRAPPER
========================================================= */

.sh-navbar-wrapper {
  position: sticky;
  top: 0;
  z-index: 1000;

  width: 100%;

  background: rgba(255, 255, 255, 0.84);

  border-bottom: 1px solid rgba(218, 212, 228, 0.65);

  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);

  box-shadow: 0 8px 34px rgba(22, 14, 40, 0.05);
}

.sh-navbar {
  position: relative;
}

.sh-navbar::before {
  content: "";
  position: absolute;
  right: 12%;
  bottom: -1px;
  left: 12%;

  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(113, 56, 232, 0.28),
    rgba(22, 184, 166, 0.18),
    transparent
  );
}

.sh-navbar-inner {
  display: flex;
  min-height: var(--sh-navbar-height);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* =========================================================
   8. NAVBAR BRAND
========================================================= */

.sh-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;

  color: var(--sh-text);

  transition:
    transform var(--sh-transition),
    opacity var(--sh-transition);
}

.sh-brand:hover {
  color: var(--sh-text);
  transform: translateY(-1px);
}

.sh-brand-mark {
  position: relative;

  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  border-radius: 15px;

  background: var(--sh-gradient-primary);
  color: var(--sh-white);

  box-shadow:
    0 10px 26px rgba(113, 56, 232, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);

  font-size: 1.12rem;
}

.sh-brand-mark::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -65%;

  width: 45%;
  height: 180%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );

  transform: rotate(24deg);
  transition: left 700ms ease;
}

.sh-brand:hover .sh-brand-mark::after {
  left: 135%;
}

.sh-brand-mark-glow {
  position: absolute;
  inset: 6px;

  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 11px;
}

.sh-brand-mark i {
  position: relative;
  z-index: 1;
}

.sh-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.sh-brand-name {
  display: flex;
  align-items: center;
  gap: 4px;

  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.sh-brand-smart {
  color: var(--sh-text);
}

.sh-brand-hiring {
  background: var(--sh-gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.sh-brand-tagline {
  margin-top: 5px;
  color: var(--sh-text-muted);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.035em;
}

/* =========================================================
   9. DESKTOP NAVIGATION
========================================================= */

.sh-navbar-menu {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.sh-nav-list {
  display: flex;
  align-items: center;
  gap: 5px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.sh-nav-item {
  position: relative;
}

.sh-nav-link {
  position: relative;

  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 10px 15px;

  border-radius: 12px;

  color: var(--sh-text-secondary);

  font-size: 0.93rem;
  font-weight: 650;

  transition:
    color var(--sh-transition-fast),
    background-color var(--sh-transition-fast),
    transform var(--sh-transition-fast);
}

.sh-nav-link::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 6px;
  left: 16px;

  height: 2px;

  border-radius: var(--sh-radius-pill);

  background: var(--sh-gradient-primary);

  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;

  transition:
    opacity var(--sh-transition),
    transform var(--sh-transition);
}

.sh-nav-link:hover {
  background: rgba(113, 56, 232, 0.06);
  color: var(--sh-primary);
  transform: translateY(-1px);
}

.sh-nav-link.active {
  background: var(--sh-primary-soft);
  color: var(--sh-primary-dark);
}

.sh-nav-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.sh-nav-icon {
  display: none;
}

.sh-navbar-actions {
  display: flex;
  align-items: center;
}

.sh-nav-cta {
  position: relative;

  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 11px 18px;

  overflow: hidden;

  border: 0;
  border-radius: 14px;

  background: var(--sh-gradient-primary);
  color: var(--sh-white);

  box-shadow: 0 12px 28px rgba(113, 56, 232, 0.25);

  font-size: 0.92rem;
  font-weight: 750;

  transition:
    transform var(--sh-transition),
    box-shadow var(--sh-transition);
}

.sh-nav-cta::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -60%;

  width: 50%;
  height: 220%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.36),
    transparent
  );

  transform: rotate(24deg);
  transition: left 700ms ease;
}

.sh-nav-cta:hover {
  color: var(--sh-white);
  transform: translateY(-2px);
  box-shadow: 0 17px 34px rgba(113, 56, 232, 0.34);
}

.sh-nav-cta:hover::before {
  left: 140%;
}

.sh-nav-cta-icon,
.sh-nav-cta-text,
.sh-nav-cta-arrow {
  position: relative;
  z-index: 1;
}

.sh-nav-cta-arrow {
  display: inline-flex;
  transition: transform var(--sh-transition);
}

.sh-nav-cta:hover .sh-nav-cta-arrow {
  transform: translateX(4px);
}

/* =========================================================
   10. MOBILE MENU-ONLY ELEMENTS
========================================================= */

.sh-navbar-toggle {
  display: none;
}

.sh-mobile-menu-header,
.sh-mobile-menu-footer {
  display: none;
}

/* =========================================================
   11. PREMIUM PUBLIC FOOTER
========================================================= */

.public-footer {
  position: relative;
  z-index: 2;

  margin-top: 90px;
  overflow: hidden;

  background:
    radial-gradient(circle at 8% 20%, rgba(113, 56, 232, 0.2), transparent 27%),
    radial-gradient(
      circle at 92% 60%,
      rgba(22, 184, 166, 0.13),
      transparent 25%
    ),
    var(--sh-gradient-dark);

  color: var(--sh-footer-text);
}

.public-footer-accent {
  width: 100%;
  height: 4px;

  background: var(--sh-gradient-primary);

  box-shadow: 0 0 30px rgba(113, 56, 232, 0.55);
}

.footer-decoration {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(2px);
}

.footer-decoration-one {
  top: 160px;
  left: -130px;

  width: 310px;
  height: 310px;

  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 60px rgba(113, 56, 232, 0.08);
}

.footer-decoration-two {
  right: -90px;
  bottom: 40px;

  width: 260px;
  height: 260px;

  border: 1px solid rgba(22, 184, 166, 0.07);
  box-shadow: inset 0 0 70px rgba(22, 184, 166, 0.06);
}

/* =========================================================
   12. FOOTER OPPORTUNITY BANNER
========================================================= */

.footer-opportunity-banner {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  margin-top: 70px;
  padding: 32px 36px;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--sh-radius-xl);

  background: linear-gradient(
    135deg,
    rgba(113, 56, 232, 0.42),
    rgba(113, 56, 232, 0.16) 48%,
    rgba(22, 184, 166, 0.17)
  );

  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.13);

  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.footer-opportunity-banner::before {
  content: "";
  position: absolute;
  top: -80px;
  right: 16%;

  width: 230px;
  height: 230px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.07);
  filter: blur(2px);
}

.footer-opportunity-content {
  position: relative;
  z-index: 1;

  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-opportunity-icon {
  display: inline-flex;
  width: 66px;
  height: 66px;
  flex: 0 0 66px;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;

  background: rgba(255, 255, 255, 0.12);
  color: var(--sh-white);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);

  font-size: 1.5rem;
}

.footer-opportunity-eyebrow {
  display: block;
  margin-bottom: 6px;

  color: #d8c6ff;

  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-opportunity-title {
  margin: 0;

  color: var(--sh-white);

  font-size: clamp(1.35rem, 2.3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}

.footer-opportunity-description {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.93rem;
}

.footer-opportunity-button {
  position: relative;
  z-index: 1;

  display: inline-flex;
  min-height: 52px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 12px;

  padding: 13px 22px;

  border-radius: 15px;

  background: var(--sh-white);
  color: var(--sh-primary-deep);

  box-shadow: 0 13px 32px rgba(0, 0, 0, 0.19);

  font-size: 0.91rem;
  font-weight: 800;

  transition:
    transform var(--sh-transition),
    box-shadow var(--sh-transition);
}

.footer-opportunity-button:hover {
  color: var(--sh-primary-deep);
  transform: translateY(-3px);
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.27);
}

.footer-opportunity-button-icon {
  display: inline-flex;
  transition: transform var(--sh-transition);
}

.footer-opportunity-button:hover .footer-opportunity-button-icon {
  transform: translateX(4px);
}

/* =========================================================
   13. FOOTER MAIN GRID
========================================================= */

.footer-main {
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns:
    minmax(270px, 1.45fr)
    repeat(3, minmax(165px, 0.7fr));

  gap: 48px;

  padding: 72px 0 54px;
}

.footer-brand-column {
  max-width: 420px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;

  color: var(--sh-white);

  transition:
    transform var(--sh-transition),
    opacity var(--sh-transition);
}

.footer-brand:hover {
  color: var(--sh-white);
  transform: translateY(-2px);
}

.footer-brand-mark {
  position: relative;

  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 17px;

  background: var(--sh-gradient-primary);
  color: var(--sh-white);

  box-shadow: 0 14px 32px rgba(113, 56, 232, 0.35);

  font-size: 1.2rem;
}

.footer-brand-mark-glow {
  position: absolute;
  inset: 7px;

  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
}

.footer-brand-mark i {
  position: relative;
  z-index: 1;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.footer-brand-name {
  display: flex;
  gap: 4px;

  font-size: 1.35rem;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.footer-brand-smart {
  color: var(--sh-white);
}

.footer-brand-hiring {
  background: linear-gradient(135deg, #cbb3ff, #78e4d7);

  background-clip: text;
  -webkit-background-clip: text;

  color: transparent;
  -webkit-text-fill-color: transparent;
}

.footer-brand-tagline {
  margin-top: 5px;
  color: var(--sh-footer-muted);
  font-size: 0.72rem;
  font-weight: 650;
}

.footer-description {
  max-width: 390px;
  margin: 24px 0 0;

  color: var(--sh-footer-muted);

  font-size: 0.92rem;
  line-height: 1.85;
}

.footer-trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;

  margin-top: 22px;
}

.footer-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 9px 12px;

  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--sh-radius-pill);

  background: rgba(255, 255, 255, 0.045);
  color: #cfc6da;

  font-size: 0.76rem;
  font-weight: 650;
}

.footer-trust-icon {
  display: inline-flex;
  color: #6de1c8;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-top: 23px;
  padding: 11px 15px;

  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;

  background: rgba(255, 255, 255, 0.06);
  color: var(--sh-white);

  font-size: 0.84rem;
  font-weight: 750;

  transition:
    color var(--sh-transition),
    background-color var(--sh-transition),
    border-color var(--sh-transition),
    transform var(--sh-transition);
}

.footer-cta:hover {
  border-color: rgba(167, 126, 255, 0.5);
  background: rgba(113, 56, 232, 0.16);
  color: var(--sh-white);
  transform: translateY(-2px);
}

.footer-cta-icon {
  display: inline-flex;
  transition: transform var(--sh-transition);
}

.footer-cta:hover .footer-cta-icon {
  transform: translate(3px, -3px);
}

/* =========================================================
   14. FOOTER SOCIAL LINKS
========================================================= */

.footer-social {
  margin-top: 28px;
}

.footer-social-label {
  display: block;
  margin-bottom: 12px;

  color: #c7bdcf;

  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social-link {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;

  background: rgba(255, 255, 255, 0.055);
  color: #c9c0d3;

  font-size: 1rem;

  transition:
    color var(--sh-transition),
    background-color var(--sh-transition),
    border-color var(--sh-transition),
    transform var(--sh-transition);
}

.footer-social-link:hover {
  border-color: rgba(167, 126, 255, 0.48);
  background: rgba(113, 56, 232, 0.18);
  color: var(--sh-white);
  transform: translateY(-3px);
}

.footer-social-link.is-placeholder {
  cursor: default;
}

/* =========================================================
   15. FOOTER LINK COLUMNS
========================================================= */

.footer-links-column {
  min-width: 0;
}

.footer-heading {
  position: relative;

  margin: 7px 0 23px;
  padding-bottom: 13px;

  color: var(--sh-white);

  font-size: 0.91rem;
  font-weight: 800;
  letter-spacing: 0.015em;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;

  width: 34px;
  height: 3px;

  border-radius: var(--sh-radius-pill);

  background: var(--sh-gradient-primary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.footer-links li {
  margin: 0;
}

.footer-links a {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 9px;

  min-height: 39px;
  padding: 7px 9px 7px 0;

  border-radius: 9px;

  color: var(--sh-footer-muted);

  font-size: 0.83rem;
  font-weight: 580;

  transition:
    color var(--sh-transition),
    padding-left var(--sh-transition),
    background-color var(--sh-transition);
}

.footer-links a:hover {
  padding-left: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--sh-white);
}

.footer-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #9685aa;

  font-size: 0.91rem;

  transition: color var(--sh-transition);
}

.footer-links a:hover .footer-link-icon {
  color: #ad84ff;
}

.footer-link-arrow {
  display: inline-flex;
  justify-content: flex-end;

  opacity: 0;
  transform: translateX(-4px);

  transition:
    opacity var(--sh-transition),
    transform var(--sh-transition);
}

.footer-links a:hover .footer-link-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* =========================================================
   16. FOOTER SECURITY STRIP
========================================================= */

.footer-security-strip {
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;

  padding: 22px 0;

  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-security-item {
  display: flex;
  align-items: center;
  gap: 13px;

  min-width: 0;
  padding: 14px 16px;

  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.035);
}

.footer-security-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: linear-gradient(
    135deg,
    rgba(113, 56, 232, 0.22),
    rgba(22, 184, 166, 0.13)
  );

  color: #bea2ff;

  font-size: 1.04rem;
}

.footer-security-item div {
  min-width: 0;
}

.footer-security-item strong,
.footer-security-item span {
  display: flex;
}

.footer-security-item strong {
  color: #f5f1fa;
  font-size: 0.8rem;
  font-weight: 750;
}

.footer-security-item div > span {
  margin-top: 2px;
  color: #988da5;
  font-size: 0.71rem;
}

/* =========================================================
   17. FOOTER BOTTOM
========================================================= */

.footer-bottom {
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;

  padding: 26px 0 32px;

  color: #91869d;

  font-size: 0.76rem;
}

.footer-copyright {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.footer-bottom-links a {
  transition: color var(--sh-transition);
}

.footer-bottom-links a:hover {
  color: var(--sh-white);
}

.footer-tagline {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;

  color: #b5aabd;
}

.footer-tagline-icon {
  display: inline-flex;
  color: #b998ff;
}

/* =========================================================
   18. TABLET NAVIGATION
========================================================= */

@media (max-width: 1199.98px) {
  .sh-navbar-inner {
    gap: 16px;
  }

  .sh-navbar-menu {
    gap: 14px;
  }

  .sh-nav-list {
    gap: 1px;
  }

  .sh-nav-link {
    padding-right: 11px;
    padding-left: 11px;
  }

  .footer-main {
    grid-template-columns:
      minmax(260px, 1.2fr)
      repeat(3, minmax(145px, 0.75fr));

    gap: 30px;
  }
}

/* =========================================================
   19. MOBILE NAVIGATION
========================================================= */

@media (max-width: 991.98px) {
  :root {
    --sh-navbar-height: 76px;
  }

  .sh-navbar-wrapper {
    background: rgba(255, 255, 255, 0.92);
  }

  .sh-navbar-inner {
    min-height: var(--sh-navbar-height);
  }

  .sh-brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .sh-brand-name {
    font-size: 1.12rem;
  }

  .sh-brand-tagline {
    font-size: 0.64rem;
  }

  .sh-navbar-toggle {
    position: relative;
    z-index: 1002;

    display: inline-flex;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid var(--sh-border);
    border-radius: 13px;

    background: var(--sh-white);
    color: var(--sh-text);

    box-shadow: var(--sh-shadow-xs);

    font-size: 1.35rem;

    transition:
      color var(--sh-transition),
      border-color var(--sh-transition),
      background-color var(--sh-transition),
      transform var(--sh-transition);
  }

  .sh-navbar-toggle:hover,
  .sh-navbar-toggle.is-active {
    border-color: rgba(113, 56, 232, 0.2);
    background: var(--sh-primary-soft);
    color: var(--sh-primary);
  }

  .sh-navbar-toggle:active {
    transform: scale(0.95);
  }

  .sh-navbar-toggle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .sh-navbar-menu {
    position: fixed;
    top: calc(var(--sh-navbar-height) + 8px);
    right: 12px;
    left: 12px;
    z-index: 1001;

    display: flex;
    max-height: calc(100vh - var(--sh-navbar-height) - 24px);
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 14px;

    padding: 17px;

    overflow-y: auto;

    border: 1px solid rgba(218, 212, 228, 0.85);
    border-radius: 24px;

    background: linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.98),
      rgba(249, 247, 255, 0.97)
    );

    box-shadow: 0 28px 80px rgba(22, 14, 40, 0.2);

    -webkit-backdrop-filter: blur(22px);
    backdrop-filter: blur(22px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(-16px) scale(0.98);
    transform-origin: top center;

    transition:
      opacity var(--sh-transition),
      visibility var(--sh-transition),
      transform var(--sh-transition);
  }

  .sh-navbar-menu.is-open {
    z-index: 101;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  /* body.sh-mobile-menu-open::before {
        content: "";
        position: fixed;
        inset: var(--sh-navbar-height) 0 0;
        z-index: 100;

        background: rgba(11, 7, 20, 0.36);

        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
      } */

  .sh-mobile-menu-header {
    display: block;
    padding: 4px 3px 14px;
    border-bottom: 1px solid var(--sh-border);
  }

  .sh-mobile-menu-brand {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .sh-mobile-menu-brand-icon {
    display: inline-flex;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: var(--sh-gradient-soft);
    color: var(--sh-primary);

    font-size: 1.02rem;
  }

  .sh-mobile-menu-title,
  .sh-mobile-menu-subtitle {
    display: block;
  }

  .sh-mobile-menu-title {
    color: var(--sh-text);
    font-size: 0.91rem;
    font-weight: 800;
  }

  .sh-mobile-menu-subtitle {
    margin-top: 1px;
    color: var(--sh-text-muted);
    font-size: 0.72rem;
  }

  .sh-nav-list {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    gap: 6px;
  }

  .sh-nav-link {
    width: 100%;
    min-height: 51px;
    justify-content: flex-start;
    gap: 12px;

    padding: 10px 13px;

    border: 1px solid transparent;
    border-radius: 13px;

    font-size: 0.9rem;
  }

  .sh-nav-link::after {
    display: none;
  }

  .sh-nav-link:hover {
    border-color: rgba(113, 56, 232, 0.1);
    transform: none;
  }

  .sh-nav-link.active {
    border-color: rgba(113, 56, 232, 0.12);
    background: linear-gradient(
      135deg,
      rgba(113, 56, 232, 0.12),
      rgba(22, 184, 166, 0.06)
    );
  }

  .sh-nav-icon {
    display: inline-flex;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: rgba(113, 56, 232, 0.07);
    color: var(--sh-primary);

    font-size: 0.95rem;
  }

  .sh-navbar-actions {
    width: 100%;
  }

  .sh-nav-cta {
    width: 100%;
    min-height: 53px;
    border-radius: 14px;
  }

  .sh-nav-cta-text {
    flex: 1;
    text-align: left;
  }

  .sh-mobile-menu-footer {
    display: flex;
    align-items: center;
    gap: 9px;

    margin-top: 1px;
    padding: 12px 13px;

    border: 1px solid rgba(22, 184, 166, 0.13);
    border-radius: 12px;

    background: var(--sh-secondary-soft);
    color: #276d65;

    font-size: 0.72rem;
    font-weight: 650;
  }

  .sh-mobile-menu-footer-icon {
    display: inline-flex;
    color: var(--sh-secondary-dark);
    font-size: 0.92rem;
  }

  /* Footer tablet layout */

  .footer-opportunity-banner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 46px 34px;
  }

  .footer-brand-column {
    max-width: none;
  }

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

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

  .footer-bottom-links {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

/* =========================================================
   20. SMALL MOBILE
========================================================= */

@media (max-width: 767.98px) {
  body {
    font-size: 15px;
  }

  .public-footer {
    margin-top: 65px;
  }

  .footer-opportunity-banner {
    margin-top: 44px;
    padding: 25px 22px;
    border-radius: 24px;
  }

  .footer-opportunity-content {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .footer-opportunity-icon {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
    border-radius: 16px;
    font-size: 1.2rem;
  }

  .footer-opportunity-title {
    font-size: 1.38rem;
  }

  .footer-opportunity-description {
    font-size: 0.86rem;
  }

  .footer-opportunity-button {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 52px 0 42px;
  }

  .footer-brand-column {
    max-width: 100%;
  }

  .footer-heading {
    margin-bottom: 16px;
  }

  .footer-links {
    gap: 3px;
  }

  .footer-links a {
    min-height: 43px;
  }

  .footer-security-item {
    padding: 13px;
  }

  .footer-bottom {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;

    padding-top: 23px;
  }

  .footer-bottom-links {
    order: initial;
  }

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

  .loader-container {
    width: min(100%, 310px);
    min-width: 0;
    min-height: 158px;
    padding: 29px 25px;
  }
}

/* =========================================================
   21. EXTRA-SMALL MOBILE
========================================================= */

@media (max-width: 479.98px) {
  .sh-brand-tagline {
    display: none;
  }

  .sh-navbar-menu {
    top: calc(var(--sh-navbar-height) + 5px);
    right: 8px;
    left: 8px;
    padding: 14px;
    border-radius: 20px;
  }

  .footer-trust-points {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-trust-item {
    width: fit-content;
  }

  .footer-social-links {
    flex-wrap: wrap;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
  }
}

/* =========================================================
   22. REDUCED MOTION
========================================================= */

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   SMART HIRING — PREMIUM HOME PAGE
========================================================= */

/* =========================================================
   1. SHARED HOME PAGE SECTIONS
========================================================= */

.sh-section {
  position: relative;
  padding: 104px 0;
}

.sh-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 46px;
}

.sh-section-heading-copy {
  max-width: 680px;
}

.sh-centered-heading {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.sh-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-bottom: 15px;

  color: var(--sh-primary);

  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.sh-section-eyebrow i {
  font-size: 0.9rem;
}

.sh-eyebrow-muted {
  color: var(--sh-text-muted);
}

.sh-section-title {
  margin: 0;

  color: var(--sh-text);

  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.sh-section-title span {
  display: block;

  background: var(--sh-gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;

  color: transparent;
  -webkit-text-fill-color: transparent;
}

.sh-section-description {
  max-width: 680px;
  margin: 18px 0 0;

  color: var(--sh-text-secondary);

  font-size: 1rem;
  line-height: 1.8;
}

.sh-centered-heading .sh-section-description {
  margin-right: auto;
  margin-left: auto;
}

.sh-section-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;

  padding: 11px 16px;

  border: 1px solid var(--sh-border);
  border-radius: 12px;

  background: rgba(255, 255, 255, 0.65);
  color: var(--sh-text-secondary);

  font-size: 0.87rem;
  font-weight: 750;

  transition:
    color var(--sh-transition),
    border-color var(--sh-transition),
    background-color var(--sh-transition),
    box-shadow var(--sh-transition),
    transform var(--sh-transition);
}

.sh-section-link i {
  transition: transform var(--sh-transition);
}

.sh-section-link:hover {
  border-color: rgba(113, 56, 232, 0.24);
  background: var(--sh-white);
  color: var(--sh-primary);
  box-shadow: var(--sh-shadow-sm);
  transform: translateY(-2px);
}

.sh-section-link:hover i {
  transform: translate(3px, -3px);
}

/* =========================================================
   2. HOME REVEAL DELAYS
========================================================= */

.sh-reveal {
  transition-delay: var(--reveal-delay, 0ms);
}

/* =========================================================
   3. HERO SECTION
========================================================= */

.sh-home-hero {
  position: relative;

  min-height: calc(100vh - var(--sh-navbar-height));

  padding: 82px 0 58px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 8% 12%,
      rgba(113, 56, 232, 0.13),
      transparent 30%
    ),
    radial-gradient(
      circle at 92% 22%,
      rgba(22, 184, 166, 0.11),
      transparent 28%
    ),
    linear-gradient(180deg, #fcfbff 0%, #f8f7fc 58%, #f4f7fb 100%);
}

.sh-home-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;

  height: 150px;

  background: linear-gradient(180deg, transparent, rgba(247, 248, 252, 0.96));

  pointer-events: none;
}

.sh-hero-grid {
  position: absolute;
  inset: 0;

  opacity: 0.45;

  background-image:
    linear-gradient(rgba(113, 56, 232, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(113, 56, 232, 0.035) 1px, transparent 1px);

  background-size: 44px 44px;

  mask-image: linear-gradient(to bottom, black, transparent 88%);

  pointer-events: none;
}

.sh-hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(4px);
}

.sh-hero-orb-one {
  top: 110px;
  left: -180px;

  width: 430px;
  height: 430px;

  background: radial-gradient(
    circle,
    rgba(113, 56, 232, 0.17),
    rgba(113, 56, 232, 0)
  );

  animation: sh-orb-float 9s ease-in-out infinite;
}

.sh-hero-orb-two {
  top: 50px;
  right: -210px;

  width: 520px;
  height: 520px;

  background: radial-gradient(
    circle,
    rgba(22, 184, 166, 0.14),
    rgba(22, 184, 166, 0)
  );

  animation: sh-orb-float 11s ease-in-out infinite reverse;
}

@keyframes sh-orb-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -22px, 0);
  }
}

.sh-hero-layout {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns:
    minmax(0, 1.03fr)
    minmax(430px, 0.97fr);

  align-items: center;
  gap: clamp(55px, 7vw, 100px);
}

.sh-hero-copy {
  max-width: 720px;
}

.sh-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  margin-bottom: 24px;
  padding: 9px 13px;

  border: 1px solid rgba(113, 56, 232, 0.14);
  border-radius: var(--sh-radius-pill);

  background: rgba(255, 255, 255, 0.78);
  color: var(--sh-primary-dark);

  box-shadow: 0 8px 25px rgba(45, 25, 87, 0.06);

  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);

  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.025em;
}

.sh-hero-badge-icon {
  display: inline-flex;
  color: var(--sh-primary);
}

.sh-live-dot {
  position: relative;

  width: 8px;
  height: 8px;

  border-radius: 50%;
  background: var(--sh-secondary);

  box-shadow: 0 0 0 4px rgba(22, 184, 166, 0.12);
}

.sh-live-dot::after {
  content: "";
  position: absolute;
  inset: -5px;

  border: 1px solid rgba(22, 184, 166, 0.4);
  border-radius: 50%;

  animation: sh-live-pulse 1.8s ease-out infinite;
}

@keyframes sh-live-pulse {
  0% {
    opacity: 0.75;
    transform: scale(0.5);
  }

  100% {
    opacity: 0;
    transform: scale(1.65);
  }
}

.sh-hero-title {
  max-width: 760px;
  margin: 0;

  color: var(--sh-text);

  font-size: clamp(3rem, 5.8vw, 5.35rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.98;
}

.sh-hero-title span {
  display: block;
  margin-top: 12px;

  background: linear-gradient(
    110deg,
    var(--sh-primary-dark) 0%,
    var(--sh-primary-light) 45%,
    var(--sh-secondary-dark) 100%
  );

  background-clip: text;
  -webkit-background-clip: text;

  color: transparent;
  -webkit-text-fill-color: transparent;
}

.sh-hero-description {
  max-width: 660px;
  margin: 27px 0 0;

  color: var(--sh-text-secondary);

  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.85;
}

.sh-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;

  margin-top: 34px;
}

.sh-hero-primary-btn,
.sh-hero-secondary-btn,
.sh-premium-btn,
.sh-final-cta-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 11px;

  border-radius: 15px;

  font-size: 0.91rem;
  font-weight: 800;

  transition:
    color var(--sh-transition),
    border-color var(--sh-transition),
    background-color var(--sh-transition),
    box-shadow var(--sh-transition),
    transform var(--sh-transition);
}

.sh-hero-primary-btn {
  position: relative;
  padding: 13px 21px;

  overflow: hidden;

  background: var(--sh-gradient-primary);
  color: var(--sh-white);

  box-shadow: var(--sh-shadow-primary);
}

.sh-hero-primary-btn::before {
  content: "";
  position: absolute;
  top: -70%;
  left: -70%;

  width: 46%;
  height: 240%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.38),
    transparent
  );

  transform: rotate(24deg);
  transition: left 700ms ease;
}

.sh-hero-primary-btn > * {
  position: relative;
  z-index: 1;
}

.sh-hero-primary-btn:hover {
  color: var(--sh-white);
  box-shadow: 0 22px 48px rgba(113, 56, 232, 0.35);
  transform: translateY(-3px);
}

.sh-hero-primary-btn:hover::before {
  left: 145%;
}

.sh-hero-button-icon {
  display: inline-flex;
}

.sh-hero-button-arrow {
  transition: transform var(--sh-transition);
}

.sh-hero-primary-btn:hover .sh-hero-button-arrow {
  transform: translateX(4px);
}

.sh-hero-secondary-btn {
  padding: 10px 17px 10px 10px;

  border: 1px solid var(--sh-border);
  background: rgba(255, 255, 255, 0.7);
  color: var(--sh-text-secondary);

  box-shadow: var(--sh-shadow-xs);
}

.sh-hero-secondary-btn:hover {
  border-color: rgba(113, 56, 232, 0.2);
  background: var(--sh-white);
  color: var(--sh-primary);
  box-shadow: var(--sh-shadow-sm);
  transform: translateY(-2px);
}

.sh-play-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;

  border-radius: 11px;

  background: var(--sh-primary-soft);
  color: var(--sh-primary);

  font-size: 1rem;
}

.sh-hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;

  margin-top: 36px;
}

.sh-trust-avatars {
  display: flex;
  align-items: center;
  padding-left: 8px;
}

.sh-trust-avatars span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;

  margin-left: -8px;

  border: 3px solid #fbfaff;
  border-radius: 50%;

  background: linear-gradient(145deg, #eee6ff, #d8f6f2);

  color: var(--sh-primary);

  box-shadow: var(--sh-shadow-xs);
}

.sh-trust-avatars span:nth-child(2) {
  color: var(--sh-secondary-dark);
}

.sh-trust-avatars span:nth-child(3) {
  color: var(--sh-primary-dark);
}

.sh-hero-trust-copy strong,
.sh-hero-trust-copy small {
  display: block;
}

.sh-hero-trust-copy strong {
  color: var(--sh-text);
  font-size: 0.83rem;
  font-weight: 800;
}

.sh-hero-trust-copy small {
  margin-top: 2px;
  color: var(--sh-text-muted);
  font-size: 0.73rem;
}

/* =========================================================
   4. HERO VISUAL
========================================================= */

.sh-hero-visual {
  position: relative;
  padding: 20px;
}

.sh-hero-visual::before {
  content: "";
  position: absolute;
  inset: 7% 8% 4% 7%;

  border-radius: 42px;

  background: var(--sh-gradient-primary);
  opacity: 0.16;
  filter: blur(40px);

  transform: rotate(-4deg);
}

.sh-hero-image-frame {
  position: relative;

  min-height: 585px;

  overflow: visible;

  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 34px;

  background: var(--sh-white);

  box-shadow:
    0 35px 90px rgba(33, 20, 57, 0.2),
    0 12px 32px rgba(33, 20, 57, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);

  transform: rotate(1.3deg);
}

.sh-hero-image-frame::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 2;

  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 26px;

  pointer-events: none;
}

.sh-hero-image {
  width: 100%;
  height: 585px;

  border-radius: 34px;
  object-fit: cover;
  object-position: center;

  filter: saturate(0.92) contrast(1.03);
}

.sh-hero-image-overlay {
  position: absolute;
  inset: 0;

  border-radius: 34px;

  background:
    linear-gradient(180deg, rgba(15, 9, 30, 0.03), rgba(15, 9, 30, 0.1)),
    linear-gradient(
      135deg,
      rgba(113, 56, 232, 0.09),
      transparent 46%,
      rgba(22, 184, 166, 0.07)
    );

  pointer-events: none;
}

.sh-hero-float-card {
  position: absolute;
  z-index: 3;

  display: flex;
  align-items: center;
  gap: 12px;

  min-width: 225px;
  padding: 14px 16px;

  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 17px;

  background: rgba(255, 255, 255, 0.88);

  box-shadow: 0 20px 45px rgba(24, 14, 43, 0.17);

  -webkit-backdrop-filter: blur(17px);
  backdrop-filter: blur(17px);

  transform: rotate(-1.3deg);
}

.sh-hero-float-card strong,
.sh-hero-float-card span {
  display: block;
}

.sh-hero-float-card strong {
  color: var(--sh-text);
  font-size: 0.79rem;
  font-weight: 800;
}

.sh-hero-float-card span {
  margin-top: 2px;
  color: var(--sh-text-muted);
  font-size: 0.68rem;
}

.sh-hero-float-jobs {
  top: 56px;
  left: -62px;

  animation: sh-card-float 5s ease-in-out infinite;
}

.sh-hero-float-trusted {
  right: -52px;
  bottom: 105px;

  animation: sh-card-float 5.8s ease-in-out infinite reverse;
}

@keyframes sh-card-float {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -10px;
  }
}

.sh-float-icon,
.sh-float-success-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;

  border-radius: 13px;

  font-size: 1rem;
}

.sh-float-icon {
  background: var(--sh-primary-soft);
  color: var(--sh-primary);
}

.sh-float-success-icon {
  background: var(--sh-secondary-soft);
  color: var(--sh-secondary-dark);
}

.sh-hero-mini-card {
  position: absolute;
  right: 26px;
  bottom: -20px;
  z-index: 3;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 11px 14px;

  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--sh-radius-pill);

  background: var(--sh-footer-bg);
  color: var(--sh-white);

  box-shadow: 0 17px 35px rgba(15, 9, 30, 0.27);

  font-size: 0.74rem;
  font-weight: 750;

  transform: rotate(-1.3deg);
}

.sh-hero-mini-card i {
  color: #f8b64c;
}

/* =========================================================
   5. HERO STATS STRIP
========================================================= */

.sh-hero-stats {
  position: relative;
  z-index: 3;

  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    auto
    minmax(0, 1fr)
    auto
    minmax(0, 1fr);

  align-items: center;
  gap: 27px;

  margin-top: 74px;
  padding: 23px 27px;

  border: 1px solid rgba(218, 212, 228, 0.72);
  border-radius: 23px;

  background: rgba(255, 255, 255, 0.8);

  box-shadow:
    0 18px 50px rgba(29, 18, 49, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);

  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.sh-stat-item {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 13px;
}

.sh-stat-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(113, 56, 232, 0.1);
  border-radius: 14px;

  background: var(--sh-gradient-soft);
  color: var(--sh-primary);

  font-size: 1rem;
}

.sh-stat-copy {
  min-width: 0;
}

.sh-stat-copy strong,
.sh-stat-copy span {
  display: block;
}

.sh-stat-copy strong {
  color: var(--sh-text);
  font-size: 0.84rem;
  font-weight: 800;
}

.sh-stat-copy span {
  margin-top: 2px;
  color: var(--sh-text-muted);
  font-size: 0.71rem;
}

.sh-stat-divider {
  width: 1px;
  height: 42px;

  background: linear-gradient(
    transparent,
    var(--sh-border-strong),
    transparent
  );
}

/* =========================================================
   6. ACTIVE JOBS
========================================================= */

.sh-active-jobs-section {
  background: linear-gradient(
    180deg,
    var(--sh-bg) 0%,
    #ffffff 48%,
    var(--sh-bg) 100%
  );
}

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

.sh-job-card {
  position: relative;

  display: flex;
  min-width: 0;
  min-height: 345px;
  flex-direction: column;

  overflow: hidden;

  border: 1px solid var(--sh-border);
  border-radius: 21px;

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 1),
    rgba(251, 250, 254, 0.96)
  );

  box-shadow: 0 12px 34px rgba(30, 18, 51, 0.055);

  transition:
    border-color var(--sh-transition),
    box-shadow var(--sh-transition),
    transform var(--sh-transition);
}

.sh-job-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;

  height: 4px;

  background: var(--sh-gradient-primary);

  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;

  transition:
    opacity var(--sh-transition),
    transform var(--sh-transition);
}

.sh-job-card::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;

  width: 180px;
  height: 180px;

  border-radius: 50%;

  background: rgba(113, 56, 232, 0.055);

  transition: transform var(--sh-transition-slow);
}

.sh-job-card:hover {
  border-color: rgba(113, 56, 232, 0.22);

  box-shadow: 0 25px 58px rgba(35, 20, 61, 0.13);

  transform: translateY(-8px);
}

.sh-job-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.sh-job-card:hover::after {
  transform: scale(1.25);
}

.sh-job-card-header {
  position: relative;
  z-index: 1;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;

  padding: 20px 20px 0;
}

.sh-job-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  padding: 7px 10px;

  border: 1px solid rgba(34, 160, 107, 0.14);
  border-radius: var(--sh-radius-pill);

  background: rgba(34, 160, 107, 0.075);
  color: #237d57;

  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.sh-status-dot {
  width: 7px;
  height: 7px;

  border-radius: 50%;
  background: var(--sh-success);

  box-shadow: 0 0 0 4px rgba(34, 160, 107, 0.11);
}

.sh-job-card-arrow {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--sh-border);
  border-radius: 11px;

  background: var(--sh-white);
  color: var(--sh-text-muted);

  font-size: 0.88rem;

  transition:
    color var(--sh-transition),
    border-color var(--sh-transition),
    background-color var(--sh-transition),
    transform var(--sh-transition);
}

.sh-job-card:hover .sh-job-card-arrow {
  border-color: transparent;
  background: var(--sh-primary-soft);
  color: var(--sh-primary);
  transform: translate(2px, -2px);
}

.sh-job-card-body {
  position: relative;
  z-index: 1;

  display: flex;
  flex: 1;
  align-items: flex-start;
  flex-direction: column;

  padding: 22px 20px 21px;
}

.sh-company-icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;

  margin-bottom: 20px;

  border: 1px solid rgba(113, 56, 232, 0.11);
  border-radius: 16px;

  background: linear-gradient(
    145deg,
    var(--sh-primary-soft),
    var(--sh-secondary-soft)
  );

  color: var(--sh-primary);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);

  font-size: 1.08rem;
}

.sh-job-card-content {
  min-width: 0;
  width: 100%;
}

.sh-job-title {
  margin: 0;

  color: var(--sh-text);

  font-size: 1.06rem;
  font-weight: 820;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.sh-job-title a {
  display: -webkit-box;
  overflow: hidden;

  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;

  transition: color var(--sh-transition);
}

.sh-job-title a:hover {
  color: var(--sh-primary);
}

.sh-job-company,
.sh-job-location {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;

  margin: 12px 0 0;

  color: var(--sh-text-muted);

  font-size: 0.78rem;
  line-height: 1.5;
}

.sh-job-company i,
.sh-job-location i {
  flex: 0 0 auto;
  color: #91879d;
}

.sh-job-company span,
.sh-job-location span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sh-job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;

  margin-top: 17px;
}

.sh-job-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 6px 8px;

  border: 1px solid var(--sh-border);
  border-radius: 8px;

  background: var(--sh-surface-soft);
  color: var(--sh-text-muted);

  font-size: 0.66rem;
  font-weight: 650;
}

.sh-job-card-footer {
  position: relative;
  z-index: 1;

  padding: 0 20px 20px;
}

.sh-job-view {
  display: flex;
  min-height: 45px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  padding: 9px 10px 9px 14px;

  border: 1px solid var(--sh-border);
  border-radius: 12px;

  background: var(--sh-white);
  color: var(--sh-text-secondary);

  font-size: 0.78rem;
  font-weight: 800;

  transition:
    color var(--sh-transition),
    border-color var(--sh-transition),
    background-color var(--sh-transition);
}

.sh-job-view-icon {
  display: inline-flex;
  width: 29px;
  height: 29px;
  align-items: center;
  justify-content: center;

  border-radius: 9px;

  background: var(--sh-primary-soft);
  color: var(--sh-primary);

  transition:
    color var(--sh-transition),
    background-color var(--sh-transition),
    transform var(--sh-transition);
}

.sh-job-view:hover {
  border-color: rgba(113, 56, 232, 0.2);
  color: var(--sh-primary);
}

.sh-job-view:hover .sh-job-view-icon {
  background: var(--sh-primary);
  color: var(--sh-white);
  transform: translateX(3px);
}

/* =========================================================
   7. EMPTY STATE
========================================================= */

.sh-empty-state {
  max-width: 650px;
  margin: 0 auto;
  padding: 64px 35px;

  border: 1px dashed rgba(113, 56, 232, 0.24);
  border-radius: 25px;

  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(113, 56, 232, 0.09),
      transparent 42%
    ),
    var(--sh-white);

  box-shadow: var(--sh-shadow-sm);

  text-align: center;
}

.sh-empty-icon {
  display: inline-flex;
  width: 72px;
  height: 72px;
  align-items: center;
  justify-content: center;

  margin-bottom: 22px;

  border: 1px solid rgba(113, 56, 232, 0.12);
  border-radius: 21px;

  background: var(--sh-primary-soft);
  color: var(--sh-primary);

  font-size: 1.55rem;
}

.sh-empty-state h3 {
  margin: 0;
  color: var(--sh-text);
  font-size: 1.35rem;
  font-weight: 820;
}

.sh-empty-state p {
  max-width: 430px;
  margin: 13px auto 24px;
  color: var(--sh-text-muted);
}

/* =========================================================
   8. RECENTLY CLOSED JOBS
========================================================= */

.sh-closed-section {
  padding-top: 88px;
  padding-bottom: 88px;

  border-top: 1px solid var(--sh-border);
  border-bottom: 1px solid var(--sh-border);

  background: linear-gradient(180deg, #f2f3f8, #f7f8fc);
}

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

.sh-closed-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 15px;

  min-width: 0;
  padding: 19px;

  border: 1px solid var(--sh-border);
  border-radius: 17px;

  background: rgba(255, 255, 255, 0.72);

  box-shadow: var(--sh-shadow-xs);

  transition:
    border-color var(--sh-transition),
    box-shadow var(--sh-transition),
    transform var(--sh-transition);
}

.sh-closed-card:hover {
  border-color: var(--sh-border-strong);
  box-shadow: var(--sh-shadow-sm);
  transform: translateY(-3px);
}

.sh-closed-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;

  border-radius: 13px;

  background: #edf0f4;
  color: #7b8490;

  font-size: 1.08rem;
}

.sh-closed-content {
  min-width: 0;
}

.sh-closed-label {
  display: block;

  margin-bottom: 5px;

  color: var(--sh-text-light);

  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sh-closed-content h3 {
  overflow: hidden;

  margin: 0;

  color: var(--sh-text-secondary);

  font-size: 0.9rem;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sh-closed-content p {
  display: flex;
  align-items: center;
  gap: 7px;

  margin: 7px 0 0;

  color: var(--sh-text-muted);

  font-size: 0.7rem;
}

.sh-closed-content p span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sh-closed-badge {
  padding: 6px 9px;

  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius-pill);

  background: #f0f1f4;
  color: #777f88;

  font-size: 0.63rem;
  font-weight: 750;
}

/* =========================================================
   9. HOW IT WORKS
========================================================= */

.sh-process-section {
  overflow: hidden;

  background:
    radial-gradient(
      circle at 50% 45%,
      rgba(113, 56, 232, 0.07),
      transparent 38%
    ),
    var(--sh-white);
}

.sh-process-grid {
  position: relative;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.sh-process-grid::before {
  content: "";
  position: absolute;
  top: 60px;
  right: 17%;
  left: 17%;

  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(113, 56, 232, 0.25),
    rgba(22, 184, 166, 0.22),
    transparent
  );
}

.sh-process-card {
  position: relative;
  z-index: 1;

  min-height: 315px;
  padding: 32px;

  overflow: hidden;

  border: 1px solid var(--sh-border);
  border-radius: 22px;

  background: linear-gradient(145deg, var(--sh-white), var(--sh-surface-soft));

  box-shadow: var(--sh-shadow-sm);

  transition:
    border-color var(--sh-transition),
    box-shadow var(--sh-transition),
    transform var(--sh-transition);
}

.sh-process-card:hover {
  border-color: rgba(113, 56, 232, 0.21);
  box-shadow: var(--sh-shadow-md);
  transform: translateY(-7px);
}

.sh-process-card::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -55px;

  width: 140px;
  height: 140px;

  border-radius: 50%;
  background: rgba(113, 56, 232, 0.055);
}

.sh-process-number {
  position: absolute;
  top: 23px;
  right: 25px;

  color: rgba(113, 56, 232, 0.11);

  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 1;
}

.sh-process-icon {
  position: relative;
  z-index: 1;

  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;

  margin-bottom: 24px;

  border: 1px solid rgba(113, 56, 232, 0.12);
  border-radius: 17px;

  background: var(--sh-gradient-soft);
  color: var(--sh-primary);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);

  font-size: 1.2rem;

  transition:
    color var(--sh-transition),
    background-color var(--sh-transition),
    transform var(--sh-transition);
}

.sh-process-card:hover .sh-process-icon {
  background: var(--sh-gradient-primary);
  color: var(--sh-white);
  transform: rotate(-4deg) scale(1.05);
}

.sh-process-card h3 {
  position: relative;
  z-index: 1;

  margin: 0;

  color: var(--sh-text);

  font-size: 1.18rem;
  font-weight: 820;
  letter-spacing: -0.025em;
}

.sh-process-card p {
  position: relative;
  z-index: 1;

  margin: 13px 0 0;

  color: var(--sh-text-muted);

  font-size: 0.86rem;
  line-height: 1.75;
}

.sh-process-arrow {
  position: absolute;
  top: 47px;
  right: -38px;
  z-index: 4;

  display: inline-flex;
  width: 36px;
  height: 28px;
  align-items: center;
  justify-content: center;

  border-radius: var(--sh-radius-pill);

  background: var(--sh-white);
  color: var(--sh-primary);

  box-shadow: var(--sh-shadow-xs);
}

/* =========================================================
   10. WHY SMART HIRING
========================================================= */

.sh-why-section {
  background: linear-gradient(135deg, #f6f3fd 0%, #f7f9fc 50%, #eefaf8 100%);
}

.sh-why-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(55px, 8vw, 110px);
}

.sh-why-copy {
  max-width: 560px;
}

.sh-premium-btn {
  margin-top: 27px;
  padding: 13px 19px;

  background: var(--sh-gradient-primary);
  color: var(--sh-white);

  box-shadow: var(--sh-shadow-primary);
}

.sh-premium-btn:hover {
  color: var(--sh-white);
  box-shadow: 0 20px 45px rgba(113, 56, 232, 0.33);
  transform: translateY(-3px);
}

.sh-premium-btn i {
  transition: transform var(--sh-transition);
}

.sh-premium-btn:hover i {
  transform: translate(3px, -3px);
}

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

.sh-feature-card {
  position: relative;

  min-height: 220px;
  padding: 26px;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 20px;

  background: rgba(255, 255, 255, 0.77);

  box-shadow:
    0 16px 44px rgba(35, 20, 61, 0.075),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);

  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);

  transition:
    border-color var(--sh-transition),
    box-shadow var(--sh-transition),
    transform var(--sh-transition);
}

.sh-feature-card::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -55px;

  width: 130px;
  height: 130px;

  border-radius: 50%;

  background: rgba(113, 56, 232, 0.06);

  transition: transform var(--sh-transition-slow);
}

.sh-feature-card:hover {
  border-color: rgba(113, 56, 232, 0.16);
  box-shadow: var(--sh-shadow-md);
  transform: translateY(-6px);
}

.sh-feature-card:hover::after {
  transform: scale(1.3);
}

.sh-feature-icon {
  position: relative;
  z-index: 1;

  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;

  margin-bottom: 21px;

  border-radius: 15px;

  background: var(--sh-gradient-soft);
  color: var(--sh-primary);

  font-size: 1.08rem;
}

.sh-feature-card h3 {
  position: relative;
  z-index: 1;

  margin: 0;

  color: var(--sh-text);

  font-size: 1rem;
  font-weight: 820;
}

.sh-feature-card p {
  position: relative;
  z-index: 1;

  margin: 11px 0 0;

  color: var(--sh-text-muted);

  font-size: 0.79rem;
  line-height: 1.7;
}

/* =========================================================
   12. LARGE TABLETS
========================================================= */

@media (max-width: 1199.98px) {
  .sh-hero-layout {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(380px, 0.9fr);

    gap: 50px;
  }

  .sh-hero-title {
    font-size: clamp(3rem, 5vw, 4.35rem);
  }

  .sh-hero-image-frame,
  .sh-hero-image {
    height: 540px;
    min-height: 540px;
  }

  .sh-hero-float-jobs {
    left: -35px;
  }

  .sh-hero-float-trusted {
    right: -30px;
  }

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

/* =========================================================
   13. TABLET
========================================================= */

@media (max-width: 991.98px) {
  .sh-home-hero {
    min-height: auto;
    padding: 70px 0 55px;
  }

  .sh-hero-layout {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .sh-hero-copy {
    max-width: 760px;
    text-align: center;
  }

  .sh-hero-badge {
    margin-right: auto;
    margin-left: auto;
  }

  .sh-hero-description {
    margin-right: auto;
    margin-left: auto;
  }

  .sh-hero-actions,
  .sh-hero-trust {
    justify-content: center;
  }

  .sh-hero-visual {
    width: min(100%, 620px);
    margin: 0 auto;
  }

  .sh-hero-image-frame,
  .sh-hero-image {
    height: 610px;
    min-height: 610px;
  }

  .sh-hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 80px;
  }

  .sh-stat-divider {
    display: none;
  }

  .sh-section {
    padding: 85px 0;
  }

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

  .sh-closed-grid {
    grid-template-columns: 1fr;
  }

  .sh-process-grid {
    grid-template-columns: 1fr;
  }

  .sh-process-grid::before,
  .sh-process-arrow {
    display: none;
  }

  .sh-process-card {
    min-height: auto;
  }

  .sh-why-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .sh-why-copy {
    max-width: 720px;
  }

  .sh-final-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 50px;
  }
}

/* =========================================================
   14. MOBILE
========================================================= */

@media (max-width: 767.98px) {
  .sh-home-hero {
    padding-top: 55px;
  }

  .sh-hero-title {
    font-size: clamp(2.7rem, 13vw, 4rem);
    letter-spacing: -0.065em;
  }

  .sh-hero-description {
    font-size: 0.97rem;
  }

  .sh-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .sh-hero-primary-btn,
  .sh-hero-secondary-btn {
    width: 100%;
  }

  .sh-hero-trust {
    align-items: flex-start;
    text-align: left;
  }

  .sh-hero-visual {
    padding: 6px 0;
  }

  .sh-hero-image-frame,
  .sh-hero-image {
    height: 510px;
    min-height: 510px;
    border-radius: 27px;
  }

  .sh-hero-image-frame::before,
  .sh-hero-image-overlay {
    border-radius: 27px;
  }

  .sh-hero-float-card {
    min-width: 190px;
    padding: 11px 13px;
  }

  .sh-hero-float-jobs {
    top: 35px;
    left: -5px;
  }

  .sh-hero-float-trusted {
    right: -5px;
    bottom: 75px;
  }

  .sh-hero-mini-card {
    right: 14px;
  }

  .sh-hero-stats {
    grid-template-columns: 1fr;
    gap: 17px;

    margin-top: 65px;
    padding: 20px;
  }

  .sh-section {
    padding: 72px 0;
  }

  .sh-section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 35px;
  }

  .sh-section-title {
    font-size: clamp(1.85rem, 9vw, 2.6rem);
  }

  .sh-section-link {
    width: 100%;
    justify-content: space-between;
  }

  .sh-job-grid {
    grid-template-columns: 1fr;
  }

  .sh-job-card {
    min-height: 330px;
  }

  .sh-centered-heading {
    margin-bottom: 40px;
  }

  .sh-process-card {
    padding: 27px;
  }

  .sh-feature-grid {
    grid-template-columns: 1fr;
  }

  .sh-feature-card {
    min-height: auto;
  }

  .sh-final-cta-section {
    padding-top: 75px;
  }

  .sh-final-cta {
    gap: 30px;
    padding: 38px 27px;
    border-radius: 25px;
  }

  .sh-final-cta-button {
    width: 100%;
  }
}

/* =========================================================
   15. EXTRA-SMALL MOBILE
========================================================= */

@media (max-width: 479.98px) {
  .sh-hero-badge {
    font-size: 0.68rem;
  }

  .sh-hero-title {
    font-size: 2.65rem;
  }

  .sh-hero-image-frame,
  .sh-hero-image {
    height: 435px;
    min-height: 435px;
  }

  .sh-hero-float-card {
    min-width: 166px;
  }

  .sh-hero-float-card strong {
    font-size: 0.7rem;
  }

  .sh-hero-float-card span {
    font-size: 0.6rem;
  }

  .sh-float-icon,
  .sh-float-success-icon {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .sh-hero-float-jobs {
    top: 24px;
  }

  .sh-hero-float-trusted {
    bottom: 62px;
  }

  .sh-hero-mini-card {
    font-size: 0.66rem;
  }

  .sh-closed-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .sh-closed-badge {
    display: none;
  }
}

/* =========================================================
   16. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .sh-hero-orb,
  .sh-live-dot::after,
  .sh-hero-float-card {
    animation: none;
  }
}

/* =========================================================
   SMART HIRING — PREMIUM ALL JOBS PAGE
========================================================= */

/* =========================================================
   1. JOBS HERO
========================================================= */

.jobs-page-hero {
  position: relative;
  padding: 100px 0 118px;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 15% 15%,
      rgba(142, 82, 246, 0.35),
      transparent 30%
    ),
    radial-gradient(
      circle at 85% 65%,
      rgba(22, 184, 166, 0.19),
      transparent 28%
    ),
    linear-gradient(135deg, #100a1d 0%, #1a1031 50%, #24164a 100%);

  color: var(--sh-white);
}

.jobs-page-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;

  height: 160px;

  background: linear-gradient(180deg, transparent, rgba(247, 248, 252, 0.08));

  pointer-events: none;
}

.jobs-hero-grid {
  position: absolute;
  inset: 0;

  opacity: 0.11;

  background-image:
    linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px);

  background-size: 46px 46px;

  mask-image: linear-gradient(to bottom, black, transparent 90%);

  pointer-events: none;
}

.jobs-hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(5px);
}

.jobs-hero-glow-one {
  top: -180px;
  left: -140px;

  width: 470px;
  height: 470px;

  background: radial-gradient(
    circle,
    rgba(113, 56, 232, 0.42),
    transparent 68%
  );

  animation: sh-orb-float 10s ease-in-out infinite;
}

.jobs-hero-glow-two {
  right: -190px;
  bottom: -220px;

  width: 530px;
  height: 530px;

  background: radial-gradient(
    circle,
    rgba(22, 184, 166, 0.25),
    transparent 68%
  );

  animation: sh-orb-float 12s ease-in-out infinite reverse;
}

.jobs-hero-content {
  position: relative;
  z-index: 2;

  max-width: 870px;
  margin: 0 auto;

  text-align: center;
}

.jobs-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  margin-bottom: 24px;
  padding: 9px 14px;

  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--sh-radius-pill);

  background: rgba(255, 255, 255, 0.08);
  color: #d5c3fb;

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.11);

  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);

  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.jobs-hero-title {
  margin: 0;

  color: var(--sh-white);

  font-size: clamp(3rem, 6vw, 5.25rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.98;
}

.jobs-hero-title span {
  display: block;
  margin-top: 12px;

  background: linear-gradient(100deg, #c8afff, #9c70f6 43%, #6ee2d4);

  background-clip: text;
  -webkit-background-clip: text;

  color: transparent;
  -webkit-text-fill-color: transparent;
}

.jobs-hero-description {
  max-width: 680px;
  margin: 27px auto 0;

  color: rgba(255, 255, 255, 0.67);

  font-size: 1.04rem;
  line-height: 1.85;
}

.jobs-hero-stats {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    auto
    minmax(0, 1fr)
    auto
    minmax(0, 1fr);

  align-items: center;
  gap: 25px;

  max-width: 840px;
  margin: 50px auto 0;
  padding: 21px 25px;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;

  background: rgba(255, 255, 255, 0.07);

  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.19),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);

  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.jobs-hero-stat {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 13px;

  text-align: left;
}

.jobs-stat-icon {
  display: inline-flex;
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.09);
  color: #c4a7ff;

  font-size: 1rem;
}

.jobs-hero-stat strong,
.jobs-hero-stat span {
  display: block;
}

.jobs-hero-stat strong {
  color: var(--sh-white);
  font-size: 0.86rem;
  font-weight: 800;
}

.jobs-hero-stat span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.51);
  font-size: 0.7rem;
}

.jobs-hero-stat-divider {
  width: 1px;
  height: 42px;

  background: linear-gradient(
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
}

/* =========================================================
   2. SEARCH SECTION
========================================================= */

.jobs-search-section {
  position: relative;
  z-index: 5;

  margin-top: -58px;
  padding-bottom: 35px;
}

.jobs-search-card {
  padding: 34px;

  border: 1px solid rgba(221, 216, 229, 0.85);
  border-radius: 27px;

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.98),
    rgba(250, 249, 253, 0.97)
  );

  box-shadow:
    0 30px 75px rgba(24, 15, 42, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);

  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.jobs-search-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;

  margin-bottom: 29px;
}

.jobs-search-header-copy {
  max-width: 690px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;

  margin-bottom: 10px;

  color: var(--sh-primary);

  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.jobs-search-header h2,
.jobs-results-header h2 {
  margin: 0;

  color: var(--sh-text);

  font-size: clamp(1.65rem, 3vw, 2.4rem);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.jobs-search-header p,
.jobs-results-header p {
  max-width: 680px;
  margin: 11px 0 0;

  color: var(--sh-text-muted);

  font-size: 0.88rem;
  line-height: 1.72;
}

.jobs-search-header-icon {
  display: inline-flex;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(113, 56, 232, 0.12);
  border-radius: 18px;

  background: var(--sh-gradient-soft);
  color: var(--sh-primary);

  font-size: 1.25rem;
}

/* =========================================================
   3. FILTER FORM
========================================================= */

.premium-job-filter-form {
  display: grid;

  grid-template-columns:
    minmax(210px, 1.3fr)
    minmax(180px, 1fr)
    minmax(180px, 0.9fr)
    minmax(200px, 1fr)
    auto;

  align-items: end;
  gap: 15px;
}

.premium-filter-field {
  min-width: 0;
}

.premium-filter-field label {
  display: block;

  margin: 0 0 8px;

  color: var(--sh-text-secondary);

  font-size: 0.72rem;
  font-weight: 750;
}

.premium-input-wrapper {
  position: relative;
}

.premium-input-wrapper input,
.premium-input-wrapper select {
  width: 100%;
  height: 52px;

  padding: 0 42px 0 43px;

  border: 1px solid var(--sh-border);
  border-radius: 13px;

  outline: none;

  background: var(--sh-white);
  color: var(--sh-text);

  box-shadow: inset 0 1px 2px rgba(30, 18, 51, 0.02);

  font-size: 0.84rem;

  transition:
    border-color var(--sh-transition),
    box-shadow var(--sh-transition),
    background-color var(--sh-transition);
}

.premium-input-wrapper input::placeholder {
  color: var(--sh-text-light);
}

.premium-input-wrapper select {
  cursor: pointer;

  appearance: none;
  -webkit-appearance: none;
}

.premium-input-wrapper input:hover,
.premium-input-wrapper select:hover {
  border-color: var(--sh-border-strong);
}

.premium-input-wrapper input:focus,
.premium-input-wrapper select:focus {
  border-color: rgba(113, 56, 232, 0.45);

  background: var(--sh-white);

  box-shadow: 0 0 0 4px rgba(113, 56, 232, 0.09);
}

.premium-input-icon {
  position: absolute;
  top: 50%;
  left: 15px;
  z-index: 2;

  color: #91889f;

  font-size: 0.93rem;

  pointer-events: none;

  transform: translateY(-50%);
}

.filter-chevron {
  position: absolute;
  top: 50%;
  right: 15px;

  color: #91889f;

  font-size: 0.75rem;

  pointer-events: none;

  transform: translateY(-50%);
}

.premium-filter-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.premium-search-button,
.premium-clear-button {
  display: inline-flex;
  height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;

  border-radius: 13px;

  font-size: 0.79rem;
  font-weight: 800;

  white-space: nowrap;

  transition:
    color var(--sh-transition),
    border-color var(--sh-transition),
    background-color var(--sh-transition),
    box-shadow var(--sh-transition),
    transform var(--sh-transition);
}

.premium-search-button {
  padding: 0 18px;

  border: 0;

  background: var(--sh-gradient-primary);
  color: var(--sh-white);

  box-shadow: 0 13px 29px rgba(113, 56, 232, 0.27);
}

.premium-search-button:hover {
  box-shadow: 0 17px 35px rgba(113, 56, 232, 0.34);

  transform: translateY(-2px);
}

.premium-search-button:active {
  transform: translateY(0);
}

.premium-search-arrow {
  transition: transform var(--sh-transition);
}

.premium-search-button:hover .premium-search-arrow {
  transform: translateX(3px);
}

.premium-clear-button {
  padding: 0 15px;

  border: 1px solid var(--sh-border);

  background: var(--sh-white);
  color: var(--sh-text-muted);
}

.premium-clear-button:hover {
  border-color: rgba(113, 56, 232, 0.2);

  background: var(--sh-primary-soft);
  color: var(--sh-primary);

  transform: translateY(-2px);
}

/* =========================================================
   4. ACTIVE FILTER CHIPS
========================================================= */

.jobs-active-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;

  margin-top: 22px;
  padding-top: 20px;

  border-top: 1px solid var(--sh-border);
}

.jobs-active-filters-label {
  margin-right: 3px;

  color: var(--sh-text-muted);

  font-size: 0.72rem;
  font-weight: 700;
}

.jobs-active-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  max-width: 100%;
  padding: 7px 10px;

  border: 1px solid rgba(113, 56, 232, 0.12);
  border-radius: var(--sh-radius-pill);

  background: var(--sh-primary-soft);
  color: var(--sh-primary-dark);

  font-size: 0.68rem;
  font-weight: 700;

  overflow-wrap: anywhere;
}

/* =========================================================
   5. RESULTS SECTION
========================================================= */

.jobs-results-section {
  padding: 75px 0 105px;

  background:
    radial-gradient(
      circle at 5% 15%,
      rgba(113, 56, 232, 0.045),
      transparent 26%
    ),
    radial-gradient(
      circle at 95% 75%,
      rgba(22, 184, 166, 0.04),
      transparent 27%
    ),
    var(--sh-bg);
}

.jobs-results-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 35px;

  margin-bottom: 40px;
}

.jobs-results-header-copy {
  max-width: 720px;
}

.jobs-results-count {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;

  padding: 11px 15px;

  border: 1px solid var(--sh-border);
  border-radius: 14px;

  background: var(--sh-white);

  box-shadow: var(--sh-shadow-xs);
}

.jobs-results-count-icon {
  display: inline-flex;
  width: 37px;
  height: 37px;
  align-items: center;
  justify-content: center;

  border-radius: 11px;

  background: var(--sh-primary-soft);
  color: var(--sh-primary);
}

.jobs-results-count strong,
.jobs-results-count span {
  display: flex;
}

.jobs-results-count strong {
  color: var(--sh-text);
  font-size: 0.88rem;
  font-weight: 850;
}

.jobs-results-count div > span {
  margin-top: 1px;
  color: var(--sh-text-muted);
  font-size: 0.66rem;
}

/* =========================================================
   6. JOB LISTING GRID
========================================================= */

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

.premium-listing-card {
  position: relative;

  display: flex;
  min-width: 0;
  min-height: 410px;
  flex-direction: column;

  overflow: hidden;

  border: 1px solid var(--sh-border);
  border-radius: 22px;

  background: linear-gradient(145deg, #ffffff, #fbfafe);

  box-shadow: 0 12px 36px rgba(30, 18, 51, 0.06);

  transition:
    border-color var(--sh-transition),
    box-shadow var(--sh-transition),
    transform var(--sh-transition);

  transition-delay: var(--reveal-delay, 0ms);
}

.premium-listing-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;

  height: 4px;

  background: var(--sh-gradient-primary);

  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;

  transition:
    opacity var(--sh-transition),
    transform var(--sh-transition);
}

.premium-listing-card::after {
  content: "";
  position: absolute;
  top: -85px;
  right: -85px;

  width: 195px;
  height: 195px;

  border-radius: 50%;

  background: rgba(113, 56, 232, 0.055);

  transition: transform var(--sh-transition-slow);
}

.premium-listing-card:hover {
  border-color: rgba(113, 56, 232, 0.22);

  box-shadow: 0 27px 62px rgba(35, 20, 61, 0.14);

  transform: translateY(-8px);
}

.premium-listing-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.premium-listing-card:hover::after {
  transform: scale(1.25);
}

.listing-card-top {
  position: relative;
  z-index: 1;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;

  padding: 22px 22px 0;
}

.company-avatar {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(113, 56, 232, 0.12);
  border-radius: 17px;

  background: var(--sh-gradient-soft);
  color: var(--sh-primary);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);

  font-size: 1.12rem;

  transition:
    color var(--sh-transition),
    background var(--sh-transition),
    transform var(--sh-transition);
}

.premium-listing-card:hover .company-avatar {
  background: var(--sh-gradient-primary);
  color: var(--sh-white);

  transform: rotate(-4deg) scale(1.04);
}

.listing-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  padding: 7px 10px;

  border: 1px solid rgba(34, 160, 107, 0.14);
  border-radius: var(--sh-radius-pill);

  background: rgba(34, 160, 107, 0.075);
  color: #237d57;

  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: var(--sh-success);

  box-shadow: 0 0 0 4px rgba(34, 160, 107, 0.11);
}

.listing-card-content {
  position: relative;
  z-index: 1;

  flex: 1;

  padding: 24px 22px 22px;
}

.listing-job-title {
  margin: 0;

  color: var(--sh-text);

  font-size: 1.15rem;
  font-weight: 830;
  letter-spacing: -0.03em;
  line-height: 1.35;
}

.listing-job-title a {
  display: -webkit-box;
  overflow: hidden;

  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;

  transition: color var(--sh-transition);
}

.listing-job-title a:hover {
  color: var(--sh-primary);
}

.listing-company {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;

  margin: 13px 0 0;

  color: var(--sh-text-muted);

  font-size: 0.79rem;
}

.listing-company i {
  flex: 0 0 auto;
  color: #92889f;
}

.listing-company span {
  min-width: 0;

  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.listing-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;

  margin-top: 20px;
}

.listing-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  max-width: 100%;
  padding: 7px 9px;

  border: 1px solid var(--sh-border);
  border-radius: 9px;

  background: var(--sh-surface-soft);
  color: var(--sh-text-muted);

  font-size: 0.68rem;
  font-weight: 650;

  overflow-wrap: anywhere;
}

.listing-meta i {
  flex: 0 0 auto;
  color: #8c7e9b;
}

.listing-salary {
  display: flex;
  align-items: center;
  gap: 11px;

  margin-top: 21px;
  padding: 12px;

  border: 1px solid rgba(22, 184, 166, 0.13);
  border-radius: 12px;

  background: linear-gradient(
    135deg,
    rgba(22, 184, 166, 0.07),
    rgba(113, 56, 232, 0.045)
  );
}

.listing-salary-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  align-items: center;
  justify-content: center;

  border-radius: 11px;

  background: var(--sh-secondary-soft);
  color: var(--sh-secondary-dark);
}

.listing-salary strong,
.listing-salary small {
  display: block;
}

.listing-salary strong {
  color: var(--sh-text);
  font-size: 0.81rem;
  font-weight: 800;
}

.listing-salary small {
  margin-top: 2px;
  color: var(--sh-text-muted);
  font-size: 0.64rem;
}

.listing-card-footer {
  position: relative;
  z-index: 1;

  padding: 0 22px 22px;
}

.listing-view-button {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  padding: 9px 10px 9px 15px;

  border: 1px solid var(--sh-border);
  border-radius: 13px;

  background: var(--sh-white);
  color: var(--sh-text-secondary);

  font-size: 0.8rem;
  font-weight: 800;

  transition:
    color var(--sh-transition),
    border-color var(--sh-transition),
    background-color var(--sh-transition);
}

.listing-view-icon {
  display: inline-flex;
  width: 31px;
  height: 31px;
  align-items: center;
  justify-content: center;

  border-radius: 9px;

  background: var(--sh-primary-soft);
  color: var(--sh-primary);

  transition:
    color var(--sh-transition),
    background-color var(--sh-transition),
    transform var(--sh-transition);
}

.listing-view-button:hover {
  border-color: rgba(113, 56, 232, 0.2);
  color: var(--sh-primary);
}

.listing-view-button:hover .listing-view-icon {
  background: var(--sh-primary);
  color: var(--sh-white);

  transform: translateX(3px);
}

/* =========================================================
   7. EMPTY JOB RESULTS
========================================================= */

.premium-empty-jobs {
  max-width: 680px;
  margin: 0 auto;
  padding: 66px 36px;

  border: 1px dashed rgba(113, 56, 232, 0.25);
  border-radius: 27px;

  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(113, 56, 232, 0.09),
      transparent 45%
    ),
    var(--sh-white);

  box-shadow: var(--sh-shadow-sm);

  text-align: center;
}

.premium-empty-icon {
  display: inline-flex;
  width: 76px;
  height: 76px;
  align-items: center;
  justify-content: center;

  margin-bottom: 22px;

  border: 1px solid rgba(113, 56, 232, 0.12);
  border-radius: 22px;

  background: var(--sh-primary-soft);
  color: var(--sh-primary);

  font-size: 1.55rem;
}

.premium-empty-jobs h3 {
  margin: 2px 0 0;

  color: var(--sh-text);

  font-size: 1.5rem;
  font-weight: 830;
  letter-spacing: -0.03em;
}

.premium-empty-jobs p {
  max-width: 470px;
  margin: 15px auto 25px;

  color: var(--sh-text-muted);

  font-size: 0.88rem;
  line-height: 1.75;
}

.premium-empty-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;

  padding: 11px 17px;

  border-radius: 13px;

  background: var(--sh-gradient-primary);
  color: var(--sh-white);

  box-shadow: var(--sh-shadow-primary);

  font-size: 0.8rem;
  font-weight: 800;

  transition:
    color var(--sh-transition),
    box-shadow var(--sh-transition),
    transform var(--sh-transition);
}

.premium-empty-button:hover {
  color: var(--sh-white);

  box-shadow: 0 19px 41px rgba(113, 56, 232, 0.34);

  transform: translateY(-3px);
}

/* =========================================================
   8. FOCUS STATES
========================================================= */

.premium-search-button:focus-visible,
.premium-clear-button:focus-visible,
.listing-view-button:focus-visible,
.listing-job-title a:focus-visible,
.premium-empty-button:focus-visible {
  outline: 3px solid rgba(113, 56, 232, 0.28);
  outline-offset: 3px;
}

/* =========================================================
   9. LARGE TABLETS
========================================================= */

@media (max-width: 1199.98px) {
  .premium-job-filter-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .premium-filter-actions {
    grid-column: 1 / -1;
  }

  .premium-search-button {
    min-width: 180px;
  }
}

/* =========================================================
   10. TABLET
========================================================= */

@media (max-width: 991.98px) {
  .jobs-page-hero {
    padding: 82px 0 105px;
  }

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

  .jobs-hero-stat-divider {
    display: none;
  }

  .jobs-search-section {
    margin-top: -50px;
  }

  .jobs-search-card {
    padding: 29px;
  }

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

/* =========================================================
   11. MOBILE
========================================================= */

@media (max-width: 767.98px) {
  .jobs-page-hero {
    padding: 70px 0 95px;
  }

  .jobs-hero-title {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .jobs-hero-description {
    font-size: 0.94rem;
  }

  .jobs-hero-stats {
    grid-template-columns: 1fr;
    gap: 16px;

    margin-top: 40px;
    padding: 18px;
  }

  .jobs-hero-stat {
    justify-content: flex-start;
  }

  .jobs-search-section {
    margin-top: -38px;
  }

  .jobs-search-card {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .jobs-search-header {
    align-items: flex-start;
    margin-bottom: 25px;
  }

  .jobs-search-header-icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
    border-radius: 15px;
  }

  .premium-job-filter-form {
    grid-template-columns: 1fr;
  }

  .premium-filter-actions {
    grid-column: auto;
    align-items: stretch;
    flex-direction: column;
  }

  .premium-search-button,
  .premium-clear-button {
    width: 100%;
  }

  .jobs-results-section {
    padding: 62px 0 80px;
  }

  .jobs-results-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;

    margin-bottom: 32px;
  }

  .jobs-results-count {
    width: 100%;
  }

  .premium-jobs-grid {
    grid-template-columns: 1fr;
  }

  .premium-listing-card {
    min-height: 390px;
  }
}

/* =========================================================
   12. EXTRA-SMALL MOBILE
========================================================= */

@media (max-width: 479.98px) {
  .jobs-hero-badge {
    font-size: 0.65rem;
  }

  .jobs-hero-title {
    font-size: 2.65rem;
  }

  .jobs-search-header-icon {
    display: none;
  }

  .jobs-search-header h2,
  .jobs-results-header h2 {
    font-size: 1.65rem;
  }

  .jobs-active-filters {
    align-items: flex-start;
    flex-direction: column;
  }

  .listing-card-top,
  .listing-card-content {
    padding-right: 18px;
    padding-left: 18px;
  }

  .listing-card-footer {
    padding-right: 18px;
    padding-left: 18px;
  }

  .premium-empty-jobs {
    padding: 52px 22px;
  }
}

/* =========================================================
   13. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .jobs-hero-glow {
    animation: none;
  }

  .premium-listing-card,
  .company-avatar,
  .listing-view-icon,
  .premium-search-button,
  .premium-clear-button {
    transition: none;
  }
}

/* =========================================================
SMART HIRING — PREMIUM JOB DETAIL PAGE
========================================================= */

/* =========================================================

1. JOB DETAIL HERO
   ========================================================= */

.job-detail-hero {
  position: relative;

  padding: 60px 0 82px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 8% 12%,
      rgba(113, 56, 232, 0.16),
      transparent 30%
    ),
    radial-gradient(
      circle at 92% 30%,
      rgba(22, 184, 166, 0.11),
      transparent 29%
    ),
    linear-gradient(180deg, #fbfaff 0%, #f7f7fc 100%);
}

.job-detail-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;

  height: 125px;

  background: linear-gradient(180deg, transparent, rgba(247, 248, 252, 0.9));

  pointer-events: none;
}

.job-detail-grid-pattern {
  position: absolute;
  inset: 0;

  opacity: 0.35;

  background-image:
    linear-gradient(rgba(113, 56, 232, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(113, 56, 232, 0.035) 1px, transparent 1px);

  background-size: 46px 46px;

  mask-image: linear-gradient(to bottom, black, transparent 90%);

  pointer-events: none;
}

.job-detail-glow {
  position: absolute;

  border-radius: 50%;

  filter: blur(4px);

  pointer-events: none;
}

.job-detail-glow-one {
  top: -190px;
  left: -160px;

  width: 450px;
  height: 450px;

  background: radial-gradient(
    circle,
    rgba(113, 56, 232, 0.18),
    transparent 70%
  );

  animation: sh-orb-float 10s ease-in-out infinite;
}

.job-detail-glow-two {
  right: -190px;
  bottom: -230px;

  width: 520px;
  height: 520px;

  background: radial-gradient(
    circle,
    rgba(22, 184, 166, 0.15),
    transparent 68%
  );

  animation: sh-orb-float 12s ease-in-out infinite reverse;
}

.job-detail-back-link {
  position: relative;
  z-index: 3;

  display: inline-flex;
  align-items: center;
  gap: 9px;

  margin-bottom: 26px;

  color: var(--sh-text-secondary);

  font-size: 0.82rem;
  font-weight: 750;

  transition:
    color var(--sh-transition),
    transform var(--sh-transition);
}

.job-detail-back-icon {
  display: inline-flex;
  width: 35px;
  height: 35px;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--sh-border);
  border-radius: 11px;

  background: rgba(255, 255, 255, 0.76);
  color: var(--sh-primary);

  box-shadow: var(--sh-shadow-xs);

  transition:
    border-color var(--sh-transition),
    background-color var(--sh-transition),
    transform var(--sh-transition);
}

.job-detail-back-link:hover {
  color: var(--sh-primary);
  transform: translateX(-2px);
}

.job-detail-back-link:hover .job-detail-back-icon {
  border-color: rgba(113, 56, 232, 0.18);
  background: var(--sh-primary-soft);
  transform: translateX(-3px);
}

/* =========================================================
2. JOB HEADER
========================================================= */

.job-detail-header {
  position: relative;
  z-index: 3;

  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.5fr);
  align-items: stretch;
  gap: 34px;

  padding: 38px;

  border: 1px solid rgba(221, 216, 229, 0.84);
  border-radius: 28px;

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.97),
    rgba(250, 249, 253, 0.95)
  );

  box-shadow:
    0 30px 80px rgba(29, 18, 50, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);

  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
}

.job-detail-header-content {
  min-width: 0;
}

.job-detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;

  margin-bottom: 22px;
}

.job-detail-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  padding: 7px 11px;

  border: 1px solid transparent;
  border-radius: var(--sh-radius-pill);

  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.035em;
}

.job-badge-active {
  border-color: rgba(34, 160, 107, 0.15);
  background: rgba(34, 160, 107, 0.08);
  color: #227a55;
}

.job-badge-closed {
  border-color: rgba(108, 117, 125, 0.16);
  background: rgba(108, 117, 125, 0.08);
  color: #626b72;
}

.job-badge-expired {
  border-color: rgba(245, 158, 11, 0.18);
  background: rgba(245, 158, 11, 0.1);
  color: #94610b;
}

.job-badge-paused {
  border-color: rgba(37, 99, 235, 0.15);
  background: rgba(37, 99, 235, 0.08);
  color: #2354b2;
}

.job-badge-primary {
  border-color: rgba(113, 56, 232, 0.14);
  background: var(--sh-primary-soft);
  color: var(--sh-primary-dark);
}

.job-badge-neutral {
  border-color: var(--sh-border);
  background: var(--sh-surface-soft);
  color: var(--sh-text-secondary);
}

.job-detail-status-dot {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: var(--sh-success);

  box-shadow: 0 0 0 4px rgba(34, 160, 107, 0.11);
}

.job-detail-title {
  max-width: 820px;
  margin: 0;

  color: var(--sh-text);

  font-size: clamp(2.2rem, 4.7vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 1.03;
}

.job-detail-company-row {
  display: flex;
  align-items: center;
  gap: 14px;

  margin-top: 25px;
}

.job-detail-company-avatar {
  display: inline-flex;
  width: 51px;
  height: 51px;
  flex: 0 0 51px;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(113, 56, 232, 0.12);
  border-radius: 16px;

  background: var(--sh-gradient-soft);
  color: var(--sh-primary);

  font-size: 1.08rem;
}

.job-detail-company-copy {
  min-width: 0;
}

.job-detail-company-copy strong,
.job-detail-company-copy span {
  display: block;
}

.job-detail-company-copy strong {
  overflow: hidden;

  color: var(--sh-text);

  font-size: 0.96rem;
  font-weight: 820;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.job-detail-company-copy span {
  display: flex;
  align-items: center;
  gap: 7px;

  margin-top: 3px;

  color: var(--sh-text-muted);

  font-size: 0.78rem;
}

.job-detail-quick-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;

  margin-top: 31px;
}

.job-detail-meta-item {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;

  padding: 12px;

  border: 1px solid var(--sh-border);
  border-radius: 13px;

  background: rgba(255, 255, 255, 0.66);
}

.job-detail-meta-icon {
  display: inline-flex;
  width: 37px;
  height: 37px;
  flex: 0 0 37px;
  align-items: center;
  justify-content: center;

  border-radius: 11px;

  background: var(--sh-primary-soft);
  color: var(--sh-primary);

  font-size: 0.88rem;
}

.job-detail-meta-item div {
  min-width: 0;
}

.job-detail-meta-item small,
.job-detail-meta-item strong {
  display: block;
}

.job-detail-meta-item small {
  color: var(--sh-text-muted);
  font-size: 0.62rem;
}

.job-detail-meta-item strong {
  overflow: hidden;

  margin-top: 1px;

  color: var(--sh-text-secondary);

  font-size: 0.72rem;
  font-weight: 780;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* =========================================================
3. HEADER APPLICATION PANEL
========================================================= */

.job-detail-header-action {
  display: flex;
  min-width: 0;
}

.job-detail-apply-panel {
  position: relative;

  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;

  padding: 28px;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;

  background:
    radial-gradient(
      circle at 20% 15%,
      rgba(142, 82, 246, 0.36),
      transparent 40%
    ),
    radial-gradient(
      circle at 90% 85%,
      rgba(22, 184, 166, 0.18),
      transparent 42%
    ),
    var(--sh-gradient-dark);

  box-shadow: 0 20px 50px rgba(22, 13, 39, 0.23);

  color: var(--sh-white);
}

.job-detail-apply-panel::after {
  content: "";
  position: absolute;
  right: -65px;
  bottom: -75px;

  width: 180px;
  height: 180px;

  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.job-detail-apply-eyebrow {
  position: relative;
  z-index: 1;

  color: #c9afff;

  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.job-detail-apply-panel h2 {
  position: relative;
  z-index: 1;

  margin: 10px 0 0;

  color: var(--sh-white);

  font-size: 1.55rem;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.job-detail-apply-panel p {
  position: relative;
  z-index: 1;

  margin: 11px 0 22px;

  color: rgba(255, 255, 255, 0.62);

  font-size: 0.8rem;
  line-height: 1.65;
}

.job-detail-apply-button {
  position: relative;
  z-index: 1;

  display: flex;
  min-height: 51px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  padding: 10px 13px 10px 17px;

  border-radius: 13px;

  background: var(--sh-white);
  color: var(--sh-primary-deep);

  box-shadow: 0 15px 34px rgba(0, 0, 0, 0.22);

  font-size: 0.81rem;
  font-weight: 820;

  transition:
    color var(--sh-transition),
    box-shadow var(--sh-transition),
    transform var(--sh-transition);
}

.job-detail-apply-button i {
  transition: transform var(--sh-transition);
}

.job-detail-apply-button:hover {
  color: var(--sh-primary-deep);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);

  transform: translateY(-3px);
}

.job-detail-apply-button:hover i {
  transform: translateX(4px);
}

/* =========================================================
4. JOB STATE MESSAGES
========================================================= */

.job-state-message {
  display: flex;
  width: 100%;
  align-items: flex-start;
  gap: 14px;

  padding: 23px;

  border: 1px solid;
  border-radius: 19px;
}

.job-state-message-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;

  border-radius: 13px;

  font-size: 1.06rem;
}

.job-state-message strong {
  display: block;

  margin-top: 1px;

  font-size: 0.9rem;
  font-weight: 820;
}

.job-state-message p {
  margin: 6px 0 0;

  font-size: 0.75rem;
  line-height: 1.6;
}

.job-state-closed {
  border-color: rgba(108, 117, 125, 0.17);
  background: rgba(108, 117, 125, 0.08);
  color: #525b61;
}

.job-state-closed .job-state-message-icon {
  background: rgba(108, 117, 125, 0.12);
}

.job-state-expired {
  border-color: rgba(245, 158, 11, 0.19);
  background: rgba(245, 158, 11, 0.09);
  color: #80550b;
}

.job-state-expired .job-state-message-icon {
  background: rgba(245, 158, 11, 0.13);
}

.job-state-paused {
  border-color: rgba(37, 99, 235, 0.17);
  background: rgba(37, 99, 235, 0.075);
  color: #2450a2;
}

.job-state-paused .job-state-message-icon {
  background: rgba(37, 99, 235, 0.11);
}

/* =========================================================
5. CONTENT LAYOUT
========================================================= */

.job-detail-content-section {
  padding: 76px 0 105px;

  background:
    radial-gradient(
      circle at 5% 12%,
      rgba(113, 56, 232, 0.04),
      transparent 25%
    ),
    radial-gradient(
      circle at 95% 80%,
      rgba(22, 184, 166, 0.035),
      transparent 26%
    ),
    var(--sh-bg);
}

.job-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(290px, 0.7fr);
  align-items: start;
  gap: 31px;
}

.job-detail-main {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 24px;
}

.job-detail-content-card {
  padding: 34px;

  border: 1px solid var(--sh-border);
  border-radius: 23px;

  background: var(--sh-white);

  box-shadow: 0 13px 38px rgba(30, 18, 51, 0.055);
}

.job-detail-section-heading {
  display: flex;
  align-items: center;
  gap: 14px;

  margin-bottom: 26px;
  padding-bottom: 21px;

  border-bottom: 1px solid var(--sh-border);
}

.job-detail-section-icon {
  display: inline-flex;
  width: 49px;
  height: 49px;
  flex: 0 0 49px;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(113, 56, 232, 0.12);
  border-radius: 15px;

  background: var(--sh-gradient-soft);
  color: var(--sh-primary);

  font-size: 1.02rem;
}

.job-detail-section-heading span,
.job-detail-section-heading h2 {
  display: block;
}

.job-detail-section-heading span {
  margin-bottom: 3px;

  color: var(--sh-primary);

  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.job-detail-section-heading h2 {
  margin: 0;

  color: var(--sh-text);

  font-size: 1.26rem;
  font-weight: 830;
  letter-spacing: -0.03em;
}

.job-detail-description {
  color: var(--sh-text-secondary);

  font-size: 0.94rem;
  line-height: 1.9;

  white-space: pre-line;
  overflow-wrap: anywhere;
}

/* =========================================================
6. REQUIRED SKILLS
========================================================= */

.job-detail-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.job-detail-skill {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 10px 13px;

  border: 1px solid rgba(113, 56, 232, 0.13);
  border-radius: 11px;

  background: linear-gradient(
    135deg,
    var(--sh-primary-soft),
    rgba(231, 250, 247, 0.7)
  );

  color: var(--sh-primary-dark);

  font-size: 0.76rem;
  font-weight: 730;
}

.job-detail-skill i {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;

  border-radius: 6px;

  background: rgba(113, 56, 232, 0.11);
  color: var(--sh-primary);

  font-size: 0.76rem;
}

/* =========================================================
7. BOTTOM CALL TO ACTION
========================================================= */

.job-detail-bottom-cta {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  padding: 33px;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 23px;

  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(142, 82, 246, 0.38),
      transparent 33%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(22, 184, 166, 0.17),
      transparent 30%
    ),
    var(--sh-gradient-dark);

  box-shadow: 0 23px 60px rgba(21, 12, 37, 0.2);

  color: var(--sh-white);
}

.job-detail-bottom-cta::after {
  content: "";
  position: absolute;
  right: -65px;
  bottom: -85px;

  width: 200px;
  height: 200px;

  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.job-detail-bottom-cta-content {
  position: relative;
  z-index: 1;

  max-width: 570px;
}

.job-detail-bottom-cta-content > span {
  display: block;

  margin-bottom: 8px;

  color: #c8afff;

  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.job-detail-bottom-cta h2 {
  margin: 0;

  color: var(--sh-white);

  font-size: 1.65rem;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.job-detail-bottom-cta p {
  margin: 10px 0 0;

  color: rgba(255, 255, 255, 0.61);

  font-size: 0.78rem;
  line-height: 1.65;
}

.job-detail-bottom-button {
  position: relative;
  z-index: 1;

  display: inline-flex;
  min-height: 50px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 11px 17px;

  border-radius: 13px;

  background: var(--sh-white);
  color: var(--sh-primary-deep);

  box-shadow: 0 15px 34px rgba(0, 0, 0, 0.22);

  font-size: 0.78rem;
  font-weight: 820;

  transition:
    color var(--sh-transition),
    box-shadow var(--sh-transition),
    transform var(--sh-transition);
}

.job-detail-bottom-button i {
  transition: transform var(--sh-transition);
}

.job-detail-bottom-button:hover {
  color: var(--sh-primary-deep);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.29);

  transform: translateY(-3px);
}

.job-detail-bottom-button:hover i {
  transform: translateX(4px);
}

/* =========================================================
8. SIDEBAR
========================================================= */

.job-detail-sidebar {
  position: sticky;
  top: calc(var(--sh-navbar-height) + 24px);

  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 18px;
}

.job-information-card {
  padding: 27px;

  border: 1px solid var(--sh-border);
  border-radius: 22px;

  background: linear-gradient(145deg, var(--sh-white), var(--sh-surface-soft));

  box-shadow: 0 16px 44px rgba(30, 18, 51, 0.075);
}

.job-information-header {
  display: flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 22px;
  padding-bottom: 19px;

  border-bottom: 1px solid var(--sh-border);
}

.job-information-header-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;

  border-radius: 13px;

  background: var(--sh-primary-soft);
  color: var(--sh-primary);

  font-size: 0.98rem;
}

.job-information-header span,
.job-information-header h2 {
  display: block;
}

.job-information-header span {
  color: var(--sh-primary);

  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.job-information-header h2 {
  margin: 3px 0 0;

  color: var(--sh-text);

  font-size: 1.02rem;
  font-weight: 820;
}

.job-information-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.job-information-item {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 13px 4px;

  border-bottom: 1px solid rgba(232, 229, 238, 0.8);
}

.job-information-item:last-child {
  border-bottom: 0;
}

.job-information-icon {
  display: inline-flex;
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(113, 56, 232, 0.09);
  border-radius: 12px;

  background: var(--sh-gradient-soft);
  color: var(--sh-primary);

  font-size: 0.88rem;
}

.job-information-item > div:last-child {
  min-width: 0;
}

.job-information-item small,
.job-information-item strong {
  display: block;
}

.job-information-item small {
  color: var(--sh-text-muted);
  font-size: 0.64rem;
}

.job-information-item strong {
  margin-top: 2px;

  color: var(--sh-text-secondary);

  font-size: 0.76rem;
  font-weight: 780;
  line-height: 1.45;
}

.job-information-salary span {
  display: block;

  margin-top: 2px;

  color: var(--sh-text-muted);

  font-size: 0.63rem;
  font-weight: 600;
}

.job-free-application {
  color: var(--sh-success);
}

.job-sidebar-apply-button {
  display: flex;
  min-height: 51px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  margin-top: 22px;
  padding: 10px 12px 10px 17px;

  border-radius: 13px;

  background: var(--sh-gradient-primary);
  color: var(--sh-white);

  box-shadow: var(--sh-shadow-primary);

  font-size: 0.8rem;
  font-weight: 820;

  transition:
    color var(--sh-transition),
    box-shadow var(--sh-transition),
    transform var(--sh-transition);
}

.job-sidebar-apply-button i {
  transition: transform var(--sh-transition);
}

.job-sidebar-apply-button:hover {
  color: var(--sh-white);

  box-shadow: 0 19px 42px rgba(113, 56, 232, 0.34);

  transform: translateY(-3px);
}

.job-sidebar-apply-button:hover i {
  transform: translateX(4px);
}

/* =========================================================
9. SAFETY CARD
========================================================= */

.job-detail-safety-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;

  padding: 18px;

  border: 1px solid rgba(22, 184, 166, 0.14);
  border-radius: 17px;

  background: linear-gradient(
    135deg,
    rgba(22, 184, 166, 0.08),
    rgba(113, 56, 232, 0.045)
  );
}

.job-detail-safety-icon {
  display: inline-flex;
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: var(--sh-secondary-soft);
  color: var(--sh-secondary-dark);

  font-size: 0.94rem;
}

.job-detail-safety-card strong {
  display: block;

  color: var(--sh-text-secondary);

  font-size: 0.75rem;
  font-weight: 800;
}

.job-detail-safety-card p {
  margin: 5px 0 0;

  color: var(--sh-text-muted);

  font-size: 0.69rem;
  line-height: 1.55;
}

/* =========================================================
10. FOCUS STATES
========================================================= */

.job-detail-back-link:focus-visible,
.job-detail-apply-button:focus-visible,
.job-detail-bottom-button:focus-visible,
.job-sidebar-apply-button:focus-visible {
  outline: 3px solid rgba(113, 56, 232, 0.28);
  outline-offset: 3px;
}

/* =========================================================
11. LARGE TABLETS
========================================================= */

@media (max-width: 1199.98px) {
  .job-detail-header {
    grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.55fr);
  }

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

  .job-detail-layout {
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.7fr);
  }
}

/* =========================================================
12. TABLET
========================================================= */

@media (max-width: 991.98px) {
  .job-detail-hero {
    padding: 52px 0 68px;
  }

  .job-detail-header {
    grid-template-columns: 1fr;
  }

  .job-detail-header-action {
    min-height: 0;
  }

  .job-detail-apply-panel {
    min-height: 270px;
  }

  .job-detail-layout {
    grid-template-columns: 1fr;
  }

  .job-detail-sidebar {
    position: static;
  }
}

/* =========================================================
13. MOBILE
========================================================= */

@media (max-width: 767.98px) {
  .job-detail-hero {
    padding: 42px 0 58px;
  }

  .job-detail-header {
    gap: 25px;

    padding: 25px 21px;

    border-radius: 22px;
  }

  .job-detail-title {
    font-size: clamp(2.15rem, 11vw, 3.3rem);
  }

  .job-detail-quick-meta {
    grid-template-columns: 1fr;
  }

  .job-detail-meta-item {
    min-height: 63px;
  }

  .job-detail-content-section {
    padding: 60px 0 80px;
  }

  .job-detail-content-card {
    padding: 25px 21px;
    border-radius: 19px;
  }

  .job-detail-description {
    font-size: 0.88rem;
  }

  .job-detail-bottom-cta {
    align-items: flex-start;
    flex-direction: column;

    padding: 27px 23px;
  }

  .job-detail-bottom-button {
    width: 100%;
  }

  .job-information-card {
    padding: 23px 20px;
  }
}

/* =========================================================
14. EXTRA-SMALL MOBILE
========================================================= */

@media (max-width: 479.98px) {
  .job-detail-back-link {
    margin-bottom: 20px;
  }

  .job-detail-badges {
    gap: 6px;
  }

  .job-detail-badge {
    font-size: 0.61rem;
  }

  .job-detail-title {
    font-size: 2.35rem;
  }

  .job-detail-company-row {
    align-items: flex-start;
  }

  .job-detail-company-copy strong {
    white-space: normal;
  }

  .job-detail-section-heading {
    align-items: flex-start;
  }

  .job-detail-skills {
    flex-direction: column;
  }

  .job-detail-skill {
    width: 100%;
  }
}

/* =========================================================
15. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .job-detail-glow {
    animation: none;
  }
}

/* =========================================================
SMART HIRING — PREMIUM JOB APPLICATION PAGE
========================================================= */

/* =========================================================

1. APPLICATION HERO
   ========================================================= */

.job-application-hero {
  position: relative;

  padding: 58px 0 88px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 7% 12%,
      rgba(113, 56, 232, 0.17),
      transparent 30%
    ),
    radial-gradient(
      circle at 92% 28%,
      rgba(22, 184, 166, 0.12),
      transparent 29%
    ),
    linear-gradient(180deg, #fcfbff 0%, #f6f6fc 100%);
}

.job-application-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;

  height: 130px;

  background: linear-gradient(180deg, transparent, rgba(247, 248, 252, 0.92));

  pointer-events: none;
}

.job-application-grid-pattern {
  position: absolute;
  inset: 0;

  opacity: 0.36;

  background-image:
    linear-gradient(rgba(113, 56, 232, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(113, 56, 232, 0.035) 1px, transparent 1px);

  background-size: 46px 46px;

  mask-image: linear-gradient(to bottom, black, transparent 90%);

  pointer-events: none;
}

.job-application-glow {
  position: absolute;

  border-radius: 50%;

  pointer-events: none;

  filter: blur(5px);
}

.job-application-glow-one {
  top: -180px;
  left: -165px;

  width: 450px;
  height: 450px;

  background: radial-gradient(
    circle,
    rgba(113, 56, 232, 0.19),
    transparent 69%
  );

  animation: sh-orb-float 10s ease-in-out infinite;
}

.job-application-glow-two {
  right: -190px;
  bottom: -220px;

  width: 530px;
  height: 530px;

  background: radial-gradient(
    circle,
    rgba(22, 184, 166, 0.15),
    transparent 69%
  );

  animation: sh-orb-float 12s ease-in-out infinite reverse;
}

.job-application-back-link {
  position: relative;
  z-index: 3;

  display: inline-flex;
  align-items: center;
  gap: 9px;

  margin-bottom: 27px;

  color: var(--sh-text-secondary);

  font-size: 0.81rem;
  font-weight: 750;

  transition:
    color var(--sh-transition),
    transform var(--sh-transition);
}

.job-application-back-icon {
  display: inline-flex;
  width: 35px;
  height: 35px;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--sh-border);
  border-radius: 11px;

  background: rgba(255, 255, 255, 0.8);
  color: var(--sh-primary);

  box-shadow: var(--sh-shadow-xs);

  transition:
    border-color var(--sh-transition),
    background-color var(--sh-transition),
    transform var(--sh-transition);
}

.job-application-back-link:hover {
  color: var(--sh-primary);
  transform: translateX(-2px);
}

.job-application-back-link:hover .job-application-back-icon {
  border-color: rgba(113, 56, 232, 0.2);
  background: var(--sh-primary-soft);
  transform: translateX(-3px);
}

/* =========================================================
2. HERO LAYOUT
========================================================= */

.job-application-hero-layout {
  position: relative;
  z-index: 3;

  display: grid;
  grid-template-columns:
    minmax(0, 1.3fr)
    minmax(310px, 0.7fr);

  align-items: center;
  gap: clamp(45px, 7vw, 90px);

  padding: 38px;

  border: 1px solid rgba(221, 216, 229, 0.84);
  border-radius: 28px;

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.97),
    rgba(250, 249, 253, 0.95)
  );

  box-shadow:
    0 30px 80px rgba(29, 18, 50, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);

  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
}

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

.job-application-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-bottom: 17px;

  color: var(--sh-primary);

  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.job-application-title {
  max-width: 760px;
  margin: 0;

  color: var(--sh-text);

  font-size: clamp(2.3rem, 4.8vw, 4.45rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 1.04;
}

.job-application-title span {
  display: block;
  margin-top: 8px;

  background: var(--sh-gradient-primary);

  background-clip: text;
  -webkit-background-clip: text;

  color: transparent;
  -webkit-text-fill-color: transparent;
}

.job-application-description {
  max-width: 680px;
  margin: 22px 0 0;

  color: var(--sh-text-secondary);

  font-size: 0.96rem;
  line-height: 1.8;
}

.job-application-company {
  display: flex;
  align-items: center;
  gap: 13px;

  margin-top: 27px;
}

.job-application-company-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(113, 56, 232, 0.12);
  border-radius: 15px;

  background: var(--sh-gradient-soft);
  color: var(--sh-primary);

  font-size: 1rem;
}

.job-application-company > div:last-child {
  min-width: 0;
}

.job-application-company small,
.job-application-company strong,
.job-application-company span {
  display: block;
}

.job-application-company small {
  color: var(--sh-text-muted);
  font-size: 0.64rem;
}

.job-application-company strong {
  overflow: hidden;

  margin-top: 1px;

  color: var(--sh-text);

  font-size: 0.9rem;
  font-weight: 820;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.job-application-company span {
  display: flex;
  align-items: center;
  gap: 6px;

  margin-top: 3px;

  color: var(--sh-text-muted);

  font-size: 0.71rem;
}

/* =========================================================
3. HERO TRUST PANEL
========================================================= */

.job-application-hero-trust {
  display: flex;
  flex-direction: column;
  gap: 12px;

  padding: 23px;

  border: 1px solid rgba(113, 56, 232, 0.11);
  border-radius: 21px;

  background: linear-gradient(
    145deg,
    rgba(248, 245, 255, 0.88),
    rgba(239, 251, 249, 0.8)
  );
}

.job-application-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 13px;

  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.72);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.job-application-trust-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: var(--sh-primary-soft);
  color: var(--sh-primary);

  font-size: 0.93rem;
}

.job-application-trust-item:nth-child(2) .job-application-trust-icon {
  background: var(--sh-secondary-soft);
  color: var(--sh-secondary-dark);
}

.job-application-trust-item strong,
.job-application-trust-item small {
  display: block;
}

.job-application-trust-item strong {
  color: var(--sh-text-secondary);

  font-size: 0.74rem;
  font-weight: 800;
}

.job-application-trust-item small {
  margin-top: 2px;

  color: var(--sh-text-muted);

  font-size: 0.64rem;
}

/* =========================================================
4. APPLICATION LAYOUT
========================================================= */

.job-application-section {
  padding: 76px 0 105px;

  background:
    radial-gradient(
      circle at 5% 12%,
      rgba(113, 56, 232, 0.04),
      transparent 25%
    ),
    radial-gradient(
      circle at 95% 82%,
      rgba(22, 184, 166, 0.035),
      transparent 26%
    ),
    var(--sh-bg);
}

.job-application-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 1.6fr)
    minmax(290px, 0.68fr);

  align-items: start;
  gap: 31px;
}

.job-application-main {
  min-width: 0;
}

.job-application-form-card {
  padding: 36px;

  border: 1px solid var(--sh-border);
  border-radius: 24px;

  background: var(--sh-white);

  box-shadow: 0 15px 44px rgba(30, 18, 51, 0.07);
}

.job-application-form-header {
  display: flex;
  align-items: center;
  gap: 15px;

  margin-bottom: 29px;
  padding-bottom: 23px;

  border-bottom: 1px solid var(--sh-border);
}

.job-application-form-header-icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(113, 56, 232, 0.12);
  border-radius: 16px;

  background: var(--sh-gradient-soft);
  color: var(--sh-primary);

  font-size: 1.08rem;
}

.job-application-form-header span {
  display: block;

  margin-bottom: 3px;

  color: var(--sh-primary);

  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.job-application-form-header h2 {
  margin: 0;

  color: var(--sh-text);

  font-size: 1.32rem;
  font-weight: 840;
  letter-spacing: -0.035em;
}

.job-application-form-header p {
  margin: 5px 0 0;

  color: var(--sh-text-muted);

  font-size: 0.7rem;
}

/* =========================================================
5. ERROR MESSAGE
========================================================= */

.job-application-error {
  display: flex;
  align-items: flex-start;
  gap: 13px;

  margin-bottom: 25px;
  padding: 16px;

  border: 1px solid rgba(220, 53, 69, 0.18);
  border-radius: 14px;

  background: rgba(220, 53, 69, 0.07);
  color: #a93642;
}

.job-application-error-icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  align-items: center;
  justify-content: center;

  border-radius: 11px;

  background: rgba(220, 53, 69, 0.11);

  font-size: 0.92rem;
}

.job-application-error strong {
  display: block;

  font-size: 0.76rem;
  font-weight: 820;
}

.job-application-error p {
  margin: 4px 0 0;

  color: #a94c56;

  font-size: 0.71rem;
  line-height: 1.55;
}

/* =========================================================
6. FORM FIELDS
========================================================= */

.job-application-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 18px;
}

.job-application-field {
  min-width: 0;
}

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

.job-application-field > label {
  display: block;

  margin-bottom: 8px;

  color: var(--sh-text-secondary);

  font-size: 0.73rem;
  font-weight: 760;
}

.job-application-field > label span {
  color: #d34858;
}

.job-application-input-wrapper,
.job-application-textarea-wrapper {
  position: relative;
}

.job-application-input-wrapper input,
.job-application-textarea-wrapper textarea {
  width: 100%;

  border: 1px solid var(--sh-border);
  border-radius: 13px;

  outline: none;

  background: var(--sh-white);
  color: var(--sh-text);

  box-shadow: inset 0 1px 2px rgba(30, 18, 51, 0.02);

  font-size: 0.84rem;

  transition:
    border-color var(--sh-transition),
    box-shadow var(--sh-transition),
    background-color var(--sh-transition);
}

.job-application-input-wrapper input {
  height: 53px;
  padding: 0 16px 0 44px;
}

.job-application-textarea-wrapper textarea {
  min-height: 165px;
  padding: 15px 16px 15px 44px;

  line-height: 1.65;

  resize: vertical;
}

.job-application-input-wrapper input::placeholder,
.job-application-textarea-wrapper textarea::placeholder {
  color: var(--sh-text-light);
}

.job-application-input-wrapper input:hover,
.job-application-textarea-wrapper textarea:hover {
  border-color: var(--sh-border-strong);
}

.job-application-input-wrapper input:focus,
.job-application-textarea-wrapper textarea:focus {
  border-color: rgba(113, 56, 232, 0.45);

  background: var(--sh-white);

  box-shadow: 0 0 0 4px rgba(113, 56, 232, 0.09);
}

.job-application-input-icon {
  position: absolute;
  top: 50%;
  left: 15px;

  color: #91889f;

  font-size: 0.92rem;

  pointer-events: none;

  transform: translateY(-50%);
}

.job-application-textarea-icon {
  position: absolute;
  top: 17px;
  left: 15px;

  color: #91889f;

  font-size: 0.92rem;

  pointer-events: none;
}

.job-application-field-help,
.job-application-character-count,
.job-resume-file-name {
  color: var(--sh-text-muted);

  font-size: 0.65rem;
  line-height: 1.45;
}

.job-application-field > .job-application-field-help {
  display: block;
  margin-top: 7px;
}

.job-application-field-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;

  margin-top: 7px;
}

.job-application-character-count,
.job-resume-file-name {
  flex: 0 0 auto;
  text-align: right;
}

/* =========================================================
7. RESUME UPLOAD
========================================================= */

.job-resume-upload {
  position: relative;
}

.job-resume-input {
  position: absolute;

  width: 1px;
  height: 1px;

  overflow: hidden;

  opacity: 0;

  clip: rect(0 0 0 0);
  clip-path: inset(50%);

  white-space: nowrap;
}

.job-resume-upload-label {
  display: flex;
  align-items: center;
  gap: 14px;

  min-height: 96px;
  padding: 17px;

  border: 1px dashed rgba(113, 56, 232, 0.3);
  border-radius: 15px;

  background: linear-gradient(
    135deg,
    rgba(113, 56, 232, 0.045),
    rgba(22, 184, 166, 0.035)
  );

  cursor: pointer;

  transition:
    border-color var(--sh-transition),
    background-color var(--sh-transition),
    box-shadow var(--sh-transition),
    transform var(--sh-transition);
}

.job-resume-upload-label:hover {
  border-color: rgba(113, 56, 232, 0.48);

  background: linear-gradient(
    135deg,
    rgba(113, 56, 232, 0.075),
    rgba(22, 184, 166, 0.055)
  );

  box-shadow: 0 12px 29px rgba(113, 56, 232, 0.08);

  transform: translateY(-2px);
}

.job-resume-input:focus-visible + .job-resume-upload-label {
  outline: 3px solid rgba(113, 56, 232, 0.28);
  outline-offset: 3px;
}

.job-resume-upload-icon {
  display: inline-flex;
  width: 49px;
  height: 49px;
  flex: 0 0 49px;
  align-items: center;
  justify-content: center;

  border-radius: 15px;

  background: var(--sh-primary-soft);
  color: var(--sh-primary);

  font-size: 1.12rem;
}

.job-resume-upload-copy {
  min-width: 0;
  flex: 1;
}

.job-resume-upload-copy strong,
.job-resume-upload-copy small {
  display: block;
}

.job-resume-upload-copy strong {
  color: var(--sh-text-secondary);

  font-size: 0.8rem;
  font-weight: 800;
}

.job-resume-upload-copy small {
  margin-top: 4px;

  color: var(--sh-text-muted);

  font-size: 0.66rem;
}

.job-resume-browse-button {
  display: inline-flex;
  min-height: 39px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;

  padding: 8px 12px;

  border: 1px solid rgba(113, 56, 232, 0.15);
  border-radius: 10px;

  background: var(--sh-white);
  color: var(--sh-primary);

  box-shadow: var(--sh-shadow-xs);

  font-size: 0.68rem;
  font-weight: 800;
}

/* =========================================================
8. APPLICATION FEE
========================================================= */

.job-application-fee-card {
  grid-column: 1 / -1;

  display: flex;
  align-items: center;
  gap: 14px;

  padding: 17px;

  border: 1px solid rgba(22, 184, 166, 0.14);
  border-radius: 15px;

  background: linear-gradient(
    135deg,
    rgba(22, 184, 166, 0.075),
    rgba(113, 56, 232, 0.045)
  );
}

.job-application-fee-icon {
  display: inline-flex;
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  align-items: center;
  justify-content: center;

  border-radius: 13px;

  background: var(--sh-secondary-soft);
  color: var(--sh-secondary-dark);

  font-size: 1rem;
}

.job-application-fee-copy {
  min-width: 0;
}

.job-application-fee-copy small,
.job-application-fee-copy strong,
.job-application-fee-copy span {
  display: block;
}

.job-application-fee-copy small {
  color: var(--sh-text-muted);
  font-size: 0.63rem;
}

.job-application-fee-copy strong {
  margin-top: 1px;

  color: var(--sh-text);

  font-size: 0.84rem;
  font-weight: 820;
}

.job-application-fee-copy > span {
  margin-top: 3px;

  color: var(--sh-text-muted);

  font-size: 0.67rem;
  line-height: 1.5;
}

.job-application-free {
  color: var(--sh-success) !important;
}

/* =========================================================
9. CONFIRMATION
========================================================= */

.job-application-confirmation {
  grid-column: 1 / -1;

  display: flex;
  align-items: flex-start;
  gap: 11px;

  padding: 15px;

  border: 1px solid var(--sh-border);
  border-radius: 13px;

  background: var(--sh-surface-soft);
}

.job-application-confirmation input {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;

  margin-top: 2px;

  accent-color: var(--sh-primary);

  cursor: pointer;
}

.job-application-confirmation label {
  margin: 0;

  color: var(--sh-text-muted);

  font-size: 0.7rem;
  line-height: 1.6;

  cursor: pointer;
}

/* =========================================================
10. FORM ACTIONS
========================================================= */

.job-application-submit-row {
  grid-column: 1 / -1;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;

  margin-top: 3px;
  padding-top: 23px;

  border-top: 1px solid var(--sh-border);
}

.job-application-cancel-button,
.job-application-submit-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;

  border-radius: 13px;

  font-size: 0.78rem;
  font-weight: 820;

  transition:
    color var(--sh-transition),
    border-color var(--sh-transition),
    background-color var(--sh-transition),
    box-shadow var(--sh-transition),
    transform var(--sh-transition);
}

.job-application-cancel-button {
  padding: 10px 16px;

  border: 1px solid var(--sh-border);

  background: var(--sh-white);
  color: var(--sh-text-muted);
}

.job-application-cancel-button:hover {
  border-color: rgba(113, 56, 232, 0.2);
  background: var(--sh-primary-soft);
  color: var(--sh-primary);
  transform: translateY(-2px);
}

.job-application-submit-button {
  min-width: 220px;
  padding: 10px 18px;

  border: 0;

  background: var(--sh-gradient-primary);
  color: var(--sh-white);

  box-shadow: var(--sh-shadow-primary);
}

.job-application-submit-button:hover {
  box-shadow: 0 19px 42px rgba(113, 56, 232, 0.35);

  transform: translateY(-3px);
}

.job-application-submit-button:active {
  transform: translateY(0);
}

.job-application-submit-arrow {
  transition: transform var(--sh-transition);
}

.job-application-submit-button:hover .job-application-submit-arrow {
  transform: translateX(4px);
}

/* =========================================================
11. APPLICATION SIDEBAR
========================================================= */

.job-application-sidebar {
  position: sticky;
  top: calc(var(--sh-navbar-height) + 24px);

  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 18px;
}

.job-application-summary-card {
  padding: 26px;

  border: 1px solid var(--sh-border);
  border-radius: 22px;

  background: linear-gradient(145deg, var(--sh-white), var(--sh-surface-soft));

  box-shadow: 0 16px 44px rgba(30, 18, 51, 0.075);
}

.job-application-summary-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;

  padding-bottom: 19px;

  border-bottom: 1px solid var(--sh-border);
}

.job-application-summary-icon {
  display: inline-flex;
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  align-items: center;
  justify-content: center;

  border-radius: 14px;

  background: var(--sh-primary-soft);
  color: var(--sh-primary);

  font-size: 1rem;
}

.job-application-summary-header > div {
  min-width: 0;
}

.job-application-summary-header small {
  display: block;

  color: var(--sh-primary);

  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.job-application-summary-header h2 {
  display: -webkit-box;
  overflow: hidden;

  margin: 4px 0 0;

  color: var(--sh-text);

  font-size: 1rem;
  font-weight: 820;
  letter-spacing: -0.025em;
  line-height: 1.4;

  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.job-application-summary-company {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;

  padding: 17px 0;

  border-bottom: 1px solid var(--sh-border);

  color: var(--sh-text-muted);

  font-size: 0.73rem;
}

.job-application-summary-company i {
  flex: 0 0 auto;
  color: var(--sh-primary);
}

.job-application-summary-company span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.job-application-summary-list {
  display: flex;
  flex-direction: column;
  gap: 2px;

  padding-top: 8px;
}

.job-application-summary-item {
  display: flex;
  align-items: center;
  gap: 11px;

  padding: 11px 2px;

  border-bottom: 1px solid rgba(232, 229, 238, 0.8);
}

.job-application-summary-item:last-child {
  border-bottom: 0;
}

.job-application-summary-item > span {
  display: inline-flex;
  width: 37px;
  height: 37px;
  flex: 0 0 37px;
  align-items: center;
  justify-content: center;

  border-radius: 11px;

  background: var(--sh-gradient-soft);
  color: var(--sh-primary);

  font-size: 0.85rem;
}

.job-application-summary-item > div {
  min-width: 0;
}

.job-application-summary-item small,
.job-application-summary-item strong {
  display: block;
}

.job-application-summary-item small {
  color: var(--sh-text-muted);
  font-size: 0.61rem;
}

.job-application-summary-item strong {
  overflow: hidden;

  margin-top: 2px;

  color: var(--sh-text-secondary);

  font-size: 0.73rem;
  font-weight: 780;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.job-application-review-link {
  display: flex;
  min-height: 47px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  margin-top: 19px;
  padding: 9px 12px 9px 15px;

  border: 1px solid rgba(113, 56, 232, 0.14);
  border-radius: 12px;

  background: var(--sh-primary-soft);
  color: var(--sh-primary);

  font-size: 0.72rem;
  font-weight: 800;

  transition:
    color var(--sh-transition),
    background-color var(--sh-transition),
    transform var(--sh-transition);
}

.job-application-review-link:hover {
  background: var(--sh-primary);
  color: var(--sh-white);
  transform: translateY(-2px);
}

/* =========================================================
12. SECURITY AND HELP CARDS
========================================================= */

.job-application-security-card,
.job-application-help-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;

  padding: 18px;

  border-radius: 17px;
}

.job-application-security-card {
  border: 1px solid rgba(22, 184, 166, 0.14);

  background: linear-gradient(
    135deg,
    rgba(22, 184, 166, 0.08),
    rgba(113, 56, 232, 0.045)
  );
}

.job-application-help-card {
  border: 1px solid var(--sh-border);

  background: var(--sh-white);

  box-shadow: var(--sh-shadow-xs);
}

.job-application-security-icon,
.job-application-help-icon {
  display: inline-flex;
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  font-size: 0.94rem;
}

.job-application-security-icon {
  background: var(--sh-secondary-soft);
  color: var(--sh-secondary-dark);
}

.job-application-help-icon {
  background: var(--sh-primary-soft);
  color: var(--sh-primary);
}

.job-application-security-card strong,
.job-application-help-card strong {
  display: block;

  color: var(--sh-text-secondary);

  font-size: 0.74rem;
  font-weight: 800;
}

.job-application-security-card p,
.job-application-help-card p {
  margin: 5px 0 0;

  color: var(--sh-text-muted);

  font-size: 0.68rem;
  line-height: 1.55;
}

.job-application-help-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  margin-top: 10px;

  color: var(--sh-primary);

  font-size: 0.68rem;
  font-weight: 800;
}

.job-application-help-card a i {
  transition: transform var(--sh-transition);
}

.job-application-help-card a:hover i {
  transform: translateX(3px);
}

/* =========================================================
13. FOCUS STATES
========================================================= */

.job-application-back-link:focus-visible,
.job-application-cancel-button:focus-visible,
.job-application-submit-button:focus-visible,
.job-application-review-link:focus-visible,
.job-application-help-card a:focus-visible {
  outline: 3px solid rgba(113, 56, 232, 0.28);
  outline-offset: 3px;
}

/* =========================================================
14. TABLET
========================================================= */

@media (max-width: 991.98px) {
  .job-application-hero {
    padding: 52px 0 70px;
  }

  .job-application-hero-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .job-application-hero-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .job-application-trust-item {
    align-items: flex-start;
  }

  .job-application-layout {
    grid-template-columns: 1fr;
  }

  .job-application-sidebar {
    position: static;

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

  .job-application-summary-card {
    grid-row: span 2;
  }
}

/* =========================================================
15. MOBILE
========================================================= */

@media (max-width: 767.98px) {
  .job-application-hero {
    padding: 42px 0 58px;
  }

  .job-application-hero-layout {
    padding: 25px 21px;

    border-radius: 22px;
  }

  .job-application-title {
    font-size: clamp(2.2rem, 11vw, 3.35rem);
  }

  .job-application-hero-trust {
    grid-template-columns: 1fr;
  }

  .job-application-section {
    padding: 60px 0 80px;
  }

  .job-application-form-card {
    padding: 25px 20px;

    border-radius: 20px;
  }

  .job-application-form {
    grid-template-columns: 1fr;
  }

  .job-application-field-full,
  .job-application-fee-card,
  .job-application-confirmation,
  .job-application-submit-row {
    grid-column: auto;
  }

  .job-application-field-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .job-application-character-count,
  .job-resume-file-name {
    text-align: left;
  }

  .job-application-submit-row {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .job-application-cancel-button,
  .job-application-submit-button {
    width: 100%;
  }

  .job-application-sidebar {
    grid-template-columns: 1fr;
  }

  .job-application-summary-card {
    grid-row: auto;
  }
}

/* =========================================================
16. EXTRA-SMALL MOBILE
========================================================= */

@media (max-width: 479.98px) {
  .job-application-title {
    font-size: 2.35rem;
  }

  .job-application-form-header {
    align-items: flex-start;
  }

  .job-resume-upload-label {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .job-resume-upload-copy {
    width: calc(100% - 65px);
  }

  .job-resume-browse-button {
    width: 100%;
  }

  .job-application-fee-card {
    align-items: flex-start;
  }
}

/* =========================================================
17. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .job-application-glow {
    animation: none;
  }
}

/* =========================================================
   APPLICATION SUCCESS PAGE
========================================================= */

.application-success-section {
  position: relative;
  overflow: hidden;
  padding: 90px 0 110px;
  background:
    radial-gradient(
      circle at top left,
      rgba(113, 56, 232, 0.09),
      transparent 35%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(22, 184, 166, 0.08),
      transparent 35%
    ),
    var(--sh-bg);
}

.application-success-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(5px);
  pointer-events: none;
}

.application-success-glow-one {
  width: 420px;
  height: 420px;
  top: -180px;
  left: -140px;
  background: radial-gradient(
    circle,
    rgba(113, 56, 232, 0.16),
    transparent 70%
  );
}

.application-success-glow-two {
  width: 520px;
  height: 520px;
  right: -180px;
  bottom: -220px;
  background: radial-gradient(
    circle,
    rgba(22, 184, 166, 0.14),
    transparent 70%
  );
}

.application-success-card {
  max-width: 860px;
  margin: auto;

  padding: 60px;

  border: 1px solid var(--sh-border);

  border-radius: 28px;

  background: #fff;

  box-shadow: 0 25px 70px rgba(24, 15, 42, 0.08);

  text-align: center;
}

.application-success-icon {
  width: 95px;
  height: 95px;

  margin: 0 auto 25px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(34, 160, 107, 0.12);

  color: var(--sh-success);

  font-size: 3rem;
}

.application-success-badge {
  display: inline-flex;

  padding: 8px 16px;

  border-radius: 999px;

  background: rgba(34, 160, 107, 0.1);

  color: var(--sh-success);

  font-size: 0.72rem;

  font-weight: 800;

  letter-spacing: 0.08em;

  text-transform: uppercase;

  margin-bottom: 20px;
}

.application-success-title {
  margin: 0;

  font-size: clamp(2.4rem, 5vw, 4rem);

  font-weight: 900;

  letter-spacing: -0.05em;

  color: var(--sh-text);
}

.application-success-title span {
  display: block;

  margin-top: 8px;

  background: var(--sh-gradient-primary);

  -webkit-background-clip: text;

  color: transparent;
}

.application-success-description {
  max-width: 650px;

  margin: 28px auto;

  color: var(--sh-text-muted);

  line-height: 1.9;

  font-size: 0.95rem;
}

.application-success-summary {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 18px;

  margin: 45px 0;
}

.application-summary-item {
  padding: 22px;

  border: 1px solid var(--sh-border);

  border-radius: 18px;

  background: var(--sh-surface-soft);
}

.application-summary-label {
  display: block;

  color: var(--sh-text-muted);

  font-size: 0.68rem;

  margin-bottom: 8px;

  text-transform: uppercase;

  font-weight: 700;

  letter-spacing: 0.05em;
}

.application-summary-item strong {
  display: block;

  color: var(--sh-text);

  font-size: 0.88rem;

  line-height: 1.5;

  word-break: break-word;
}

.application-id {
  font-family: monospace;
}

.application-next-steps {
  margin-top: 10px;
}

.application-next-steps h2 {
  font-size: 1.45rem;

  font-weight: 800;

  margin-bottom: 28px;
}

.application-steps {
  display: grid;

  gap: 18px;
}

.application-step {
  display: flex;

  gap: 18px;

  align-items: flex-start;

  text-align: left;

  padding: 18px;

  border: 1px solid var(--sh-border);

  border-radius: 16px;
}

.application-step span {
  width: 38px;

  height: 38px;

  flex: 0 0 38px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: var(--sh-gradient-primary);

  color: #fff;

  font-weight: 800;
}

.application-step p {
  margin: 0;

  color: var(--sh-text-muted);

  line-height: 1.7;
}

.application-success-actions {
  margin-top: 45px;
}

.application-success-button {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 15px 26px;

  border-radius: 14px;

  background: var(--sh-gradient-primary);

  color: #fff;

  font-weight: 800;

  box-shadow: var(--sh-shadow-primary);

  transition: 0.3s;
}

.application-success-button:hover {
  color: #fff;

  transform: translateY(-3px);
}

/* Responsive */

@media (max-width: 991px) {
  .application-success-summary {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .application-success-card {
    padding: 35px 22px;
  }

  .application-success-title {
    font-size: 2.4rem;
  }

  .application-step {
    flex-direction: column;

    align-items: flex-start;
  }
}

/* =========================================================
SMART HIRING — PREMIUM PAYMENT CHECKOUT PAGE
========================================================= */

/* =========================================================

1. CHECKOUT HERO
   ========================================================= */

.payment-checkout-hero {
  position: relative;

  padding: 58px 0 90px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 8% 12%,
      rgba(113, 56, 232, 0.17),
      transparent 30%
    ),
    radial-gradient(
      circle at 92% 32%,
      rgba(22, 184, 166, 0.11),
      transparent 28%
    ),
    linear-gradient(180deg, #fcfbff 0%, #f6f6fc 100%);
}

.payment-checkout-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;

  height: 135px;

  background: linear-gradient(180deg, transparent, rgba(247, 248, 252, 0.94));

  pointer-events: none;
}

.payment-checkout-grid {
  position: absolute;
  inset: 0;

  opacity: 0.35;

  background-image:
    linear-gradient(rgba(113, 56, 232, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(113, 56, 232, 0.035) 1px, transparent 1px);

  background-size: 46px 46px;

  mask-image: linear-gradient(to bottom, black, transparent 90%);

  pointer-events: none;
}

.payment-checkout-glow {
  position: absolute;

  border-radius: 50%;

  filter: blur(5px);

  pointer-events: none;
}

.payment-checkout-glow-one {
  top: -180px;
  left: -160px;

  width: 450px;
  height: 450px;

  background: radial-gradient(
    circle,
    rgba(113, 56, 232, 0.19),
    transparent 69%
  );

  animation: sh-orb-float 10s ease-in-out infinite;
}

.payment-checkout-glow-two {
  right: -190px;
  bottom: -225px;

  width: 530px;
  height: 530px;

  background: radial-gradient(
    circle,
    rgba(22, 184, 166, 0.15),
    transparent 69%
  );

  animation: sh-orb-float 12s ease-in-out infinite reverse;
}

.payment-checkout-back-link {
  position: relative;
  z-index: 3;

  display: inline-flex;
  align-items: center;
  gap: 9px;

  margin-bottom: 28px;

  color: var(--sh-text-secondary);

  font-size: 0.81rem;
  font-weight: 750;

  transition:
    color var(--sh-transition),
    transform var(--sh-transition);
}

.payment-checkout-back-icon {
  display: inline-flex;
  width: 35px;
  height: 35px;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--sh-border);
  border-radius: 11px;

  background: rgba(255, 255, 255, 0.8);
  color: var(--sh-primary);

  box-shadow: var(--sh-shadow-xs);

  transition:
    border-color var(--sh-transition),
    background-color var(--sh-transition),
    transform var(--sh-transition);
}

.payment-checkout-back-link:hover {
  color: var(--sh-primary);
  transform: translateX(-2px);
}

.payment-checkout-back-link:hover .payment-checkout-back-icon {
  border-color: rgba(113, 56, 232, 0.2);
  background: var(--sh-primary-soft);
  transform: translateX(-3px);
}

.payment-checkout-hero-content {
  position: relative;
  z-index: 3;

  max-width: 880px;
}

.payment-checkout-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-bottom: 18px;

  color: var(--sh-primary);

  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.payment-checkout-title {
  margin: 0;

  color: var(--sh-text);

  font-size: clamp(2.6rem, 5.5vw, 4.9rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 1.01;
}

.payment-checkout-title span {
  display: block;
  margin-top: 8px;

  background: var(--sh-gradient-primary);

  background-clip: text;
  -webkit-background-clip: text;

  color: transparent;
  -webkit-text-fill-color: transparent;
}

.payment-checkout-description {
  max-width: 760px;
  margin: 23px 0 0;

  color: var(--sh-text-secondary);

  font-size: 0.96rem;
  line-height: 1.8;
}

.payment-checkout-description strong {
  color: var(--sh-text);
  font-weight: 780;
}

.payment-checkout-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;

  margin-top: 28px;
}

.payment-checkout-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  padding: 8px 11px;

  border: 1px solid rgba(113, 56, 232, 0.11);
  border-radius: var(--sh-radius-pill);

  background: rgba(255, 255, 255, 0.72);
  color: var(--sh-text-secondary);

  font-size: 0.68rem;
  font-weight: 720;
}

.payment-checkout-trust-item i {
  color: var(--sh-primary);
}

/* =========================================================
2. CHECKOUT LAYOUT
========================================================= */

.payment-checkout-section {
  padding: 75px 0 105px;

  background:
    radial-gradient(
      circle at 5% 12%,
      rgba(113, 56, 232, 0.04),
      transparent 25%
    ),
    radial-gradient(
      circle at 95% 82%,
      rgba(22, 184, 166, 0.035),
      transparent 26%
    ),
    var(--sh-bg);
}

.payment-checkout-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 1.55fr)
    minmax(290px, 0.68fr);

  align-items: start;
  gap: 31px;
}

.payment-checkout-main {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 24px;
}

.payment-checkout-card {
  padding: 35px;

  border: 1px solid var(--sh-border);
  border-radius: 24px;

  background: var(--sh-white);

  box-shadow: 0 15px 44px rgba(30, 18, 51, 0.07);
}

.payment-checkout-card-header {
  display: flex;
  align-items: center;
  gap: 15px;

  margin-bottom: 27px;
  padding-bottom: 22px;

  border-bottom: 1px solid var(--sh-border);
}

.payment-checkout-card-icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(113, 56, 232, 0.12);
  border-radius: 16px;

  background: var(--sh-gradient-soft);
  color: var(--sh-primary);

  font-size: 1.08rem;
}

.payment-checkout-card-header span {
  display: block;

  margin-bottom: 3px;

  color: var(--sh-primary);

  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.payment-checkout-card-header h2 {
  margin: 0;

  color: var(--sh-text);

  font-size: 1.32rem;
  font-weight: 840;
  letter-spacing: -0.035em;
}

.payment-checkout-card-header p {
  margin: 5px 0 0;

  color: var(--sh-text-muted);

  font-size: 0.7rem;
}

/* =========================================================
3. JOB AND APPLICANT DETAILS
========================================================= */

.payment-checkout-job-card {
  display: flex;
  align-items: center;
  gap: 14px;

  padding: 18px;

  border: 1px solid rgba(113, 56, 232, 0.12);
  border-radius: 16px;

  background: linear-gradient(
    135deg,
    rgba(113, 56, 232, 0.06),
    rgba(22, 184, 166, 0.04)
  );
}

.payment-checkout-company-icon {
  display: inline-flex;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  align-items: center;
  justify-content: center;

  border-radius: 15px;

  background: var(--sh-primary-soft);
  color: var(--sh-primary);

  font-size: 1.05rem;
}

.payment-checkout-job-copy {
  min-width: 0;
}

.payment-checkout-job-copy small {
  display: block;

  color: var(--sh-text-muted);

  font-size: 0.63rem;
}

.payment-checkout-job-copy h3 {
  margin: 3px 0 0;

  color: var(--sh-text);

  font-size: 1rem;
  font-weight: 820;
  line-height: 1.4;
}

.payment-checkout-job-copy p {
  display: flex;
  align-items: center;
  gap: 7px;

  margin: 5px 0 0;

  color: var(--sh-text-muted);

  font-size: 0.7rem;
}

.payment-checkout-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;

  margin-top: 18px;
}

.payment-checkout-detail-item {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 11px;

  padding: 14px;

  border: 1px solid var(--sh-border);
  border-radius: 14px;

  background: var(--sh-surface-soft);
}

.payment-checkout-detail-icon {
  display: inline-flex;
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: var(--sh-primary-soft);
  color: var(--sh-primary);

  font-size: 0.9rem;
}

.payment-checkout-detail-item > div {
  min-width: 0;
}

.payment-checkout-detail-item small,
.payment-checkout-detail-item strong {
  display: block;
}

.payment-checkout-detail-item small {
  color: var(--sh-text-muted);

  font-size: 0.62rem;
}

.payment-checkout-detail-item strong {
  overflow: hidden;

  margin-top: 2px;

  color: var(--sh-text-secondary);

  font-size: 0.74rem;
  font-weight: 780;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* =========================================================
4. PAYMENT SUMMARY
========================================================= */

.payment-checkout-summary {
  margin-top: 22px;
  padding: 19px;

  border: 1px solid var(--sh-border);
  border-radius: 16px;

  background: var(--sh-surface-soft);
}

.payment-checkout-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;

  padding: 8px 0;
}

.payment-checkout-summary-row span {
  color: var(--sh-text-muted);

  font-size: 0.72rem;
}

.payment-checkout-summary-row strong {
  color: var(--sh-text-secondary);

  font-size: 0.76rem;
  font-weight: 800;
}

.payment-checkout-summary-divider {
  height: 1px;

  margin: 10px 0;

  background: var(--sh-border);
}

.payment-checkout-total span {
  color: var(--sh-text-secondary);

  font-size: 0.82rem;
  font-weight: 760;
}

.payment-checkout-total strong {
  color: var(--sh-primary);

  font-size: 1.25rem;
  font-weight: 900;
}

/* =========================================================
5. PAYMENT BUTTON
========================================================= */

.payment-checkout-button {
  display: flex;
  width: 100%;
  min-height: 66px;
  align-items: center;
  gap: 13px;

  margin-top: 23px;
  padding: 11px 15px;

  border: 0;
  border-radius: 15px;

  background: var(--sh-gradient-primary);
  color: var(--sh-white);

  box-shadow: 0 17px 38px rgba(113, 56, 232, 0.3);

  text-align: left;

  transition:
    box-shadow var(--sh-transition),
    opacity var(--sh-transition),
    transform var(--sh-transition);
}

.payment-checkout-button:hover:not(:disabled) {
  box-shadow: 0 22px 45px rgba(113, 56, 232, 0.38);

  transform: translateY(-3px);
}

.payment-checkout-button:active:not(:disabled) {
  transform: translateY(0);
}

.payment-checkout-button:disabled {
  cursor: not-allowed;
  opacity: 0.78;
}

.payment-checkout-button-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;

  background: rgba(255, 255, 255, 0.13);

  font-size: 0.92rem;
}

.payment-checkout-button-copy {
  flex: 1;
}

.payment-checkout-button-copy small,
.payment-checkout-button-copy strong {
  display: block;
}

.payment-checkout-button-copy small {
  color: rgba(255, 255, 255, 0.65);

  font-size: 0.61rem;
}

.payment-checkout-button-copy strong {
  margin-top: 1px;

  color: var(--sh-white);

  font-size: 0.84rem;
  font-weight: 820;
}

.payment-checkout-button-arrow {
  margin-right: 3px;

  transition: transform var(--sh-transition);
}

.payment-checkout-button:hover:not(:disabled) .payment-checkout-button-arrow {
  transform: translateX(4px);
}

.payment-checkout-button-note {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 7px;

  margin: 12px auto 0;

  color: var(--sh-text-muted);

  font-size: 0.64rem;
  line-height: 1.5;
  text-align: center;
}

.payment-checkout-button-note i {
  flex: 0 0 auto;

  margin-top: 1px;

  color: var(--sh-success);
}

.payment-button-spinner {
  width: 23px;
  height: 23px;
  flex: 0 0 23px;

  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--sh-white);
  border-radius: 50%;

  animation: payment-button-spin 0.75s linear infinite;
}

@keyframes payment-button-spin {
  to {
    transform: rotate(360deg);
  }
}

/* =========================================================
6. PROCESSING FEE INFORMATION
========================================================= */

.payment-processing-info {
  padding: 33px;

  border: 1px solid var(--sh-border);
  border-radius: 23px;

  background: var(--sh-white);

  box-shadow: 0 13px 38px rgba(30, 18, 51, 0.055);
}

.payment-processing-info-header {
  display: flex;
  align-items: center;
  gap: 14px;

  margin-bottom: 25px;
  padding-bottom: 21px;

  border-bottom: 1px solid var(--sh-border);
}

.payment-processing-info-icon {
  display: inline-flex;
  width: 49px;
  height: 49px;
  flex: 0 0 49px;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(113, 56, 232, 0.12);
  border-radius: 15px;

  background: var(--sh-gradient-soft);
  color: var(--sh-primary);

  font-size: 1.02rem;
}

.payment-processing-info-header span {
  display: block;

  margin-bottom: 3px;

  color: var(--sh-primary);

  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.payment-processing-info-header h2 {
  margin: 0;

  color: var(--sh-text);

  font-size: 1.25rem;
  font-weight: 830;
  letter-spacing: -0.03em;
}

.payment-processing-info-header p {
  margin: 5px 0 0;

  color: var(--sh-text-muted);

  font-size: 0.7rem;
}

.payment-processing-reasons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.payment-processing-reason {
  display: flex;
  align-items: flex-start;
  gap: 11px;

  padding: 16px;

  border: 1px solid var(--sh-border);
  border-radius: 14px;

  background: var(--sh-surface-soft);
}

.payment-processing-reason-icon {
  display: inline-flex;
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: var(--sh-primary-soft);
  color: var(--sh-primary);

  font-size: 0.9rem;
}

.payment-processing-reason:nth-child(even) .payment-processing-reason-icon {
  background: var(--sh-secondary-soft);
  color: var(--sh-secondary-dark);
}

.payment-processing-reason strong {
  display: block;

  color: var(--sh-text-secondary);

  font-size: 0.75rem;
  font-weight: 800;
}

.payment-processing-reason p {
  margin: 5px 0 0;

  color: var(--sh-text-muted);

  font-size: 0.66rem;
  line-height: 1.55;
}

.payment-processing-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;

  margin-top: 17px;
  padding: 14px;

  border: 1px solid rgba(245, 158, 11, 0.17);
  border-radius: 13px;

  background: rgba(245, 158, 11, 0.07);
  color: #80550b;
}

.payment-processing-notice i {
  flex: 0 0 auto;
  margin-top: 2px;
}

.payment-processing-notice p {
  margin: 0;

  font-size: 0.66rem;
  line-height: 1.6;
}

/* =========================================================
7. CHECKOUT SIDEBAR
========================================================= */

.payment-checkout-sidebar {
  position: sticky;
  top: calc(var(--sh-navbar-height) + 24px);

  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 18px;
}

.payment-security-card,
.payment-order-card {
  padding: 25px;

  border: 1px solid var(--sh-border);
  border-radius: 21px;

  background: linear-gradient(145deg, var(--sh-white), var(--sh-surface-soft));

  box-shadow: 0 15px 42px rgba(30, 18, 51, 0.07);
}

.payment-security-header {
  display: flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 19px;
  padding-bottom: 18px;

  border-bottom: 1px solid var(--sh-border);
}

.payment-security-header-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;

  border-radius: 13px;

  background: var(--sh-secondary-soft);
  color: var(--sh-secondary-dark);

  font-size: 0.98rem;
}

.payment-security-header small {
  display: block;

  color: var(--sh-secondary-dark);

  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.payment-security-header h2 {
  margin: 3px 0 0;

  color: var(--sh-text);

  font-size: 1rem;
  font-weight: 820;
}

.payment-security-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.payment-security-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;

  color: var(--sh-text-muted);

  font-size: 0.69rem;
  line-height: 1.5;
}

.payment-security-item i {
  flex: 0 0 auto;

  margin-top: 1px;

  color: var(--sh-success);
}

.payment-order-label {
  display: block;

  margin-bottom: 18px;

  color: var(--sh-primary);

  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.payment-order-amount {
  padding-bottom: 19px;

  border-bottom: 1px solid var(--sh-border);
}

.payment-order-amount small,
.payment-order-amount strong {
  display: block;
}

.payment-order-amount small {
  color: var(--sh-text-muted);
  font-size: 0.64rem;
}

.payment-order-amount strong {
  margin-top: 4px;

  color: var(--sh-primary);

  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.payment-order-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  padding-top: 14px;
}

.payment-order-meta span {
  color: var(--sh-text-muted);

  font-size: 0.66rem;
}

.payment-order-meta strong {
  color: var(--sh-text-secondary);

  font-size: 0.68rem;
  font-weight: 780;
}

/* =========================================================
8. HELP CARD
========================================================= */

.payment-help-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;

  padding: 18px;

  border: 1px solid rgba(113, 56, 232, 0.11);
  border-radius: 17px;

  background: linear-gradient(
    135deg,
    rgba(113, 56, 232, 0.06),
    rgba(22, 184, 166, 0.04)
  );
}

.payment-help-icon {
  display: inline-flex;
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: var(--sh-primary-soft);
  color: var(--sh-primary);

  font-size: 0.94rem;
}

.payment-help-card strong {
  display: block;

  color: var(--sh-text-secondary);

  font-size: 0.74rem;
  font-weight: 800;
}

.payment-help-card p {
  margin: 5px 0 0;

  color: var(--sh-text-muted);

  font-size: 0.68rem;
  line-height: 1.55;
}

.payment-help-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  margin-top: 10px;

  color: var(--sh-primary);

  font-size: 0.68rem;
  font-weight: 800;
}

.payment-help-card a i {
  transition: transform var(--sh-transition);
}

.payment-help-card a:hover i {
  transform: translateX(3px);
}

/* =========================================================
9. FOCUS STATES
========================================================= */

.payment-checkout-back-link:focus-visible,
.payment-checkout-button:focus-visible,
.payment-help-card a:focus-visible {
  outline: 3px solid rgba(113, 56, 232, 0.28);
  outline-offset: 3px;
}

/* =========================================================
10. TABLET
========================================================= */

@media (max-width: 991.98px) {
  .payment-checkout-hero {
    padding: 50px 0 70px;
  }

  .payment-checkout-layout {
    grid-template-columns: 1fr;
  }

  .payment-checkout-sidebar {
    position: static;

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

  .payment-security-card {
    grid-row: span 2;
  }
}

/* =========================================================
11. MOBILE
========================================================= */

@media (max-width: 767.98px) {
  .payment-checkout-hero {
    padding: 42px 0 58px;
  }

  .payment-checkout-title {
    font-size: clamp(2.3rem, 11vw, 3.5rem);
  }

  .payment-checkout-trust-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .payment-checkout-section {
    padding: 60px 0 80px;
  }

  .payment-checkout-card,
  .payment-processing-info {
    padding: 25px 20px;

    border-radius: 20px;
  }

  .payment-checkout-details,
  .payment-processing-reasons {
    grid-template-columns: 1fr;
  }

  .payment-checkout-sidebar {
    grid-template-columns: 1fr;
  }

  .payment-security-card {
    grid-row: auto;
  }
}

/* =========================================================
12. EXTRA-SMALL MOBILE
========================================================= */

@media (max-width: 479.98px) {
  .payment-checkout-title {
    font-size: 2.35rem;
  }

  .payment-checkout-card-header,
  .payment-processing-info-header {
    align-items: flex-start;
  }

  .payment-checkout-job-card {
    align-items: flex-start;
  }

  .payment-checkout-summary-row {
    align-items: flex-start;
  }
}

/* =========================================================
13. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .payment-checkout-glow,
  .payment-button-spinner {
    animation: none;
  }
}

/* =========================================================
SMART HIRING — PAYMENT FAILED PAGE
========================================================= */

/* =========================================================

1. PAGE SECTION
   ========================================================= */

.payment-failed-section {
  position: relative;

  min-height: calc(100vh - var(--sh-navbar-height));
  padding: 90px 0 110px;

  overflow: hidden;

  background:
    radial-gradient(circle at 8% 12%, rgba(220, 53, 69, 0.09), transparent 30%),
    radial-gradient(
      circle at 92% 85%,
      rgba(113, 56, 232, 0.08),
      transparent 30%
    ),
    linear-gradient(180deg, #fdfbfc 0%, #f7f7fb 100%);
}

.payment-failed-grid {
  position: absolute;
  inset: 0;

  opacity: 0.33;

  background-image:
    linear-gradient(rgba(113, 56, 232, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(113, 56, 232, 0.035) 1px, transparent 1px);

  background-size: 46px 46px;

  mask-image: linear-gradient(to bottom, black, transparent 90%);

  pointer-events: none;
}

.payment-failed-glow {
  position: absolute;

  border-radius: 50%;

  filter: blur(5px);

  pointer-events: none;
}

.payment-failed-glow-one {
  top: -180px;
  left: -170px;

  width: 450px;
  height: 450px;

  background: radial-gradient(circle, rgba(220, 53, 69, 0.14), transparent 70%);

  animation: sh-orb-float 11s ease-in-out infinite;
}

.payment-failed-glow-two {
  right: -190px;
  bottom: -230px;

  width: 530px;
  height: 530px;

  background: radial-gradient(
    circle,
    rgba(113, 56, 232, 0.13),
    transparent 70%
  );

  animation: sh-orb-float 13s ease-in-out infinite reverse;
}

/* =========================================================
2. MAIN CARD
========================================================= */

.payment-failed-card {
  position: relative;
  z-index: 2;

  max-width: 900px;
  margin: 0 auto;
  padding: 54px;

  border: 1px solid rgba(228, 220, 225, 0.92);
  border-radius: 29px;

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.98),
    rgba(252, 250, 252, 0.96)
  );

  box-shadow:
    0 30px 80px rgba(39, 20, 33, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);

  text-align: center;

  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.payment-failed-icon {
  display: flex;
  width: 92px;
  height: 92px;
  align-items: center;
  justify-content: center;

  margin: 0 auto 23px;

  border: 1px solid rgba(220, 53, 69, 0.16);
  border-radius: 50%;

  background: linear-gradient(
    145deg,
    rgba(220, 53, 69, 0.13),
    rgba(220, 53, 69, 0.06)
  );

  color: #d13d4c;

  box-shadow: 0 16px 34px rgba(220, 53, 69, 0.12);

  font-size: 2.1rem;
}

.payment-failed-badge {
  display: inline-flex;
  align-items: center;

  margin-bottom: 18px;
  padding: 8px 15px;

  border: 1px solid rgba(220, 53, 69, 0.15);
  border-radius: var(--sh-radius-pill);

  background: rgba(220, 53, 69, 0.075);
  color: #bc3543;

  font-size: 0.66rem;
  font-weight: 820;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.payment-failed-title {
  max-width: 730px;
  margin: 0 auto;

  color: var(--sh-text);

  font-size: clamp(2.5rem, 5vw, 4.35rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 1.04;
}

.payment-failed-title span {
  display: block;
  margin-top: 7px;

  background: linear-gradient(135deg, #d13d4c, #8c3ed8);

  background-clip: text;
  -webkit-background-clip: text;

  color: transparent;
  -webkit-text-fill-color: transparent;
}

.payment-failed-description {
  max-width: 650px;
  margin: 23px auto 0;

  color: var(--sh-text-muted);

  font-size: 0.91rem;
  line-height: 1.8;
}

/* =========================================================
3. PAYMENT DETAILS
========================================================= */

.payment-failed-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;

  margin-top: 37px;
  padding: 20px;

  border: 1px solid var(--sh-border);
  border-radius: 19px;

  background: var(--sh-surface-soft);

  text-align: left;
}

.payment-failed-detail-item {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;

  padding: 15px;

  border: 1px solid rgba(229, 225, 235, 0.95);
  border-radius: 14px;

  background: var(--sh-white);
}

.payment-failed-detail-icon {
  display: inline-flex;
  width: 41px;
  height: 41px;
  flex: 0 0 41px;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: rgba(220, 53, 69, 0.075);
  color: #c93c4b;

  font-size: 0.91rem;
}

.payment-failed-detail-item > div {
  min-width: 0;
}

.payment-failed-detail-item small,
.payment-failed-detail-item strong {
  display: block;
}

.payment-failed-detail-item small {
  color: var(--sh-text-muted);

  font-size: 0.62rem;
}

.payment-failed-detail-item strong {
  overflow: hidden;

  margin-top: 3px;

  color: var(--sh-text-secondary);

  font-size: 0.76rem;
  font-weight: 790;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.payment-failed-status {
  color: #c93c4b !important;
}

.payment-failed-reference {
  grid-column: 1 / -1;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  padding: 13px 15px;

  border: 1px dashed rgba(113, 56, 232, 0.2);
  border-radius: 12px;

  background: rgba(113, 56, 232, 0.035);
}

.payment-failed-reference span {
  color: var(--sh-text-muted);

  font-size: 0.65rem;
  font-weight: 720;
}

.payment-failed-reference code {
  overflow-wrap: anywhere;

  color: var(--sh-primary);

  font-size: 0.69rem;
}

/* =========================================================
4. EMPTY NOTICE
========================================================= */

.payment-failed-notice {
  display: flex;
  align-items: flex-start;
  gap: 11px;

  max-width: 680px;
  margin: 34px auto 0;
  padding: 15px;

  border: 1px solid rgba(245, 158, 11, 0.18);
  border-radius: 14px;

  background: rgba(245, 158, 11, 0.07);
  color: #82590e;

  text-align: left;
}

.payment-failed-notice i {
  flex: 0 0 auto;
  margin-top: 2px;
}

.payment-failed-notice p {
  margin: 0;

  font-size: 0.69rem;
  line-height: 1.6;
}

/* =========================================================
5. COMMON REASONS
========================================================= */

.payment-failed-reasons {
  margin-top: 38px;
  padding-top: 30px;

  border-top: 1px solid var(--sh-border);

  text-align: left;
}

.payment-failed-section-heading {
  display: flex;
  align-items: center;
  gap: 13px;

  margin-bottom: 20px;
}

.payment-failed-section-icon {
  display: inline-flex;
  width: 47px;
  height: 47px;
  flex: 0 0 47px;
  align-items: center;
  justify-content: center;

  border-radius: 14px;

  background: var(--sh-primary-soft);
  color: var(--sh-primary);

  font-size: 1rem;
}

.payment-failed-section-heading small {
  display: block;

  color: var(--sh-primary);

  font-size: 0.62rem;
  font-weight: 820;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.payment-failed-section-heading h2 {
  margin: 3px 0 0;

  color: var(--sh-text);

  font-size: 1.22rem;
  font-weight: 830;
  letter-spacing: -0.03em;
}

.payment-failed-reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.payment-failed-reason {
  display: flex;
  align-items: flex-start;
  gap: 11px;

  padding: 16px;

  border: 1px solid var(--sh-border);
  border-radius: 14px;

  background: var(--sh-surface-soft);
}

.payment-failed-reason > span {
  display: inline-flex;
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: rgba(220, 53, 69, 0.075);
  color: #c93c4b;

  font-size: 0.89rem;
}

.payment-failed-reason strong {
  display: block;

  color: var(--sh-text-secondary);

  font-size: 0.74rem;
  font-weight: 800;
}

.payment-failed-reason p {
  margin: 5px 0 0;

  color: var(--sh-text-muted);

  font-size: 0.66rem;
  line-height: 1.55;
}

/* =========================================================
6. SUPPORT NOTICE
========================================================= */

.payment-failed-help-notice {
  display: flex;
  align-items: flex-start;
  gap: 13px;

  margin-top: 20px;
  padding: 18px;

  border: 1px solid rgba(22, 184, 166, 0.15);
  border-radius: 15px;

  background: linear-gradient(
    135deg,
    rgba(22, 184, 166, 0.075),
    rgba(113, 56, 232, 0.04)
  );

  text-align: left;
}

.payment-failed-help-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;

  border-radius: 13px;

  background: var(--sh-secondary-soft);
  color: var(--sh-secondary-dark);

  font-size: 0.94rem;
}

.payment-failed-help-notice strong {
  display: block;

  color: var(--sh-text-secondary);

  font-size: 0.76rem;
  font-weight: 820;
}

.payment-failed-help-notice p {
  margin: 5px 0 0;

  color: var(--sh-text-muted);

  font-size: 0.68rem;
  line-height: 1.6;
}

/* =========================================================
7. ACTIONS
========================================================= */

.payment-failed-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;

  margin-top: 36px;
}

.payment-failed-primary-button,
.payment-failed-secondary-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;

  padding: 11px 19px;

  border-radius: 13px;

  font-size: 0.76rem;
  font-weight: 820;

  transition:
    color var(--sh-transition),
    border-color var(--sh-transition),
    background-color var(--sh-transition),
    box-shadow var(--sh-transition),
    transform var(--sh-transition);
}

.payment-failed-primary-button {
  min-width: 175px;

  border: 0;

  background: var(--sh-gradient-primary);
  color: var(--sh-white);

  box-shadow: var(--sh-shadow-primary);
}

.payment-failed-primary-button:hover {
  color: var(--sh-white);

  box-shadow: 0 19px 42px rgba(113, 56, 232, 0.34);

  transform: translateY(-3px);
}

.payment-failed-secondary-button {
  border: 1px solid var(--sh-border);

  background: var(--sh-white);
  color: var(--sh-text-muted);
}

.payment-failed-secondary-button:hover {
  border-color: rgba(113, 56, 232, 0.2);

  background: var(--sh-primary-soft);
  color: var(--sh-primary);

  transform: translateY(-3px);
}

.payment-failed-support-text {
  margin: 20px 0 0;

  color: var(--sh-text-muted);

  font-size: 0.67rem;
}

.payment-failed-support-text a {
  color: var(--sh-primary);
  font-weight: 780;
}

.payment-failed-support-text a:hover {
  text-decoration: underline;
}

/* =========================================================
8. FOCUS STATES
========================================================= */

.payment-failed-primary-button:focus-visible,
.payment-failed-secondary-button:focus-visible,
.payment-failed-support-text a:focus-visible {
  outline: 3px solid rgba(113, 56, 232, 0.28);
  outline-offset: 3px;
}

/* =========================================================
9. TABLET
========================================================= */

@media (max-width: 991.98px) {
  .payment-failed-section {
    padding: 72px 0 90px;
  }

  .payment-failed-card {
    padding: 45px 36px;
  }
}

/* =========================================================
10. MOBILE
========================================================= */

@media (max-width: 767.98px) {
  .payment-failed-section {
    padding: 55px 0 75px;
  }

  .payment-failed-card {
    padding: 35px 21px;

    border-radius: 22px;
  }

  .payment-failed-title {
    font-size: clamp(2.25rem, 11vw, 3.3rem);
  }

  .payment-failed-details,
  .payment-failed-reasons-grid {
    grid-template-columns: 1fr;
  }

  .payment-failed-reference {
    grid-column: auto;

    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .payment-failed-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .payment-failed-primary-button,
  .payment-failed-secondary-button {
    width: 100%;
  }
}

/* =========================================================
11. EXTRA-SMALL MOBILE
========================================================= */

@media (max-width: 479.98px) {
  .payment-failed-title {
    font-size: 2.3rem;
  }

  .payment-failed-icon {
    width: 78px;
    height: 78px;

    font-size: 1.75rem;
  }

  .payment-failed-section-heading,
  .payment-failed-help-notice {
    align-items: flex-start;
  }
}

/* =========================================================
12. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .payment-failed-glow {
    animation: none;
  }
}

/* =========================================================
   SMART HIRING — 404 ERROR PAGE
========================================================= */

/* =========================================================
   PAGE WRAPPER
========================================================= */

.not-found-page {
  position: relative;

  display: flex;
  min-height: calc(100vh - 74px);
  align-items: flex-start;

  padding: 48px 20px 64px;

  overflow: hidden;

  background:
    radial-gradient(circle at 8% 20%, rgba(123, 63, 228, 0.1), transparent 30%),
    radial-gradient(
      circle at 92% 82%,
      rgba(34, 190, 180, 0.09),
      transparent 30%
    ),
    linear-gradient(180deg, #fbfaff 0%, #f7f8fc 100%);
}

.not-found-page::before {
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(111, 69, 204, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 69, 204, 0.025) 1px, transparent 1px);

  background-size: 44px 44px;

  content: "";
  pointer-events: none;
}

/* =========================================================
   BACKGROUND DECORATIONS
========================================================= */

.not-found-page__decoration {
  position: absolute;

  border-radius: 50%;

  filter: blur(10px);

  pointer-events: none;
}

.not-found-page__decoration--left {
  top: -180px;
  left: -190px;

  width: 460px;
  height: 460px;

  background: radial-gradient(
    circle,
    rgba(123, 63, 228, 0.14),
    transparent 70%
  );
}

.not-found-page__decoration--right {
  right: -200px;
  bottom: -230px;

  width: 520px;
  height: 520px;

  background: radial-gradient(
    circle,
    rgba(34, 190, 180, 0.13),
    transparent 70%
  );
}

/* =========================================================
   MAIN CARD
========================================================= */

.not-found-card {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 940px;

  margin: 0 auto;
  padding: 38px 54px 34px;

  border: 1px solid rgba(224, 221, 232, 0.95);
  border-radius: 26px;

  background: rgba(255, 255, 255, 0.94);

  box-shadow:
    0 24px 65px rgba(42, 27, 70, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);

  text-align: center;

  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

/* =========================================================
   ERROR VISUAL
========================================================= */

.not-found-card__visual {
  position: relative;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 310px;
  margin-bottom: 7px;
}

.not-found-card__number {
  display: block;

  background: linear-gradient(
    135deg,
    rgba(121, 65, 225, 0.14),
    rgba(36, 172, 190, 0.1)
  );

  background-clip: text;
  -webkit-background-clip: text;

  color: transparent;
  -webkit-text-fill-color: transparent;

  font-size: clamp(6.5rem, 11vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 0.85;
}

.not-found-card__search-icon {
  position: absolute;
  right: 4px;
  bottom: -5px;

  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;

  border: 5px solid #ffffff;
  border-radius: 50%;

  background: linear-gradient(135deg, #7b3fe4, #9a4eed 48%, #25b9ae);

  color: #ffffff;

  box-shadow: 0 13px 30px rgba(117, 60, 222, 0.28);

  font-size: 1.23rem;
}

/* =========================================================
   BADGE
========================================================= */

.not-found-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin: 5px 0 15px;
  padding: 7px 14px;

  border: 1px solid rgba(121, 65, 225, 0.15);
  border-radius: 999px;

  background: rgba(121, 65, 225, 0.075);
  color: #7040cc;

  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

/* =========================================================
   TITLE AND MESSAGE
========================================================= */

.not-found-card__title {
  max-width: 730px;

  margin: 0 auto;

  color: #17131f;

  font-size: clamp(2.6rem, 4.8vw, 4.15rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1.04;
}

.not-found-card__message {
  max-width: 620px;

  margin: 17px auto 0;

  color: #777380;

  font-size: 0.91rem;
  line-height: 1.7;
}

/* =========================================================
   OPTION CARDS
========================================================= */

.not-found-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;

  margin-top: 29px;

  text-align: left;
}

.not-found-option {
  display: flex;
  min-width: 0;
  min-height: 96px;
  align-items: flex-start;
  gap: 12px;

  padding: 16px;

  border: 1px solid #e5e2eb;
  border-radius: 15px;

  background: #fcfbfd;
}

.not-found-option__icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: rgba(121, 65, 225, 0.08);
  color: #7541d3;

  font-size: 0.9rem;
}

.not-found-option:nth-child(2) .not-found-option__icon {
  background: rgba(34, 190, 180, 0.09);
  color: #169d95;
}

.not-found-option:nth-child(3) .not-found-option__icon {
  background: rgba(47, 169, 112, 0.09);
  color: #24945f;
}

.not-found-option h2 {
  margin: 2px 0 0;

  color: #393541;

  font-size: 0.77rem;
  font-weight: 800;
  line-height: 1.3;
}

.not-found-option p {
  margin: 6px 0 0;

  color: #817d87;

  font-size: 0.67rem;
  line-height: 1.5;
}

/* =========================================================
   ACTION BUTTONS
========================================================= */

.not-found-card__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;

  margin-top: 29px;
}

.not-found-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;

  padding: 11px 20px;

  border-radius: 13px;

  font-size: 0.77rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;

  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.not-found-button--primary {
  min-width: 186px;

  border: 0;

  background: linear-gradient(135deg, #7139e8, #994cec 48%, #27b8ad);

  color: #ffffff;

  box-shadow: 0 13px 29px rgba(112, 57, 225, 0.22);
}

.not-found-button--primary:hover {
  color: #ffffff;

  box-shadow: 0 17px 36px rgba(112, 57, 225, 0.3);

  transform: translateY(-2px);
}

.not-found-button--secondary {
  min-width: 166px;

  border: 1px solid #dfdce5;

  background: #ffffff;
  color: #68636f;
}

.not-found-button--secondary:hover {
  border-color: rgba(113, 57, 232, 0.22);

  background: rgba(113, 57, 232, 0.055);
  color: #7139e8;

  transform: translateY(-2px);
}

/* =========================================================
   BACK BUTTON
========================================================= */

.not-found-card__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  margin-top: 17px;
  padding: 6px;

  border: 0;

  background: transparent;
  color: #77727f;

  cursor: pointer;

  font-family: inherit;
  font-size: 0.69rem;
  font-weight: 700;

  transition:
    color 180ms ease,
    transform 180ms ease;
}

.not-found-card__back:hover {
  color: #7139e8;

  transform: translateX(-2px);
}

/* =========================================================
   KEYBOARD FOCUS
========================================================= */

.not-found-button:focus-visible,
.not-found-card__back:focus-visible {
  outline: 3px solid rgba(113, 57, 232, 0.25);
  outline-offset: 3px;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {
  .not-found-page {
    padding: 42px 18px 58px;
  }

  .not-found-card {
    padding: 38px 34px 34px;
  }

  .not-found-options {
    grid-template-columns: 1fr;
  }

  .not-found-option {
    min-height: auto;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {
  .not-found-page {
    min-height: calc(100vh - 66px);

    padding: 30px 14px 48px;
  }

  .not-found-card {
    padding: 30px 19px 27px;

    border-radius: 21px;
  }

  .not-found-card__visual {
    min-width: 235px;
  }

  .not-found-card__number {
    font-size: clamp(5.5rem, 29vw, 7.5rem);
  }

  .not-found-card__search-icon {
    width: 49px;
    height: 49px;

    border-width: 4px;

    font-size: 1rem;
  }

  .not-found-card__title {
    font-size: clamp(2.2rem, 10vw, 3.15rem);
  }

  .not-found-card__message {
    font-size: 0.85rem;
  }

  .not-found-card__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .not-found-button {
    width: 100%;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {
  .not-found-card__visual {
    min-width: 205px;
  }

  .not-found-card__title {
    font-size: 2.15rem;
  }

  .not-found-option {
    padding: 14px;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .not-found-button,
  .not-found-card__back {
    transition: none;
  }
}

/* =========================================================
   SMART HIRING — ABOUT PAGE
========================================================= */

/* =========================================================
   1. PAGE FOUNDATION
========================================================= */

.about-page {
  position: relative;

  overflow: hidden;

  background: linear-gradient(180deg, #fbfaff 0%, #ffffff 22%, #f8f8fc 100%);

  color: var(--sh-text, #17131f);
}

.about-page__grid {
  position: absolute;
  inset: 0 0 auto;

  height: 780px;

  opacity: 0.5;

  background-image:
    linear-gradient(rgba(113, 56, 232, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(113, 56, 232, 0.025) 1px, transparent 1px);

  background-size: 48px 48px;

  mask-image: linear-gradient(to bottom, black, transparent);

  pointer-events: none;
}

.about-page__orb {
  position: absolute;

  border-radius: 50%;

  filter: blur(5px);

  pointer-events: none;
}

.about-page__orb--one {
  top: -200px;
  left: -210px;

  width: 520px;
  height: 520px;

  background: radial-gradient(
    circle,
    rgba(113, 56, 232, 0.16),
    transparent 70%
  );
}

.about-page__orb--two {
  top: 460px;
  right: -250px;

  width: 560px;
  height: 560px;

  background: radial-gradient(
    circle,
    rgba(29, 184, 174, 0.13),
    transparent 70%
  );
}

.about-section {
  position: relative;
  z-index: 2;

  padding: 92px 0;
}

.about-section-label {
  display: block;

  margin-bottom: 14px;

  color: var(--sh-primary, #7138e8);

  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-section-title {
  margin: 0;

  color: var(--sh-text, #17131f);

  font-size: clamp(2.25rem, 4vw, 3.65rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.about-section-title span {
  background: linear-gradient(135deg, #7138e8, #9a4cec, #22aaa2);

  background-clip: text;
  -webkit-background-clip: text;

  color: transparent;
  -webkit-text-fill-color: transparent;
}

.about-section-header {
  max-width: 760px;

  margin: 0 auto 48px;

  text-align: center;
}

.about-section-header p {
  max-width: 660px;

  margin: 18px auto 0;

  color: var(--sh-text-muted, #777380);

  font-size: 0.94rem;
  line-height: 1.75;
}

/* =========================================================
   4. INTRODUCTION
========================================================= */

.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  margin-bottom: 23px;
  padding: 8px 14px 8px 9px;

  border: 1px solid rgba(113, 56, 232, 0.15);
  border-radius: 999px;

  background: rgba(113, 56, 232, 0.065);
  color: var(--sh-primary, #7138e8);

  font-size: 0.7rem;
  font-weight: 820;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.about-eyebrow__icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--sh-primary, #7138e8);
  color: #ffffff;

  font-size: 0.75rem;
}

.about-introduction {
  background: #ffffff;
}

.about-introduction__layout {
  display: grid;
  grid-template-columns:
    minmax(0, 1.08fr)
    minmax(380px, 0.92fr);
  gap: 76px;
  align-items: center;
}

.about-introduction__copy {
  margin-top: 27px;
}

.about-introduction__copy p {
  margin: 0 0 17px;

  color: var(--sh-text-muted, #777380);

  font-size: 0.91rem;
  line-height: 1.82;
}

.about-introduction__copy p:last-child {
  margin-bottom: 0;
}

.about-introduction__panel {
  display: grid;
  gap: 13px;

  padding: 22px;

  border: 1px solid rgba(222, 218, 229, 0.94);
  border-radius: 24px;

  background: linear-gradient(145deg, #ffffff, #f9f8fc);

  box-shadow: 0 24px 65px rgba(35, 21, 56, 0.09);
}

.about-benefit {
  display: flex;
  align-items: flex-start;
  gap: 15px;

  padding: 19px;

  border: 1px solid rgba(227, 223, 233, 0.92);
  border-radius: 16px;

  background: #ffffff;

  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.about-benefit:hover {
  border-color: rgba(113, 56, 232, 0.18);

  box-shadow: 0 12px 28px rgba(35, 21, 56, 0.07);

  transform: translateY(-3px);
}

.about-benefit__icon {
  display: inline-flex;
  width: 47px;
  height: 47px;
  flex: 0 0 47px;
  align-items: center;
  justify-content: center;

  border-radius: 14px;

  background: rgba(113, 56, 232, 0.075);
  color: var(--sh-primary, #7138e8);

  font-size: 1rem;
}

.about-benefit:nth-child(2) .about-benefit__icon {
  background: rgba(35, 181, 172, 0.09);
  color: #16988f;
}

.about-benefit:nth-child(3) .about-benefit__icon {
  background: rgba(32, 166, 108, 0.09);
  color: #178556;
}

.about-benefit h3 {
  margin: 1px 0 0;

  color: var(--sh-text-secondary, #3a3542);

  font-size: 0.94rem;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.about-benefit p {
  margin: 7px 0 0;

  color: var(--sh-text-muted, #777380);

  font-size: 0.7rem;
  line-height: 1.65;
}

/* =========================================================
   5. MISSION
========================================================= */

.about-mission {
  padding-top: 40px;

  background: #ffffff;
}

.about-mission__card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(190px, 0.28fr);
  gap: 26px;
  align-items: center;

  padding: 35px;

  border: 1px solid rgba(113, 56, 232, 0.12);
  border-radius: 25px;

  background: linear-gradient(
    135deg,
    rgba(113, 56, 232, 0.08),
    rgba(153, 76, 237, 0.045),
    rgba(34, 170, 162, 0.065)
  );
}

.about-mission__icon {
  display: inline-flex;
  width: 70px;
  height: 70px;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(113, 56, 232, 0.12);
  border-radius: 20px;

  background: #ffffff;
  color: var(--sh-primary, #7138e8);

  box-shadow: 0 15px 30px rgba(113, 56, 232, 0.12);

  font-size: 1.55rem;
}

.about-mission__content h2 {
  max-width: 700px;

  margin: 0;

  color: var(--sh-text, #17131f);

  font-size: clamp(1.7rem, 3vw, 2.45rem);
  font-weight: 880;
  letter-spacing: -0.045em;
  line-height: 1.15;
}

.about-mission__content p {
  max-width: 760px;

  margin: 14px 0 0;

  color: var(--sh-text-muted, #777380);

  font-size: 0.82rem;
  line-height: 1.75;
}

.about-mission__highlight {
  padding: 20px;

  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 17px;

  background: rgba(255, 255, 255, 0.68);

  text-align: center;
}

.about-mission__highlight span,
.about-mission__highlight strong {
  display: block;
}

.about-mission__highlight span {
  color: var(--sh-primary, #7138e8);

  font-size: 0.59rem;
  font-weight: 830;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.about-mission__highlight strong {
  margin-top: 8px;

  color: var(--sh-text-secondary, #3a3542);

  font-size: 0.78rem;
  line-height: 1.45;
}

/* =========================================================
   6. SERVICE CARDS
========================================================= */

.about-services {
  background: #ffffff;
}

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

.about-service-card {
  position: relative;

  min-height: 285px;
  padding: 25px;

  overflow: hidden;

  border: 1px solid rgba(223, 219, 230, 0.95);
  border-radius: 20px;

  background: linear-gradient(145deg, #ffffff, #faf9fc);

  box-shadow: 0 17px 40px rgba(35, 21, 56, 0.06);

  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.about-service-card:hover {
  border-color: rgba(113, 56, 232, 0.2);

  box-shadow: 0 25px 52px rgba(35, 21, 56, 0.1);

  transform: translateY(-6px);
}

.about-service-card::after {
  position: absolute;
  right: -55px;
  bottom: -60px;

  width: 145px;
  height: 145px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(113, 56, 232, 0.08),
    transparent 70%
  );

  content: "";
}

.about-service-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about-service-card__number {
  color: rgba(113, 56, 232, 0.22);

  font-size: 1.55rem;
  font-weight: 900;
}

.about-service-card__icon {
  display: inline-flex;
  width: 51px;
  height: 51px;
  align-items: center;
  justify-content: center;

  border-radius: 15px;

  background: rgba(113, 56, 232, 0.075);
  color: var(--sh-primary, #7138e8);

  font-size: 1.08rem;
}

.about-service-card:nth-child(2) .about-service-card__icon {
  background: rgba(35, 181, 172, 0.09);
  color: #16988f;
}

.about-service-card:nth-child(3) .about-service-card__icon {
  background: rgba(32, 166, 108, 0.09);
  color: #178556;
}

.about-service-card h3 {
  position: relative;
  z-index: 2;

  margin: 28px 0 0;

  color: var(--sh-text-secondary, #3a3542);

  font-size: 1.06rem;
  font-weight: 850;
  letter-spacing: -0.025em;
}

.about-service-card p {
  position: relative;
  z-index: 2;

  margin: 12px 0 0;

  color: var(--sh-text-muted, #777380);

  font-size: 0.75rem;
  line-height: 1.72;
}

/* =========================================================
   7. PROCESS
========================================================= */

.about-process {
  background: linear-gradient(180deg, #f8f7fc, #fbfbfd);
}

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

.about-process-step {
  position: relative;

  padding: 25px 21px;

  border: 1px solid rgba(222, 218, 229, 0.95);
  border-radius: 19px;

  background: #ffffff;

  box-shadow: 0 15px 36px rgba(35, 21, 56, 0.055);

  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.about-process-step:hover {
  border-color: rgba(113, 56, 232, 0.19);

  box-shadow: 0 22px 46px rgba(35, 21, 56, 0.09);

  transform: translateY(-5px);
}

.about-process-step__number {
  position: absolute;
  top: 17px;
  right: 18px;

  color: rgba(113, 56, 232, 0.21);

  font-size: 1.15rem;
  font-weight: 900;
}

.about-process-step__icon {
  display: inline-flex;
  width: 51px;
  height: 51px;
  align-items: center;
  justify-content: center;

  border-radius: 15px;

  background: linear-gradient(
    135deg,
    rgba(113, 56, 232, 0.1),
    rgba(153, 76, 237, 0.06)
  );

  color: var(--sh-primary, #7138e8);

  font-size: 1.05rem;
}

.about-process-step h3 {
  margin: 23px 0 0;

  color: var(--sh-text-secondary, #3a3542);

  font-size: 0.93rem;
  font-weight: 850;
}

.about-process-step p {
  margin: 10px 0 0;

  color: var(--sh-text-muted, #777380);

  font-size: 0.69rem;
  line-height: 1.68;
}

/* =========================================================
   8. VALUES
========================================================= */

.about-values {
  background: #ffffff;
}

.about-values__layout {
  display: grid;
  grid-template-columns:
    minmax(280px, 0.72fr)
    minmax(0, 1.28fr);
  gap: 62px;
  align-items: start;
}

.about-values__heading {
  position: sticky;
  top: 115px;
}

.about-values__heading p {
  margin: 19px 0 0;

  color: var(--sh-text-muted, #777380);

  font-size: 0.85rem;
  line-height: 1.75;
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.about-value-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;

  min-height: 180px;
  padding: 21px;

  border: 1px solid rgba(223, 219, 230, 0.95);
  border-radius: 18px;

  background: linear-gradient(145deg, #ffffff, #faf9fc);

  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.about-value-card:hover {
  border-color: rgba(113, 56, 232, 0.18);

  box-shadow: 0 18px 40px rgba(35, 21, 56, 0.08);

  transform: translateY(-4px);
}

.about-value-card__icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  align-items: center;
  justify-content: center;

  border-radius: 14px;

  background: rgba(113, 56, 232, 0.075);
  color: var(--sh-primary, #7138e8);
}

.about-value-card:nth-child(2) .about-value-card__icon {
  background: rgba(35, 181, 172, 0.09);
  color: #16988f;
}

.about-value-card:nth-child(3) .about-value-card__icon {
  background: rgba(245, 158, 11, 0.09);
  color: #ad700d;
}

.about-value-card:nth-child(4) .about-value-card__icon {
  background: rgba(32, 166, 108, 0.09);
  color: #178556;
}

.about-value-card h3 {
  margin: 1px 0 0;

  color: var(--sh-text-secondary, #3a3542);

  font-size: 0.92rem;
  font-weight: 850;
}

.about-value-card p {
  margin: 9px 0 0;

  color: var(--sh-text-muted, #777380);

  font-size: 0.69rem;
  line-height: 1.68;
}

/* =========================================================
   9. NOTICE
========================================================= */

.about-notice {
  padding-top: 25px;

  background: #ffffff;
}

.about-notice__card {
  display: flex;
  align-items: flex-start;
  gap: 22px;

  padding: 32px;

  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 22px;

  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.085),
    rgba(255, 255, 255, 0.96)
  );
}

.about-notice__icon {
  display: inline-flex;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  align-items: center;
  justify-content: center;

  border-radius: 17px;

  background: rgba(245, 158, 11, 0.12);
  color: #ad700d;

  font-size: 1.25rem;
}

.about-notice__label {
  display: block;

  margin-bottom: 7px;

  color: #ad700d;

  font-size: 0.63rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.about-notice__content h2 {
  margin: 0 0 15px;

  color: var(--sh-text-secondary, #3a3542);

  font-size: 1.35rem;
  font-weight: 870;
  letter-spacing: -0.03em;
}

.about-notice__content p {
  margin: 0 0 10px;

  color: #6f685d;

  font-size: 0.75rem;
  line-height: 1.72;
}

.about-notice__content p:last-child {
  margin-bottom: 0;
}

/* =========================================================
   10. FUTURE VISION
========================================================= */

.about-future {
  background: #ffffff;
}

.about-future__layout {
  display: grid;
  grid-template-columns:
    minmax(340px, 0.82fr)
    minmax(0, 1.18fr);
  gap: 76px;
  align-items: center;
}

.about-future__visual {
  position: relative;

  display: flex;
  min-height: 390px;
  align-items: center;
  justify-content: center;
}

.about-future__circle {
  display: flex;
  width: 265px;
  height: 265px;
  align-items: center;
  justify-content: center;

  border: 1px dashed rgba(113, 56, 232, 0.23);
  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(113, 56, 232, 0.06),
    transparent 68%
  );
}

.about-future__circle-inner {
  display: flex;
  width: 142px;
  height: 142px;
  align-items: center;
  justify-content: center;

  border-radius: 42px;

  background: linear-gradient(135deg, #7138e8, #994ced 50%, #25b5ac);

  color: #ffffff;

  box-shadow: 0 25px 55px rgba(113, 56, 232, 0.28);

  font-size: 2.8rem;

  transform: rotate(-5deg);
}

.about-future__chip {
  position: absolute;

  padding: 10px 13px;

  border: 1px solid rgba(220, 216, 227, 0.95);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.96);
  color: var(--sh-text-secondary, #3a3542);

  box-shadow: 0 12px 28px rgba(35, 21, 56, 0.09);

  font-size: 0.63rem;
  font-weight: 780;
}

.about-future__chip--one {
  top: 52px;
  left: 12px;
}

.about-future__chip--two {
  top: 105px;
  right: 0;
}

.about-future__chip--three {
  bottom: 55px;
  left: 28px;
}

.about-future__content p {
  margin: 22px 0 0;

  color: var(--sh-text-muted, #777380);

  font-size: 0.87rem;
  line-height: 1.82;
}

/* =========================================================
   12. ACCESSIBILITY
========================================================= */

.about-button:focus-visible,
.about-final-cta__button:focus-visible {
  outline: 3px solid rgba(113, 56, 232, 0.28);
  outline-offset: 4px;
}

/* =========================================================
   13. TABLET
========================================================= */

@media (max-width: 1199.98px) {
  .about-hero__layout {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(380px, 0.85fr);
    gap: 45px;
  }

  .about-floating-card--opportunities {
    left: -5px;
  }

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

@media (max-width: 991.98px) {
  .about-section {
    padding: 75px 0;
  }

  .about-hero {
    padding: 72px 0 88px;
  }

  .about-hero__layout,
  .about-introduction__layout,
  .about-values__layout,
  .about-future__layout {
    grid-template-columns: 1fr;
  }

  .about-hero__content {
    max-width: 760px;
  }

  .about-hero__visual {
    min-height: auto;

    padding: 35px 30px 65px;
  }

  .about-visual-card {
    margin: 0 auto;
  }

  .about-introduction__layout {
    gap: 45px;
  }

  .about-mission__card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .about-mission__highlight {
    grid-column: 1 / -1;
  }

  .about-services__grid {
    grid-template-columns: 1fr;
  }

  .about-service-card {
    min-height: auto;
  }

  .about-values__layout {
    gap: 38px;
  }

  .about-values__heading {
    position: static;

    max-width: 700px;
  }

  .about-future__layout {
    gap: 35px;
  }

  .about-future__visual {
    order: 2;
  }
}

/* =========================================================
   14. MOBILE
========================================================= */

@media (max-width: 767.98px) {
  .about-section {
    padding: 60px 0;
  }

  .about-hero {
    padding: 55px 0 72px;
  }

  .about-hero__title {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .about-hero__description {
    font-size: 0.9rem;
  }

  .about-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .about-button {
    width: 100%;
  }

  .about-hero__trust {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .about-hero__visual {
    padding: 25px 0 70px;
  }

  .about-visual-card {
    transform: none;
  }

  .about-visual-card__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-visual-card__steps {
    align-items: stretch;
    flex-direction: column;
    gap: 13px;
  }

  .about-visual-card__step {
    display: flex;
    align-items: center;
    gap: 12px;

    text-align: left;
  }

  .about-visual-card__step > span {
    flex: 0 0 43px;

    margin-bottom: 0;
  }

  .about-visual-card__line {
    width: 1px;
    height: 16px;

    margin-left: 21px;
  }

  .about-floating-card--opportunities {
    top: auto;
    bottom: 15px;
    left: 0;
  }

  .about-floating-card--secure {
    right: 0;
    bottom: -35px;
  }

  .about-section-title {
    font-size: clamp(2rem, 10vw, 2.85rem);
  }

  .about-mission__card {
    grid-template-columns: 1fr;

    padding: 25px;
  }

  .about-mission__icon {
    width: 59px;
    height: 59px;
  }

  .about-process__grid,
  .about-values__grid {
    grid-template-columns: 1fr;
  }

  .about-notice__card {
    align-items: flex-start;
    flex-direction: column;

    padding: 25px;
  }

  .about-future__visual {
    min-height: 340px;
  }

  .about-future__circle {
    width: 225px;
    height: 225px;
  }

  .about-future__circle-inner {
    width: 125px;
    height: 125px;

    font-size: 2.35rem;
  }

  .about-final-cta {
    padding-bottom: 75px;
  }

  .about-final-cta__card {
    align-items: flex-start;
    flex-direction: column;

    padding: 34px 27px;
  }

  .about-final-cta__button {
    width: 100%;
  }
}

/* =========================================================
   15. SMALL MOBILE
========================================================= */

@media (max-width: 479.98px) {
  .about-hero__title {
    font-size: 2.7rem;
  }

  .about-visual-card__content {
    padding: 20px 17px;
  }

  .about-visual-card__featured {
    padding: 19px;
  }

  .about-introduction__panel {
    padding: 14px;
  }

  .about-benefit {
    padding: 15px;
  }

  .about-floating-card {
    padding: 10px;
  }

  .about-floating-card strong {
    font-size: 0.57rem;
  }

  .about-floating-card small {
    display: none;
  }

  .about-future__chip--one {
    left: 0;
  }

  .about-future__chip--two {
    right: 0;
  }

  .about-future__chip--three {
    left: 5px;
  }
}

/* =========================================================
   16. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .about-button,
  .about-benefit,
  .about-service-card,
  .about-process-step,
  .about-value-card,
  .about-final-cta__button {
    transition: none;
  }
}

/* =========================================================
   SMART HIRING — CONTACT PAGE
========================================================= */

/* =========================================================
   1. PAGE FOUNDATION
========================================================= */

.contact-page {
  position: relative;

  overflow: hidden;

  background: linear-gradient(180deg, #fbfaff 0%, #ffffff 33%, #f8f8fc 100%);

  color: var(--sh-text, #17131f);
}

.contact-page__grid {
  position: absolute;
  inset: 0 0 auto;

  height: 720px;

  opacity: 0.45;

  background-image:
    linear-gradient(rgba(113, 56, 232, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(113, 56, 232, 0.026) 1px, transparent 1px);

  background-size: 47px 47px;

  mask-image: linear-gradient(to bottom, black, transparent);

  pointer-events: none;
}

.contact-page__orb {
  position: absolute;

  border-radius: 50%;

  filter: blur(7px);

  pointer-events: none;
}

.contact-page__orb--one {
  top: -220px;
  left: -210px;

  width: 520px;
  height: 520px;

  background: radial-gradient(
    circle,
    rgba(113, 56, 232, 0.17),
    transparent 70%
  );
}

.contact-page__orb--two {
  top: 470px;
  right: -270px;

  width: 590px;
  height: 590px;

  background: radial-gradient(
    circle,
    rgba(31, 180, 171, 0.14),
    transparent 70%
  );
}

.contact-section-label {
  display: block;

  margin-bottom: 10px;

  color: var(--sh-primary, #7138e8);

  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* =========================================================
   2. HERO
========================================================= */

.contact-hero {
  position: relative;
  z-index: 2;

  padding: 88px 0 92px;

  text-align: center;
}

.contact-hero__content {
  max-width: 860px;

  margin: 0 auto;
}

.contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  margin-bottom: 22px;
  padding: 8px 14px 8px 9px;

  border: 1px solid rgba(113, 56, 232, 0.15);
  border-radius: 999px;

  background: rgba(113, 56, 232, 0.065);
  color: var(--sh-primary, #7138e8);

  font-size: 0.7rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-eyebrow__icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--sh-primary, #7138e8);
  color: #ffffff;

  font-size: 0.73rem;
}

.contact-hero__title {
  margin: 0;

  color: var(--sh-text, #17131f);

  font-size: clamp(3.1rem, 6vw, 5.5rem);
  font-weight: 930;
  letter-spacing: -0.075em;
  line-height: 0.99;
}

.contact-hero__title span {
  background: linear-gradient(135deg, #7138e8, #984ced 50%, #22aaa2);

  background-clip: text;
  -webkit-background-clip: text;

  color: transparent;
  -webkit-text-fill-color: transparent;
}

.contact-hero__description {
  max-width: 730px;

  margin: 26px auto 0;

  color: var(--sh-text-muted, #777380);

  font-size: 1rem;
  line-height: 1.8;
}

.contact-hero__quick-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;

  margin-top: 31px;
}

.contact-hero__quick-link {
  display: flex;
  min-width: 260px;
  align-items: center;
  gap: 12px;

  padding: 13px 16px;

  border: 1px solid rgba(220, 216, 228, 0.95);
  border-radius: 15px;

  background: rgba(255, 255, 255, 0.9);
  color: inherit;

  box-shadow: 0 13px 30px rgba(36, 22, 60, 0.065);

  text-align: left;
  text-decoration: none;

  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.contact-hero__quick-link:hover {
  border-color: rgba(113, 56, 232, 0.2);

  color: inherit;

  box-shadow: 0 18px 38px rgba(36, 22, 60, 0.1);

  transform: translateY(-3px);
}

.contact-hero__quick-link > span {
  display: inline-flex;
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  align-items: center;
  justify-content: center;

  border-radius: 13px;

  background: rgba(113, 56, 232, 0.08);
  color: var(--sh-primary, #7138e8);
}

.contact-hero__quick-link:nth-child(2) > span {
  background: rgba(31, 180, 171, 0.1);
  color: #168f88;
}

.contact-hero__quick-link small,
.contact-hero__quick-link strong {
  display: block;
}

.contact-hero__quick-link small {
  color: var(--sh-text-muted, #777380);

  font-size: 0.58rem;
}

.contact-hero__quick-link strong {
  margin-top: 3px;

  color: var(--sh-text-secondary, #3a3542);

  font-size: 0.72rem;
  font-weight: 820;
}

/* =========================================================
   3. MAIN CONTACT LAYOUT
========================================================= */

.contact-main {
  position: relative;
  z-index: 2;

  padding: 20px 0 100px;
}

.contact-main__layout {
  display: grid;
  grid-template-columns:
    minmax(320px, 0.78fr)
    minmax(0, 1.22fr);
  gap: 44px;
  align-items: start;
}

/* =========================================================
   4. CONTACT INFORMATION
========================================================= */

.contact-info {
  position: sticky;
  top: 105px;

  padding: 31px;

  border: 1px solid rgba(222, 218, 229, 0.94);
  border-radius: 24px;

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.98),
    rgba(249, 248, 252, 0.96)
  );

  box-shadow: 0 23px 60px rgba(36, 22, 60, 0.08);
}

.contact-info__title {
  margin: 0;

  color: var(--sh-text, #17131f);

  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 900;
  letter-spacing: -0.05em;
}

.contact-info__description {
  margin: 15px 0 0;

  color: var(--sh-text-muted, #777380);

  font-size: 0.8rem;
  line-height: 1.75;
}

.contact-info__list {
  display: grid;
  gap: 12px;

  margin-top: 27px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 13px;

  padding: 16px;

  border: 1px solid rgba(227, 223, 233, 0.94);
  border-radius: 15px;

  background: #ffffff;

  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.contact-info-card:hover {
  border-color: rgba(113, 56, 232, 0.18);

  box-shadow: 0 12px 27px rgba(36, 22, 60, 0.07);

  transform: translateY(-3px);
}

.contact-info-card__icon {
  display: inline-flex;
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  align-items: center;
  justify-content: center;

  border-radius: 13px;

  background: rgba(113, 56, 232, 0.075);
  color: var(--sh-primary, #7138e8);

  font-size: 0.95rem;
}

.contact-info-card:nth-child(2) .contact-info-card__icon {
  background: rgba(31, 180, 171, 0.09);
  color: #168f88;
}

.contact-info-card:nth-child(3) .contact-info-card__icon {
  background: rgba(245, 158, 11, 0.1);
  color: #ab700d;
}

.contact-info-card:nth-child(4) .contact-info-card__icon {
  background: rgba(31, 160, 105, 0.09);
  color: #178356;
}

.contact-info-card small {
  display: block;

  color: var(--sh-primary, #7138e8);

  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-info-card h3 {
  margin: 4px 0 0;

  color: var(--sh-text-secondary, #3a3542);

  font-size: 0.78rem;
  font-weight: 830;
}

.contact-info-card p {
  margin: 6px 0 0;

  color: var(--sh-text-muted, #777380);

  font-size: 0.65rem;
  line-height: 1.6;
}

.contact-info-card a {
  display: inline-block;

  margin-top: 6px;

  color: var(--sh-primary, #7138e8);

  font-size: 0.67rem;
  font-weight: 770;
  overflow-wrap: anywhere;
  text-decoration: none;
}

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

.contact-info__notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;

  margin-top: 21px;
  padding: 16px;

  border: 1px solid rgba(245, 158, 11, 0.18);
  border-radius: 15px;

  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.085),
    rgba(255, 255, 255, 0.95)
  );
}

.contact-info__notice-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: rgba(245, 158, 11, 0.12);
  color: #ab700d;
}

.contact-info__notice strong {
  display: block;

  color: #594c37;

  font-size: 0.72rem;
  font-weight: 820;
}

.contact-info__notice p {
  margin: 5px 0 0;

  color: #766b5b;

  font-size: 0.63rem;
  line-height: 1.6;
}

/* =========================================================
   5. CONTACT FORM CARD
========================================================= */

.contact-form-card {
  padding: 35px;

  border: 1px solid rgba(221, 217, 228, 0.96);
  border-radius: 25px;

  background: linear-gradient(145deg, #ffffff, #fbfafd);

  box-shadow: 0 27px 68px rgba(36, 22, 60, 0.1);
}

.contact-form-card__header {
  display: flex;
  align-items: flex-start;
  gap: 15px;

  margin-bottom: 30px;
  padding-bottom: 25px;

  border-bottom: 1px solid rgba(228, 224, 234, 0.95);
}

.contact-form-card__icon {
  display: inline-flex;
  width: 53px;
  height: 53px;
  flex: 0 0 53px;
  align-items: center;
  justify-content: center;

  border-radius: 16px;

  background: linear-gradient(
    135deg,
    rgba(113, 56, 232, 0.12),
    rgba(153, 76, 237, 0.08)
  );

  color: var(--sh-primary, #7138e8);

  font-size: 1.15rem;
}

.contact-form-card__header h2 {
  margin: 0;

  color: var(--sh-text, #17131f);

  font-size: clamp(1.8rem, 3vw, 2.45rem);
  font-weight: 900;
  letter-spacing: -0.045em;
}

.contact-form-card__header p {
  margin: 9px 0 0;

  color: var(--sh-text-muted, #777380);

  font-size: 0.73rem;
  line-height: 1.65;
}

/* =========================================================
   6. FORM ALERTS
========================================================= */

.contact-form-alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;

  margin-bottom: 22px;
  padding: 14px 15px;

  border-radius: 14px;

  font-size: 0.7rem;
  line-height: 1.55;
}

.contact-form-alert--success {
  border: 1px solid rgba(31, 160, 105, 0.18);

  background: rgba(31, 160, 105, 0.075);
  color: #176e49;
}

.contact-form-alert--error {
  border: 1px solid rgba(211, 61, 78, 0.18);

  background: rgba(211, 61, 78, 0.07);
  color: #a62e3d;
}

.contact-form-alert i {
  margin-top: 2px;
}

/* =========================================================
   7. FORM FIELDS
========================================================= */

.contact-form {
  display: grid;
  gap: 21px;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
}

.contact-field label {
  display: inline-block;

  margin-bottom: 8px;

  color: var(--sh-text-secondary, #3a3542);

  font-size: 0.7rem;
  font-weight: 790;
}

.contact-field label > span {
  color: #d33d4e;
}

.contact-field label small {
  margin-left: 5px;

  color: var(--sh-text-muted, #777380);

  font-size: 0.6rem;
  font-weight: 600;
}

.contact-field__label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.contact-field__counter {
  color: var(--sh-text-muted, #777380);

  font-size: 0.58rem;
  font-weight: 700;
}

.contact-field__counter.is-near-limit {
  color: #bf3545;
}

.contact-field__control {
  position: relative;
}

.contact-field__control > i:first-child {
  position: absolute;
  top: 50%;
  left: 15px;
  z-index: 2;

  color: #99939f;

  font-size: 0.88rem;

  pointer-events: none;

  transform: translateY(-50%);
}

.contact-field__control input,
.contact-field__control select,
.contact-field__control textarea {
  width: 100%;

  border: 1px solid #dfdbe5;
  border-radius: 13px;

  outline: 0;

  background: #ffffff;
  color: var(--sh-text-secondary, #3a3542);

  font-family: inherit;
  font-size: 0.73rem;

  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.contact-field__control input,
.contact-field__control select {
  min-height: 52px;

  padding: 11px 43px;
}

.contact-field__control textarea {
  min-height: 160px;

  padding: 15px 16px 15px 43px;

  line-height: 1.65;
  resize: vertical;
}

.contact-field__control input::placeholder,
.contact-field__control textarea::placeholder {
  color: #aaa5ae;
}

.contact-field__control input:hover,
.contact-field__control select:hover,
.contact-field__control textarea:hover {
  border-color: rgba(113, 56, 232, 0.27);
}

.contact-field__control input:focus,
.contact-field__control select:focus,
.contact-field__control textarea:focus {
  border-color: rgba(113, 56, 232, 0.62);

  box-shadow: 0 0 0 4px rgba(113, 56, 232, 0.09);
}

.contact-field__control select {
  cursor: pointer;

  appearance: none;
}

.contact-field__select-arrow {
  position: absolute;
  top: 50%;
  right: 15px;

  color: #99939f;

  font-size: 0.72rem;

  pointer-events: none;

  transform: translateY(-50%);
}

.contact-field__control--textarea > i:first-child {
  top: 17px;

  transform: none;
}

.contact-field__help {
  margin: 7px 0 0;

  color: var(--sh-text-muted, #777380);

  font-size: 0.58rem;
  line-height: 1.55;
}

/* =========================================================
   8. PRIVACY CONSENT
========================================================= */

.contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;

  padding: 14px;

  border: 1px solid rgba(225, 221, 231, 0.95);
  border-radius: 13px;

  background: rgba(248, 247, 251, 0.75);
}

.contact-consent input {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;

  margin-top: 1px;

  border: 1px solid #cfcad6;

  accent-color: var(--sh-primary, #7138e8);
}

.contact-consent label {
  margin: 0;

  color: var(--sh-text-muted, #777380);

  font-size: 0.64rem;
  line-height: 1.58;
}

.contact-consent a {
  color: var(--sh-primary, #7138e8);

  font-weight: 760;
}

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

/* =========================================================
   9. FORM FOOTER
========================================================= */

.contact-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  padding-top: 4px;
}

.contact-form__security {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: var(--sh-text-muted, #777380);

  font-size: 0.61rem;
}

.contact-form__security i {
  color: #1c9662;
}

.contact-submit-button {
  display: inline-flex;
  min-width: 177px;
  min-height: 53px;
  align-items: center;
  justify-content: center;
  gap: 9px;

  padding: 11px 20px;

  border: 0;
  border-radius: 14px;

  background: linear-gradient(135deg, #7138e8, #994ced 50%, #24b4ab);

  color: #ffffff;

  box-shadow: 0 15px 34px rgba(113, 56, 232, 0.25);

  cursor: pointer;

  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 830;

  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.contact-submit-button:hover {
  box-shadow: 0 20px 43px rgba(113, 56, 232, 0.34);

  transform: translateY(-3px);
}

/* =========================================================
   10. SUPPORT CATEGORIES
========================================================= */

.contact-support-categories {
  position: relative;
  z-index: 2;

  padding: 95px 0;

  background: linear-gradient(180deg, #f8f7fc, #fbfbfd);
}

.contact-section-header {
  max-width: 750px;

  margin: 0 auto 46px;

  text-align: center;
}

.contact-section-header h2 {
  margin: 0;

  color: var(--sh-text, #17131f);

  font-size: clamp(2.15rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.055em;
}

.contact-section-header p {
  max-width: 650px;

  margin: 17px auto 0;

  color: var(--sh-text-muted, #777380);

  font-size: 0.86rem;
  line-height: 1.72;
}

.contact-support-categories__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.contact-support-category {
  min-height: 220px;
  padding: 23px;

  border: 1px solid rgba(222, 218, 229, 0.95);
  border-radius: 19px;

  background: #ffffff;

  box-shadow: 0 14px 34px rgba(36, 22, 60, 0.05);

  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.contact-support-category:hover {
  border-color: rgba(113, 56, 232, 0.19);

  box-shadow: 0 21px 44px rgba(36, 22, 60, 0.09);

  transform: translateY(-5px);
}

.contact-support-category__icon {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;

  border-radius: 15px;

  background: rgba(113, 56, 232, 0.075);
  color: var(--sh-primary, #7138e8);

  font-size: 1.04rem;
}

.contact-support-category:nth-child(2) .contact-support-category__icon {
  background: rgba(31, 180, 171, 0.1);
  color: #168f88;
}

.contact-support-category:nth-child(3) .contact-support-category__icon {
  background: rgba(211, 61, 78, 0.08);
  color: #bd3545;
}

.contact-support-category:nth-child(4) .contact-support-category__icon {
  background: rgba(245, 158, 11, 0.1);
  color: #ab700d;
}

.contact-support-category h3 {
  margin: 21px 0 0;

  color: var(--sh-text-secondary, #3a3542);

  font-size: 0.91rem;
  font-weight: 850;
}

.contact-support-category p {
  margin: 10px 0 0;

  color: var(--sh-text-muted, #777380);

  font-size: 0.67rem;
  line-height: 1.68;
}

/* =========================================================
   11. RESOURCE CARDS
========================================================= */

.contact-resources {
  position: relative;
  z-index: 2;

  padding: 95px 0;

  background: #ffffff;
}

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

.contact-resource-card {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  align-items: flex-start;

  padding: 25px;

  border: 1px solid rgba(222, 218, 229, 0.95);
  border-radius: 20px;

  background: linear-gradient(145deg, #ffffff, #faf9fc);

  box-shadow: 0 16px 38px rgba(36, 22, 60, 0.055);

  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.contact-resource-card:hover {
  border-color: rgba(113, 56, 232, 0.19);

  box-shadow: 0 23px 49px rgba(36, 22, 60, 0.095);

  transform: translateY(-5px);
}

.contact-resource-card__icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;

  border-radius: 16px;

  background: rgba(113, 56, 232, 0.075);
  color: var(--sh-primary, #7138e8);

  font-size: 1.08rem;
}

.contact-resource-card:nth-child(2) .contact-resource-card__icon {
  background: rgba(31, 160, 105, 0.09);
  color: #178356;
}

.contact-resource-card:nth-child(3) .contact-resource-card__icon {
  background: rgba(31, 180, 171, 0.1);
  color: #168f88;
}

.contact-resource-card h3 {
  margin: 22px 0 0;

  color: var(--sh-text-secondary, #3a3542);

  font-size: 1rem;
  font-weight: 850;
}

.contact-resource-card p {
  margin: 10px 0 0;

  color: var(--sh-text-muted, #777380);

  font-size: 0.7rem;
  line-height: 1.68;
}

.contact-resource-card > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  margin-top: auto;
  padding-top: 24px;

  color: var(--sh-primary, #7138e8);

  font-size: 0.69rem;
  font-weight: 810;
  text-decoration: none;
}

.contact-resource-card > a:hover {
  text-decoration: underline;
}

/* =========================================================
   12. FINAL SUPPORT CARD
========================================================= */

.contact-final {
  position: relative;
  z-index: 2;

  padding: 25px 0 105px;

  background: #ffffff;
}

.contact-final__card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;

  padding: 36px 40px;

  border: 1px solid rgba(113, 56, 232, 0.13);
  border-radius: 24px;

  background: linear-gradient(
    135deg,
    rgba(113, 56, 232, 0.08),
    rgba(153, 76, 237, 0.05),
    rgba(31, 180, 171, 0.07)
  );
}

.contact-final__icon {
  display: inline-flex;
  width: 63px;
  height: 63px;
  align-items: center;
  justify-content: center;

  border-radius: 19px;

  background: #ffffff;
  color: var(--sh-primary, #7138e8);

  box-shadow: 0 14px 31px rgba(113, 56, 232, 0.13);

  font-size: 1.35rem;
}

.contact-final__card > div > span {
  display: block;

  margin-bottom: 6px;

  color: var(--sh-primary, #7138e8);

  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-final__card h2 {
  margin: 0;

  color: var(--sh-text, #17131f);

  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 890;
  letter-spacing: -0.045em;
}

.contact-final__card p {
  margin: 9px 0 0;

  color: var(--sh-text-muted, #777380);

  font-size: 0.75rem;
  line-height: 1.65;
}

.contact-final__button {
  display: inline-flex;
  min-width: 155px;
  min-height: 51px;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 11px 18px;

  border-radius: 13px;

  background: var(--sh-primary, #7138e8);
  color: #ffffff;

  box-shadow: 0 14px 31px rgba(113, 56, 232, 0.22);

  font-size: 0.72rem;
  font-weight: 820;
  text-decoration: none;

  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.contact-final__button:hover {
  color: #ffffff;

  box-shadow: 0 18px 39px rgba(113, 56, 232, 0.31);

  transform: translateY(-3px);
}

/* =========================================================
   13. ACCESSIBILITY
========================================================= */

.contact-hero__quick-link:focus-visible,
.contact-submit-button:focus-visible,
.contact-final__button:focus-visible,
.contact-resource-card > a:focus-visible,
.contact-info-card a:focus-visible {
  outline: 3px solid rgba(113, 56, 232, 0.28);
  outline-offset: 4px;
}

/* =========================================================
   14. TABLET
========================================================= */

@media (max-width: 1199.98px) {
  .contact-main__layout {
    grid-template-columns:
      minmax(300px, 0.72fr)
      minmax(0, 1.28fr);
    gap: 30px;
  }

  .contact-info {
    padding: 25px;
  }

  .contact-form-card {
    padding: 30px;
  }

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

@media (max-width: 991.98px) {
  .contact-hero {
    padding: 72px 0 75px;
  }

  .contact-main {
    padding-bottom: 80px;
  }

  .contact-main__layout {
    grid-template-columns: 1fr;
  }

  .contact-info {
    position: static;
  }

  .contact-support-categories,
  .contact-resources {
    padding: 78px 0;
  }

  .contact-resources__grid {
    grid-template-columns: 1fr;
  }

  .contact-resource-card {
    min-height: auto;
  }
}

/* =========================================================
   15. MOBILE
========================================================= */

@media (max-width: 767.98px) {
  .contact-hero {
    padding: 55px 0 62px;
  }

  .contact-hero__title {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .contact-hero__description {
    font-size: 0.89rem;
  }

  .contact-hero__quick-links {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-hero__quick-link {
    width: 100%;
    min-width: 0;
  }

  .contact-main {
    padding-top: 5px;
    padding-bottom: 65px;
  }

  .contact-info,
  .contact-form-card {
    padding: 23px;

    border-radius: 20px;
  }

  .contact-form-card__header {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .contact-form__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-submit-button {
    width: 100%;
  }

  .contact-support-categories,
  .contact-resources {
    padding: 65px 0;
  }

  .contact-support-categories__grid {
    grid-template-columns: 1fr;
  }

  .contact-support-category {
    min-height: auto;
  }

  .contact-section-header h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .contact-final {
    padding-bottom: 75px;
  }

  .contact-final__card {
    grid-template-columns: 1fr;

    padding: 28px 24px;
  }

  .contact-final__button {
    width: 100%;
  }
}

/* =========================================================
   16. SMALL MOBILE
========================================================= */

@media (max-width: 479.98px) {
  .contact-hero__title {
    font-size: 2.75rem;
  }

  .contact-info,
  .contact-form-card {
    padding: 19px;
  }

  .contact-info-card {
    padding: 14px;
  }

  .contact-field__control input,
  .contact-field__control select {
    padding-right: 38px;
  }
}

/* =========================================================
   17. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .contact-hero__quick-link,
  .contact-info-card,
  .contact-submit-button,
  .contact-support-category,
  .contact-resource-card,
  .contact-final__button {
    transition: none;
  }
}

/* =========================================================
   SMART HIRING — PRIVACY POLICY PAGE
   Add this file after your existing public style.css
========================================================= */

.privacy-page {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 5% 3%, rgba(113, 56, 232, 0.08), transparent 24%),
    radial-gradient(
      circle at 95% 12%,
      rgba(22, 184, 166, 0.07),
      transparent 22%
    ),
    linear-gradient(180deg, #fcfbff 0%, var(--sh-bg) 35%, #f8f9fd 100%);
}

.privacy-page__grid {
  position: absolute;
  inset: 0 0 auto;
  height: 760px;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(113, 56, 232, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(113, 56, 232, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
}

.privacy-page__orb {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(6px);
}

.privacy-page__orb--one {
  top: 110px;
  left: -180px;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(113, 56, 232, 0.16),
    transparent 68%
  );
  animation: privacy-orb-float 10s ease-in-out infinite;
}

.privacy-page__orb--two {
  top: 300px;
  right: -220px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(22, 184, 166, 0.13),
    transparent 68%
  );
  animation: privacy-orb-float 12s ease-in-out infinite reverse;
}

@keyframes privacy-orb-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -24px, 0);
  }
}

/* Hero */
.privacy-hero {
  position: relative;
  z-index: 1;
  padding: 92px 0 74px;
}

.privacy-hero__content {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.privacy-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 9px 14px;
  border: 1px solid rgba(113, 56, 232, 0.14);
  border-radius: var(--sh-radius-pill);
  background: rgba(255, 255, 255, 0.8);
  color: var(--sh-primary-dark);
  box-shadow: var(--sh-shadow-xs);
  backdrop-filter: blur(14px);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.privacy-hero__eyebrow-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: var(--sh-primary-soft);
  color: var(--sh-primary);
}

.privacy-hero__title {
  margin: 0;
  color: var(--sh-text);
  font-size: clamp(3rem, 6vw, 5.6rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.98;
}

.privacy-hero__title span {
  display: block;
  margin-top: 12px;
  background: var(--sh-gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.privacy-hero__description {
  max-width: 780px;
  margin: 28px auto 0;
  color: var(--sh-text-secondary);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.9;
}

.privacy-hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 850px;
  margin: 42px auto 0;
}

.privacy-hero__meta-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 17px 18px;
  border: 1px solid rgba(218, 212, 228, 0.78);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(27, 18, 46, 0.07);
  text-align: left;
  backdrop-filter: blur(16px);
}

.privacy-hero__meta-item > span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--sh-gradient-soft);
  color: var(--sh-primary);
  font-size: 1rem;
}

.privacy-hero__meta-item small,
.privacy-hero__meta-item strong {
  display: block;
}
.privacy-hero__meta-item small {
  color: var(--sh-text-muted);
  font-size: 0.7rem;
}
.privacy-hero__meta-item strong {
  margin-top: 2px;
  color: var(--sh-text);
  font-size: 0.83rem;
  font-weight: 800;
}

/* Summary */
.privacy-summary {
  position: relative;
  z-index: 2;
  padding: 0 0 28px;
}
.privacy-summary__card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 28px 30px;
  border: 1px solid rgba(113, 56, 232, 0.13);
  border-radius: 25px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95),
    rgba(248, 245, 255, 0.92)
  );
  box-shadow: var(--sh-shadow-md);
}
.privacy-summary__icon {
  display: inline-flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  border-radius: 19px;
  background: var(--sh-gradient-primary);
  color: #fff;
  box-shadow: var(--sh-shadow-primary);
  font-size: 1.35rem;
}
.privacy-summary__content > span {
  color: var(--sh-primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.privacy-summary__content h2 {
  margin: 5px 0 0;
  color: var(--sh-text);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 850;
  letter-spacing: -0.045em;
}
.privacy-summary__content p {
  max-width: 740px;
  margin: 9px 0 0;
  color: var(--sh-text-secondary);
  font-size: 0.93rem;
  line-height: 1.75;
}
.privacy-summary__principles {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}
.privacy-summary__principles div {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius-pill);
  background: #fff;
  color: var(--sh-text-secondary);
  font-size: 0.74rem;
}
.privacy-summary__principles i {
  color: var(--sh-secondary-dark);
}

/* Search */
.privacy-search-section {
  position: relative;
  z-index: 2;
  padding: 24px 0 44px;
}
.privacy-search-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(420px, 1.25fr);
  align-items: center;
  gap: 28px;
  padding: 24px 26px;
  border: 1px solid var(--sh-border);
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--sh-shadow-sm);
  backdrop-filter: blur(16px);
}
.privacy-search-card__heading {
  display: flex;
  align-items: center;
  gap: 14px;
}
.privacy-search-card__icon {
  display: inline-flex;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: var(--sh-primary-soft);
  color: var(--sh-primary);
  font-size: 1.1rem;
}
.privacy-search-card__heading span {
  color: var(--sh-primary);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.privacy-search-card__heading h2 {
  margin: 3px 0 0;
  color: var(--sh-text);
  font-size: 1.15rem;
  font-weight: 850;
  letter-spacing: -0.025em;
}
.privacy-search {
  position: relative;
}
.privacy-search__leading {
  position: absolute;
  top: 50%;
  left: 17px;
  color: var(--sh-text-light);
  transform: translateY(-50%);
  pointer-events: none;
}
.privacy-search__input {
  width: 100%;
  min-height: 54px;
  padding: 13px 52px 13px 48px;
  border: 1px solid var(--sh-border);
  border-radius: 15px;
  background: var(--sh-surface-soft);
  color: var(--sh-text);
  outline: none;
  transition:
    border-color var(--sh-transition),
    box-shadow var(--sh-transition),
    background var(--sh-transition);
}
.privacy-search__input::placeholder {
  color: #9a94a5;
}
.privacy-search__input:focus {
  border-color: rgba(113, 56, 232, 0.35);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(113, 56, 232, 0.09);
}
.privacy-search__clear {
  position: absolute;
  top: 50%;
  right: 10px;
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 11px;
  background: var(--sh-primary-soft);
  color: var(--sh-primary);
  transform: translateY(-50%);
  cursor: pointer;
}
.privacy-search__status {
  grid-column: 2;
  margin: -17px 0 0;
  color: var(--sh-text-muted);
  font-size: 0.75rem;
}

/* Main layout */
.privacy-content-section {
  position: relative;
  z-index: 2;
  padding: 14px 0 52px;
}
.privacy-layout {
  display: grid;
  grid-template-columns: minmax(260px, 310px) minmax(0, 1fr);
  align-items: start;
  gap: 30px;
}
.privacy-sidebar {
  position: sticky;
  top: calc(var(--sh-navbar-height) + 22px);
  /* max-height: calc(100vh - var(--sh-navbar-height) - 42px); */
  overflow: hidden;
  border: 1px solid var(--sh-border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--sh-shadow-sm);
  backdrop-filter: blur(18px);
}
.privacy-sidebar__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 18px 15px;
  border-bottom: 1px solid var(--sh-border);
}
.privacy-sidebar__header-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--sh-gradient-soft);
  color: var(--sh-primary);
}
.privacy-sidebar__header small {
  display: block;
  color: var(--sh-primary);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.privacy-sidebar__header h2 {
  margin: 2px 0 0;
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: -0.025em;
}
.privacy-sidebar__navigation {
  display: flex;
  max-height: calc(100vh - var(--sh-navbar-height) - 245px);
  flex-direction: column;
  gap: 4px;
  padding: 10px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(113, 56, 232, 0.3) transparent;
}
.privacy-sidebar__navigation a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: var(--sh-text-secondary);
  transition:
    color var(--sh-transition-fast),
    background var(--sh-transition-fast),
    border-color var(--sh-transition-fast),
    transform var(--sh-transition-fast);
}
.privacy-sidebar__navigation a > span {
  display: inline-flex;
  width: 31px;
  height: 31px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #f4f1fa;
  color: var(--sh-text-muted);
  font-size: 0.67rem;
  font-weight: 800;
}
.privacy-sidebar__navigation strong,
.privacy-sidebar__navigation small {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.privacy-sidebar__navigation strong {
  color: inherit;
  font-size: 0.75rem;
  font-weight: 750;
}
.privacy-sidebar__navigation small {
  margin-top: 1px;
  color: var(--sh-text-muted);
  font-size: 0.62rem;
}
.privacy-sidebar__navigation a:hover {
  border-color: rgba(113, 56, 232, 0.1);
  background: rgba(113, 56, 232, 0.055);
  color: var(--sh-primary-dark);
  transform: translateX(2px);
}
.privacy-sidebar__navigation a.is-active {
  border-color: rgba(113, 56, 232, 0.14);
  background: linear-gradient(
    135deg,
    rgba(113, 56, 232, 0.13),
    rgba(22, 184, 166, 0.07)
  );
  color: var(--sh-primary-dark);
}
.privacy-sidebar__navigation a.is-active > span {
  background: var(--sh-gradient-primary);
  color: #fff;
  box-shadow: 0 8px 18px rgba(113, 56, 232, 0.22);
}
.privacy-sidebar__help {
  display: flex;
  gap: 11px;
  margin: 10px;
  padding: 13px;
  border: 1px solid rgba(22, 184, 166, 0.15);
  border-radius: 14px;
  background: var(--sh-primary-soft);
}
.privacy-sidebar__help > span {
  display: inline-flex;
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: #fff;
  color: var(--sh-secondary-dark);
}
.privacy-sidebar__help strong {
  color: #245e58;
  font-size: 0.75rem;
}
.privacy-sidebar__help p {
  margin: 3px 0 7px;
  color: #4f7772;
  font-size: 0.65rem;
  line-height: 1.5;
}
.privacy-sidebar__help a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--sh-secondary-dark);
  font-size: 0.67rem;
  font-weight: 800;
}

.privacy-article {
  min-width: 0;
}
.privacy-section-card {
  position: relative;
  margin-bottom: 22px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--sh-border);
  border-radius: 22px;
  background: linear-gradient(145deg, #fff, #fcfbfe);
  box-shadow: 0 10px 32px rgba(31, 20, 52, 0.055);
  scroll-margin-top: calc(var(--sh-navbar-height) + 24px);
  transition:
    border-color var(--sh-transition),
    box-shadow var(--sh-transition),
    transform var(--sh-transition);
}
.privacy-section-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--sh-gradient-primary);
  opacity: 0;
  transition: opacity var(--sh-transition);
}
.privacy-section-card::after {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(113, 56, 232, 0.045);
  pointer-events: none;
}
.privacy-section-card:hover {
  border-color: rgba(113, 56, 232, 0.18);
  box-shadow: 0 18px 44px rgba(31, 20, 52, 0.09);
  transform: translateY(-2px);
}
.privacy-section-card:hover::before,
.privacy-section-card--highlight::before {
  opacity: 1;
}
.privacy-section-card--highlight {
  border-color: rgba(113, 56, 232, 0.17);
  background: linear-gradient(145deg, #fff, #faf7ff);
}
.privacy-section-card--contact {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 1),
    rgba(232, 250, 247, 0.55)
  );
}

.privacy-section-card__header {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--sh-border);
}
.privacy-section-card__number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--sh-text);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 850;
}
.privacy-section-card__icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--sh-primary-soft);
  color: var(--sh-primary);
  font-size: 1rem;
}
.privacy-section-card__eyebrow {
  display: block;
  color: var(--sh-primary);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.privacy-section-card__heading h2 {
  margin: 3px 0 0;
  color: var(--sh-text);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1.2;
}
.privacy-section-card__heading p {
  margin: 6px 0 0;
  color: var(--sh-text-muted);
  font-size: 0.8rem;
  line-height: 1.6;
}
.privacy-section-card__content {
  position: relative;
  z-index: 1;
  padding-top: 20px;
}
.privacy-copy {
  margin: 0 0 14px;
  color: var(--sh-text-secondary);
  font-size: 0.94rem;
  line-height: 1.85;
}
.privacy-copy:last-child {
  margin-bottom: 0;
}
.privacy-subheading {
  margin: 24px 0 9px;
  color: var(--sh-text);
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: -0.02em;
}
.privacy-subheading::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 16px;
  margin-right: 9px;
  border-radius: 999px;
  background: var(--sh-gradient-primary);
  vertical-align: -2px;
}
.privacy-inline-link {
  color: var(--sh-primary-dark);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(113, 56, 232, 0.25);
  text-underline-offset: 3px;
}
.privacy-inline-link:hover {
  color: var(--sh-primary);
}

.privacy-check-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 20px;
  padding: 0;
  list-style: none;
}
.privacy-check-list__item {
  position: relative;
  padding: 12px 14px 12px 43px;
  border: 1px solid var(--sh-border);
  border-radius: 13px;
  background: var(--sh-surface-soft);
  color: var(--sh-text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
}
.privacy-check-list__item::before {
  content: "\F26E";
  position: absolute;
  top: 12px;
  left: 13px;
  display: inline-flex;
  width: 21px;
  height: 21px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: var(--sh-secondary-soft);
  color: var(--sh-secondary-dark);
  font-family: "bootstrap-icons";
  font-size: 0.75rem;
}

.privacy-note {
  display: flex;
  gap: 13px;
  margin: 22px 0 4px;
  padding: 16px 17px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 15px;
  background: #f4f8ff;
  color: #365475;
}
.privacy-note > i {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--sh-info);
  font-size: 1.05rem;
}
.privacy-note p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.7;
}
.privacy-note--payment {
  border-color: rgba(113, 56, 232, 0.15);
  background: #f8f5ff;
  color: #594b77;
}
.privacy-note--payment > i {
  color: var(--sh-primary);
}
.privacy-note--security {
  border-color: rgba(22, 184, 166, 0.17);
  background: var(--sh-secondary-soft);
  color: #376e67;
}
.privacy-note--security > i {
  color: var(--sh-secondary-dark);
}

.privacy-rights-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}
.privacy-rights-grid > div {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  column-gap: 11px;
  padding: 15px;
  border: 1px solid var(--sh-border);
  border-radius: 15px;
  background: #fff;
}
.privacy-rights-grid i {
  grid-row: 1 / span 2;
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--sh-primary-soft);
  color: var(--sh-primary);
}
.privacy-rights-grid strong {
  color: var(--sh-text);
  font-size: 0.8rem;
}
.privacy-rights-grid span {
  margin-top: 2px;
  color: var(--sh-text-muted);
  font-size: 0.68rem;
  line-height: 1.5;
}

.privacy-contact-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(113, 56, 232, 0.14);
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(113, 56, 232, 0.08),
    rgba(22, 184, 166, 0.07)
  );
}
.privacy-contact-card__icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #fff;
  color: var(--sh-primary);
  box-shadow: var(--sh-shadow-xs);
}
.privacy-contact-card small {
  display: block;
  color: var(--sh-text-muted);
  font-size: 0.66rem;
}
.privacy-contact-card a {
  display: inline-block;
  margin-top: 2px;
  color: var(--sh-primary-dark);
  font-size: 0.84rem;
  font-weight: 800;
  word-break: break-word;
}
.privacy-contact-card > i {
  color: var(--sh-primary);
}

.privacy-section-card__back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  padding: 8px 11px;
  border-radius: 10px;
  background: var(--sh-primary-soft);
  color: var(--sh-primary-dark);
  font-size: 0.7rem;
  font-weight: 800;
  transition:
    transform var(--sh-transition),
    background var(--sh-transition);
}
.privacy-section-card__back:hover {
  background: #e7defc;
  color: var(--sh-primary-dark);
  transform: translateY(-1px);
}

.privacy-empty-state {
  padding: 52px 28px;
  border: 1px dashed rgba(113, 56, 232, 0.25);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
}
.privacy-empty-state > span {
  display: inline-flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  border-radius: 19px;
  background: var(--sh-primary-soft);
  color: var(--sh-primary);
  font-size: 1.35rem;
}
.privacy-empty-state h2 {
  margin: 17px 0 0;
  font-size: 1.45rem;
  font-weight: 850;
  letter-spacing: -0.04em;
}
.privacy-empty-state p {
  margin: 8px auto 0;
  color: var(--sh-text-muted);
}
.privacy-empty-state button {
  margin-top: 18px;
  padding: 10px 15px;
  border: 0;
  border-radius: 12px;
  background: var(--sh-gradient-primary);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
}

.privacy-important-note {
  display: flex;
  gap: 14px;
  margin-top: 26px;
  padding: 20px;
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 17px;
  background: #fff8e7;
  color: #6c4a08;
}
.privacy-important-note > span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: #fff;
  color: #c27a00;
}
.privacy-important-note strong {
  font-size: 0.84rem;
}
.privacy-important-note p {
  margin: 5px 0 0;
  font-size: 0.76rem;
  line-height: 1.7;
}

/* Final CTA */
.privacy-final-cta {
  position: relative;
  z-index: 2;
  padding: 38px 0 20px;
}
.privacy-final-cta__card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 30px 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  background: linear-gradient(135deg, #261348 0%, #44208a 52%, #136e70 100%);
  color: #fff;
  box-shadow: 0 25px 65px rgba(35, 20, 61, 0.22);
}
.privacy-final-cta__card::before {
  content: "";
  position: absolute;
  top: -100px;
  right: 12%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
}
.privacy-final-cta__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.11);
  font-size: 1.35rem;
}
.privacy-final-cta__content {
  position: relative;
  z-index: 1;
}
.privacy-final-cta__content > span {
  color: #d9c9ff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.privacy-final-cta__content h2 {
  margin: 4px 0 0;
  color: #fff;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 850;
  letter-spacing: -0.04em;
}
.privacy-final-cta__content p {
  max-width: 700px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
  line-height: 1.7;
}
.privacy-final-cta__button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 19px;
  border-radius: 14px;
  background: #fff;
  color: var(--sh-primary-deep);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  font-size: 0.82rem;
  font-weight: 850;
  transition:
    transform var(--sh-transition),
    box-shadow var(--sh-transition);
}
.privacy-final-cta__button:hover {
  color: var(--sh-primary-deep);
  transform: translateY(-3px);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.25);
}

[hidden] {
  display: none !important;
}

@media (max-width: 1199.98px) {
  .privacy-layout {
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 24px;
  }
  .privacy-summary__card {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .privacy-summary__principles {
    grid-column: 2;
    justify-content: flex-start;
  }
}

@media (max-width: 991.98px) {
  .privacy-hero {
    padding: 72px 0 58px;
  }
  .privacy-layout {
    grid-template-columns: 1fr;
  }
  .privacy-sidebar {
    position: relative;
    top: auto;
    max-height: none;
  }
  .privacy-sidebar__navigation {
    display: grid;
    max-height: 320px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .privacy-search-card {
    grid-template-columns: 1fr;
  }
  .privacy-search__status {
    grid-column: auto;
    margin: -13px 0 0;
  }
  .privacy-final-cta__card {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .privacy-final-cta__button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 767.98px) {
  .privacy-hero {
    padding: 58px 0 44px;
  }
  .privacy-hero__title {
    font-size: clamp(2.65rem, 13vw, 4.2rem);
  }
  .privacy-hero__meta {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .privacy-summary__card {
    grid-template-columns: 1fr;
    padding: 23px;
  }
  .privacy-summary__principles {
    grid-column: auto;
    justify-content: flex-start;
  }
  .privacy-search-card {
    padding: 20px;
  }
  .privacy-sidebar__navigation {
    grid-template-columns: 1fr;
    max-height: 350px;
  }
  .privacy-section-card {
    padding: 22px 19px;
    border-radius: 18px;
  }
  .privacy-section-card__header {
    grid-template-columns: auto auto;
  }
  .privacy-section-card__heading {
    grid-column: 1 / -1;
  }
  .privacy-rights-grid {
    grid-template-columns: 1fr;
  }
  .privacy-final-cta__card {
    grid-template-columns: 1fr;
    padding: 25px 22px;
  }
  .privacy-final-cta__button {
    grid-column: auto;
    width: 100%;
  }
}

@media (max-width: 479.98px) {
  .privacy-hero__eyebrow {
    font-size: 0.65rem;
  }
  .privacy-hero__description {
    font-size: 0.94rem;
  }
  .privacy-summary__principles {
    align-items: stretch;
    flex-direction: column;
  }
  .privacy-summary__principles div {
    width: fit-content;
  }
  .privacy-search-card__heading {
    align-items: flex-start;
  }
  .privacy-search__input {
    font-size: 0.86rem;
  }
  .privacy-section-card__number,
  .privacy-section-card__icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }
  .privacy-contact-card {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .privacy-contact-card > i {
    display: none;
  }
  .privacy-important-note {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .privacy-page__orb {
    animation: none;
  }
  .privacy-section-card:hover,
  .privacy-sidebar__navigation a:hover,
  .privacy-final-cta__button:hover {
    transform: none;
  }
}

/* =========================================================
   SMART HIRING — FAQ PAGE
   Add this file after your existing public style.css
========================================================= */

.faq-page {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 5% 3%, rgba(113, 56, 232, 0.08), transparent 24%),
    radial-gradient(
      circle at 95% 12%,
      rgba(22, 184, 166, 0.07),
      transparent 22%
    ),
    linear-gradient(180deg, #fcfbff 0%, var(--sh-bg) 35%, #f8f9fd 100%);
}

.faq-page__grid {
  position: absolute;
  inset: 0 0 auto;
  height: 760px;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(113, 56, 232, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(113, 56, 232, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
}

.faq-page__orb {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(6px);
}

.faq-page__orb--one {
  top: 110px;
  left: -180px;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(113, 56, 232, 0.16),
    transparent 68%
  );
  animation: faq-orb-float 10s ease-in-out infinite;
}

.faq-page__orb--two {
  top: 300px;
  right: -220px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(22, 184, 166, 0.13),
    transparent 68%
  );
  animation: faq-orb-float 12s ease-in-out infinite reverse;
}

@keyframes faq-orb-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -24px, 0);
  }
}

/* Hero */
.faq-hero {
  position: relative;
  z-index: 1;
  padding: 92px 0 74px;
}

.faq-hero__content {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.faq-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 9px 14px;
  border: 1px solid rgba(113, 56, 232, 0.14);
  border-radius: var(--sh-radius-pill);
  background: rgba(255, 255, 255, 0.8);
  color: var(--sh-primary-dark);
  box-shadow: var(--sh-shadow-xs);
  backdrop-filter: blur(14px);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-hero__eyebrow-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: var(--sh-primary-soft);
  color: var(--sh-primary);
}

.faq-hero__title {
  margin: 0;
  color: var(--sh-text);
  font-size: clamp(3rem, 6vw, 5.6rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.98;
}

.faq-hero__title span {
  display: block;
  margin-top: 12px;
  background: var(--sh-gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.faq-hero__description {
  max-width: 780px;
  margin: 28px auto 0;
  color: var(--sh-text-secondary);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.9;
}

.faq-hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 850px;
  margin: 42px auto 0;
}

.faq-hero__meta-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 17px 18px;
  border: 1px solid rgba(218, 212, 228, 0.78);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(27, 18, 46, 0.07);
  text-align: left;
  backdrop-filter: blur(16px);
}

.faq-hero__meta-item > span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--sh-gradient-soft);
  color: var(--sh-primary);
  font-size: 1rem;
}

.faq-hero__meta-item small,
.faq-hero__meta-item strong {
  display: block;
}
.faq-hero__meta-item small {
  color: var(--sh-text-muted);
  font-size: 0.7rem;
}
.faq-hero__meta-item strong {
  margin-top: 2px;
  color: var(--sh-text);
  font-size: 0.83rem;
  font-weight: 800;
}

/* Summary */
.faq-summary {
  position: relative;
  z-index: 2;
  padding: 0 0 28px;
}
.faq-summary__card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 28px 30px;
  border: 1px solid rgba(113, 56, 232, 0.13);
  border-radius: 25px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95),
    rgba(248, 245, 255, 0.92)
  );
  box-shadow: var(--sh-shadow-md);
}
.faq-summary__icon {
  display: inline-flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  border-radius: 19px;
  background: var(--sh-gradient-primary);
  color: #fff;
  box-shadow: var(--sh-shadow-primary);
  font-size: 1.35rem;
}
.faq-summary__content > span {
  color: var(--sh-primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.faq-summary__content h2 {
  margin: 5px 0 0;
  color: var(--sh-text);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 850;
  letter-spacing: -0.045em;
}
.faq-summary__content p {
  max-width: 740px;
  margin: 9px 0 0;
  color: var(--sh-text-secondary);
  font-size: 0.93rem;
  line-height: 1.75;
}
.faq-summary__principles {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}
.faq-summary__principles div {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius-pill);
  background: #fff;
  color: var(--sh-text-secondary);
  font-size: 0.74rem;
}
.faq-summary__principles i {
  color: var(--sh-secondary-dark);
}

/* Search */
.faq-search-section {
  position: relative;
  z-index: 2;
  padding: 24px 0 44px;
}
.faq-search-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(420px, 1.25fr);
  align-items: center;
  gap: 28px;
  padding: 24px 26px;
  border: 1px solid var(--sh-border);
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--sh-shadow-sm);
  backdrop-filter: blur(16px);
}
.faq-search-card__heading {
  display: flex;
  align-items: center;
  gap: 14px;
}
.faq-search-card__icon {
  display: inline-flex;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: var(--sh-primary-soft);
  color: var(--sh-primary);
  font-size: 1.1rem;
}
.faq-search-card__heading span {
  color: var(--sh-primary);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.faq-search-card__heading h2 {
  margin: 3px 0 0;
  color: var(--sh-text);
  font-size: 1.15rem;
  font-weight: 850;
  letter-spacing: -0.025em;
}
.faq-search {
  position: relative;
}
.faq-search__leading {
  position: absolute;
  top: 50%;
  left: 17px;
  color: var(--sh-text-light);
  transform: translateY(-50%);
  pointer-events: none;
}
.faq-search__input {
  width: 100%;
  min-height: 54px;
  padding: 13px 52px 13px 48px;
  border: 1px solid var(--sh-border);
  border-radius: 15px;
  background: var(--sh-surface-soft);
  color: var(--sh-text);
  outline: none;
  transition:
    border-color var(--sh-transition),
    box-shadow var(--sh-transition),
    background var(--sh-transition);
}
.faq-search__input::placeholder {
  color: #9a94a5;
}
.faq-search__input:focus {
  border-color: rgba(113, 56, 232, 0.35);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(113, 56, 232, 0.09);
}
.faq-search__clear {
  position: absolute;
  top: 50%;
  right: 10px;
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 11px;
  background: var(--sh-primary-soft);
  color: var(--sh-primary);
  transform: translateY(-50%);
  cursor: pointer;
}
.faq-search__status {
  grid-column: 2;
  margin: -17px 0 0;
  color: var(--sh-text-muted);
  font-size: 0.75rem;
}

/* Main layout */
.faq-content-section {
  position: relative;
  z-index: 2;
  padding: 14px 0 52px;
}
.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 310px) minmax(0, 1fr);
  align-items: start;
  gap: 30px;
}
.faq-sidebar {
  position: sticky;
  top: calc(var(--sh-navbar-height) + 22px);
  /* max-height: calc(100vh - var(--sh-navbar-height) - 42px); */
  overflow: hidden;
  border: 1px solid var(--sh-border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--sh-shadow-sm);
  backdrop-filter: blur(18px);
}
.faq-sidebar__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 18px 15px;
  border-bottom: 1px solid var(--sh-border);
}
.faq-sidebar__header-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--sh-gradient-soft);
  color: var(--sh-primary);
}
.faq-sidebar__header small {
  display: block;
  color: var(--sh-primary);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.faq-sidebar__header h2 {
  margin: 2px 0 0;
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: -0.025em;
}
.faq-sidebar__navigation {
  display: flex;
  max-height: calc(100vh - var(--sh-navbar-height) - 245px);
  flex-direction: column;
  gap: 4px;
  padding: 10px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(113, 56, 232, 0.3) transparent;
}
.faq-sidebar__navigation a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: var(--sh-text-secondary);
  transition:
    color var(--sh-transition-fast),
    background var(--sh-transition-fast),
    border-color var(--sh-transition-fast),
    transform var(--sh-transition-fast);
}
.faq-sidebar__navigation a > span {
  display: inline-flex;
  width: 31px;
  height: 31px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #f4f1fa;
  color: var(--sh-text-muted);
  font-size: 0.67rem;
  font-weight: 800;
}
.faq-sidebar__navigation strong,
.faq-sidebar__navigation small {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.faq-sidebar__navigation strong {
  color: inherit;
  font-size: 0.75rem;
  font-weight: 750;
}
.faq-sidebar__navigation small {
  margin-top: 1px;
  color: var(--sh-text-muted);
  font-size: 0.62rem;
}
.faq-sidebar__navigation a:hover {
  border-color: rgba(113, 56, 232, 0.1);
  background: rgba(113, 56, 232, 0.055);
  color: var(--sh-primary-dark);
  transform: translateX(2px);
}
.faq-sidebar__navigation a.is-active {
  border-color: rgba(113, 56, 232, 0.14);
  background: linear-gradient(
    135deg,
    rgba(113, 56, 232, 0.13),
    rgba(22, 184, 166, 0.07)
  );
  color: var(--sh-primary-dark);
}
.faq-sidebar__navigation a.is-active > span {
  background: var(--sh-gradient-primary);
  color: #fff;
  box-shadow: 0 8px 18px rgba(113, 56, 232, 0.22);
}
.faq-sidebar__help {
  display: flex;
  gap: 11px;
  margin: 10px;
  padding: 13px;
  border: 1px solid rgba(22, 184, 166, 0.15);
  border-radius: 14px;
  background: var(--sh-primary-soft);
}
.faq-sidebar__help > span {
  display: inline-flex;
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: #fff;
  color: var(--sh-secondary-dark);
}
.faq-sidebar__help strong {
  color: #245e58;
  font-size: 0.75rem;
}
.faq-sidebar__help p {
  margin: 3px 0 7px;
  color: #4f7772;
  font-size: 0.65rem;
  line-height: 1.5;
}
.faq-sidebar__help a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--sh-secondary-dark);
  font-size: 0.67rem;
  font-weight: 800;
}

.faq-article {
  min-width: 0;
}
.faq-section-card {
  position: relative;
  margin-bottom: 22px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--sh-border);
  border-radius: 22px;
  background: linear-gradient(145deg, #fff, #fcfbfe);
  box-shadow: 0 10px 32px rgba(31, 20, 52, 0.055);
  scroll-margin-top: calc(var(--sh-navbar-height) + 24px);
  transition:
    border-color var(--sh-transition),
    box-shadow var(--sh-transition),
    transform var(--sh-transition);
}
.faq-section-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--sh-gradient-primary);
  opacity: 0;
  transition: opacity var(--sh-transition);
}
.faq-section-card::after {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(113, 56, 232, 0.045);
  pointer-events: none;
}
.faq-section-card:hover {
  border-color: rgba(113, 56, 232, 0.18);
  box-shadow: 0 18px 44px rgba(31, 20, 52, 0.09);
  transform: translateY(-2px);
}
.faq-section-card:hover::before,
.faq-section-card--highlight::before {
  opacity: 1;
}
.faq-section-card--highlight {
  border-color: rgba(113, 56, 232, 0.17);
  background: linear-gradient(145deg, #fff, #faf7ff);
}
.faq-section-card--contact {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 1),
    rgba(232, 250, 247, 0.55)
  );
}

.faq-section-card__header {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--sh-border);
}
.faq-section-card__number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--sh-text);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 850;
}
.faq-section-card__icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--sh-primary-soft);
  color: var(--sh-primary);
  font-size: 1rem;
}
.faq-section-card__eyebrow {
  display: block;
  color: var(--sh-primary);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.faq-section-card__heading h2 {
  margin: 3px 0 0;
  color: var(--sh-text);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1.2;
}
.faq-section-card__heading p {
  margin: 6px 0 0;
  color: var(--sh-text-muted);
  font-size: 0.8rem;
  line-height: 1.6;
}
.faq-section-card__content {
  position: relative;
  z-index: 1;
  padding-top: 20px;
}
.faq-copy {
  margin: 0 0 14px;
  color: var(--sh-text-secondary);
  font-size: 0.94rem;
  line-height: 1.85;
}
.faq-copy:last-child {
  margin-bottom: 0;
}
.faq-subheading {
  margin: 24px 0 9px;
  color: var(--sh-text);
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: -0.02em;
}
.faq-subheading::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 16px;
  margin-right: 9px;
  border-radius: 999px;
  background: var(--sh-gradient-primary);
  vertical-align: -2px;
}
.faq-inline-link {
  color: var(--sh-primary-dark);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(113, 56, 232, 0.25);
  text-underline-offset: 3px;
}
.faq-inline-link:hover {
  color: var(--sh-primary);
}

.faq-check-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 20px;
  padding: 0;
  list-style: none;
}
.faq-check-list__item {
  position: relative;
  padding: 12px 14px 12px 43px;
  border: 1px solid var(--sh-border);
  border-radius: 13px;
  background: var(--sh-surface-soft);
  color: var(--sh-text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
}
.faq-check-list__item::before {
  content: "\F26E";
  position: absolute;
  top: 12px;
  left: 13px;
  display: inline-flex;
  width: 21px;
  height: 21px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: var(--sh-secondary-soft);
  color: var(--sh-secondary-dark);
  font-family: "bootstrap-icons";
  font-size: 0.75rem;
}

.faq-note {
  display: flex;
  gap: 13px;
  margin: 22px 0 4px;
  padding: 16px 17px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 15px;
  background: #f4f8ff;
  color: #365475;
}
.faq-note > i {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--sh-info);
  font-size: 1.05rem;
}
.faq-note p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.7;
}
.faq-note--payment {
  border-color: rgba(113, 56, 232, 0.15);
  background: #f8f5ff;
  color: #594b77;
}
.faq-note--payment > i {
  color: var(--sh-primary);
}
.faq-note--security {
  border-color: rgba(22, 184, 166, 0.17);
  background: var(--sh-secondary-soft);
  color: #376e67;
}
.faq-note--security > i {
  color: var(--sh-secondary-dark);
}

.faq-rights-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}
.faq-rights-grid > div {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  column-gap: 11px;
  padding: 15px;
  border: 1px solid var(--sh-border);
  border-radius: 15px;
  background: #fff;
}
.faq-rights-grid i {
  grid-row: 1 / span 2;
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--sh-primary-soft);
  color: var(--sh-primary);
}
.faq-rights-grid strong {
  color: var(--sh-text);
  font-size: 0.8rem;
}
.faq-rights-grid span {
  margin-top: 2px;
  color: var(--sh-text-muted);
  font-size: 0.68rem;
  line-height: 1.5;
}

.faq-contact-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(113, 56, 232, 0.14);
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(113, 56, 232, 0.08),
    rgba(22, 184, 166, 0.07)
  );
}
.faq-contact-card__icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #fff;
  color: var(--sh-primary);
  box-shadow: var(--sh-shadow-xs);
}
.faq-contact-card small {
  display: block;
  color: var(--sh-text-muted);
  font-size: 0.66rem;
}
.faq-contact-card a {
  display: inline-block;
  margin-top: 2px;
  color: var(--sh-primary-dark);
  font-size: 0.84rem;
  font-weight: 800;
  word-break: break-word;
}
.faq-contact-card > i {
  color: var(--sh-primary);
}

.faq-section-card__back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  padding: 8px 11px;
  border-radius: 10px;
  background: var(--sh-primary-soft);
  color: var(--sh-primary-dark);
  font-size: 0.7rem;
  font-weight: 800;
  transition:
    transform var(--sh-transition),
    background var(--sh-transition);
}
.faq-section-card__back:hover {
  background: #e7defc;
  color: var(--sh-primary-dark);
  transform: translateY(-1px);
}

.faq-empty-state {
  padding: 52px 28px;
  border: 1px dashed rgba(113, 56, 232, 0.25);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
}
.faq-empty-state > span {
  display: inline-flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  border-radius: 19px;
  background: var(--sh-primary-soft);
  color: var(--sh-primary);
  font-size: 1.35rem;
}
.faq-empty-state h2 {
  margin: 17px 0 0;
  font-size: 1.45rem;
  font-weight: 850;
  letter-spacing: -0.04em;
}
.faq-empty-state p {
  margin: 8px auto 0;
  color: var(--sh-text-muted);
}
.faq-empty-state button {
  margin-top: 18px;
  padding: 10px 15px;
  border: 0;
  border-radius: 12px;
  background: var(--sh-gradient-primary);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
}

.faq-important-note {
  display: flex;
  gap: 14px;
  margin-top: 26px;
  padding: 20px;
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 17px;
  background: #fff8e7;
  color: #6c4a08;
}
.faq-important-note > span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: #fff;
  color: #c27a00;
}
.faq-important-note strong {
  font-size: 0.84rem;
}
.faq-important-note p {
  margin: 5px 0 0;
  font-size: 0.76rem;
  line-height: 1.7;
}

/* Final CTA */
.faq-final-cta {
  position: relative;
  z-index: 2;
  padding: 38px 0 20px;
}
.faq-final-cta__card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 30px 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  background: linear-gradient(135deg, #261348 0%, #44208a 52%, #136e70 100%);
  color: #fff;
  box-shadow: 0 25px 65px rgba(35, 20, 61, 0.22);
}
.faq-final-cta__card::before {
  content: "";
  position: absolute;
  top: -100px;
  right: 12%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
}
.faq-final-cta__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.11);
  font-size: 1.35rem;
}
.faq-final-cta__content {
  position: relative;
  z-index: 1;
}
.faq-final-cta__content > span {
  color: #d9c9ff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.faq-final-cta__content h2 {
  margin: 4px 0 0;
  color: #fff;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 850;
  letter-spacing: -0.04em;
}
.faq-final-cta__content p {
  max-width: 700px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
  line-height: 1.7;
}
.faq-final-cta__button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 19px;
  border-radius: 14px;
  background: #fff;
  color: var(--sh-primary-deep);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  font-size: 0.82rem;
  font-weight: 850;
  transition:
    transform var(--sh-transition),
    box-shadow var(--sh-transition);
}
.faq-final-cta__button:hover {
  color: var(--sh-primary-deep);
  transform: translateY(-3px);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.25);
}

[hidden] {
  display: none !important;
}

@media (max-width: 1199.98px) {
  .faq-layout {
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 24px;
  }
  .faq-summary__card {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .faq-summary__principles {
    grid-column: 2;
    justify-content: flex-start;
  }
}

@media (max-width: 991.98px) {
  .faq-hero {
    padding: 72px 0 58px;
  }
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .faq-sidebar {
    position: relative;
    top: auto;
    max-height: none;
  }
  .faq-sidebar__navigation {
    display: grid;
    max-height: 320px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .faq-search-card {
    grid-template-columns: 1fr;
  }
  .faq-search__status {
    grid-column: auto;
    margin: -13px 0 0;
  }
  .faq-final-cta__card {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .faq-final-cta__button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 767.98px) {
  .faq-hero {
    padding: 58px 0 44px;
  }
  .faq-hero__title {
    font-size: clamp(2.65rem, 13vw, 4.2rem);
  }
  .faq-hero__meta {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .faq-summary__card {
    grid-template-columns: 1fr;
    padding: 23px;
  }
  .faq-summary__principles {
    grid-column: auto;
    justify-content: flex-start;
  }
  .faq-search-card {
    padding: 20px;
  }
  .faq-sidebar__navigation {
    grid-template-columns: 1fr;
    max-height: 350px;
  }
  .faq-section-card {
    padding: 22px 19px;
    border-radius: 18px;
  }
  .faq-section-card__header {
    grid-template-columns: auto auto;
  }
  .faq-section-card__heading {
    grid-column: 1 / -1;
  }
  .faq-rights-grid {
    grid-template-columns: 1fr;
  }
  .faq-final-cta__card {
    grid-template-columns: 1fr;
    padding: 25px 22px;
  }
  .faq-final-cta__button {
    grid-column: auto;
    width: 100%;
  }
}

@media (max-width: 479.98px) {
  .faq-hero__eyebrow {
    font-size: 0.65rem;
  }
  .faq-hero__description {
    font-size: 0.94rem;
  }
  .faq-summary__principles {
    align-items: stretch;
    flex-direction: column;
  }
  .faq-summary__principles div {
    width: fit-content;
  }
  .faq-search-card__heading {
    align-items: flex-start;
  }
  .faq-search__input {
    font-size: 0.86rem;
  }
  .faq-section-card__number,
  .faq-section-card__icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }
  .faq-contact-card {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .faq-contact-card > i {
    display: none;
  }
  .faq-important-note {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-page__orb {
    animation: none;
  }
  .faq-section-card:hover,
  .faq-sidebar__navigation a:hover,
  .faq-final-cta__button:hover {
    transform: none;
  }
}

/* =========================================================
   FAQ-SPECIFIC CONTENT INSIDE THE SHARED LEGAL STRUCTURE
========================================================= */

.faq-section-card__header {
  grid-template-columns: auto auto minmax(0, 1fr) auto;
}

.faq-section-card__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  padding: 8px 12px;
  border: 1px solid rgba(113, 56, 232, 0.13);
  border-radius: var(--sh-radius-pill);
  background: var(--sh-primary-soft);
  color: var(--sh-primary-dark);
  font-size: 0.68rem;
  font-weight: 800;
  white-space: nowrap;
}

.faq-accordion {
  display: grid;
  gap: 11px;
}

.faq-item.accordion-item {
  overflow: hidden;
  border: 1px solid var(--sh-border);
  border-radius: 15px;
  background: #fff;
  box-shadow: none;
  transition:
    border-color var(--sh-transition),
    box-shadow var(--sh-transition),
    transform var(--sh-transition);
}

.faq-item.accordion-item:hover {
  border-color: rgba(113, 56, 232, 0.17);
  box-shadow: 0 12px 30px rgba(31, 20, 52, 0.07);
  transform: translateY(-1px);
}

.faq-item .accordion-button {
  display: flex;
  gap: 13px;
  min-height: 68px;
  padding: 14px 16px;
  border: 0;
  background: #fff;
  color: var(--sh-text);
  box-shadow: none;
  font-size: 0.9rem;
  font-weight: 780;
  line-height: 1.45;
}

.faq-item .accordion-button:not(.collapsed) {
  background: linear-gradient(
    135deg,
    rgba(113, 56, 232, 0.08),
    rgba(22, 184, 166, 0.045)
  );
  color: var(--sh-primary-dark);
  box-shadow: inset 0 -1px 0 var(--sh-border);
}

.faq-item .accordion-button:focus {
  box-shadow: inset 0 0 0 3px rgba(113, 56, 232, 0.1);
}

.faq-item .accordion-button::after {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  margin-left: auto;
  border-radius: 10px;
  background-color: var(--sh-primary-soft);
  background-position: center;
  background-size: 13px;
}

.faq-item__number {
  display: inline-flex;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #f4f1fa;
  color: var(--sh-primary);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.faq-item .accordion-button:not(.collapsed) .faq-item__number {
  background: var(--sh-gradient-primary);
  color: #fff;
  box-shadow: 0 8px 18px rgba(113, 56, 232, 0.2);
}

.faq-item__question {
  min-width: 0;
}

.faq-item .accordion-body {
  padding: 18px 20px 20px 68px;
  color: var(--sh-text-secondary);
  font-size: 0.86rem;
  line-height: 1.8;
}

.faq-item .accordion-body p {
  margin: 0;
}

.faq-item .accordion-body p + p,
.faq-item .accordion-body p + ul,
.faq-item .accordion-body p + ol,
.faq-item .accordion-body p + .faq-file-types {
  margin-top: 13px;
}

.faq-check-list,
.faq-step-list {
  display: grid;
  gap: 9px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.faq-check-list li,
.faq-step-list li {
  position: relative;
  padding-left: 30px;
}

.faq-check-list li::before {
  content: "\F26E";
  position: absolute;
  top: 1px;
  left: 0;
  display: inline-flex;
  width: 21px;
  height: 21px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: var(--sh-secondary-soft);
  color: var(--sh-secondary-dark);
  font-family: "bootstrap-icons";
  font-size: 0.72rem;
}

.faq-step-list {
  counter-reset: faq-step;
}

.faq-step-list li {
  counter-increment: faq-step;
}

.faq-step-list li::before {
  content: counter(faq-step);
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: var(--sh-primary-soft);
  color: var(--sh-primary);
  font-size: 0.67rem;
  font-weight: 850;
}

.faq-file-types {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.faq-file-types span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid var(--sh-border);
  border-radius: 11px;
  background: var(--sh-surface-soft);
  color: var(--sh-text);
  font-size: 0.74rem;
  font-weight: 760;
}

.faq-file-types i {
  color: var(--sh-primary);
}

.faq-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 13px;
  color: var(--sh-primary);
  font-weight: 760;
}

.faq-inline-link:hover {
  color: var(--sh-primary-dark);
}

@media (max-width: 767.98px) {
  .faq-section-card__header {
    grid-template-columns: auto auto;
  }

  .faq-section-card__heading {
    grid-column: 1 / -1;
  }

  .faq-section-card__count {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .faq-item .accordion-body {
    padding: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-item.accordion-item:hover {
    transform: none;
  }
}

/* =========================================================
   SMART HIRING — REFUND & CANCELLATION POLICY PAGE
   Add this file after your existing public style.css
========================================================= */

.refund-policy-page {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 5% 3%, rgba(113, 56, 232, 0.08), transparent 24%),
    radial-gradient(
      circle at 95% 12%,
      rgba(22, 184, 166, 0.07),
      transparent 22%
    ),
    linear-gradient(180deg, #fcfbff 0%, var(--sh-bg) 35%, #f8f9fd 100%);
}

.refund-policy-page__grid {
  position: absolute;
  inset: 0 0 auto;
  height: 760px;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(113, 56, 232, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(113, 56, 232, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
}

.refund-policy-page__orb {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(6px);
}

.refund-policy-page__orb--one {
  top: 110px;
  left: -180px;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(113, 56, 232, 0.16),
    transparent 68%
  );
  animation: privacy-orb-float 10s ease-in-out infinite;
}

.refund-policy-page__orb--two {
  top: 300px;
  right: -220px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(22, 184, 166, 0.13),
    transparent 68%
  );
  animation: privacy-orb-float 12s ease-in-out infinite reverse;
}

@keyframes privacy-orb-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -24px, 0);
  }
}

/* Hero */
.refund-policy-hero {
  position: relative;
  z-index: 1;
  padding: 92px 0 74px;
}

.refund-policy-hero__content {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.refund-policy-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 9px 14px;
  border: 1px solid rgba(113, 56, 232, 0.14);
  border-radius: var(--sh-radius-pill);
  background: rgba(255, 255, 255, 0.8);
  color: var(--sh-primary-dark);
  box-shadow: var(--sh-shadow-xs);
  backdrop-filter: blur(14px);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.refund-policy-hero__eyebrow-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: var(--sh-primary-soft);
  color: var(--sh-primary);
}

.refund-policy-hero__title {
  margin: 0;
  color: var(--sh-text);
  font-size: clamp(3rem, 6vw, 5.6rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.98;
}

.refund-policy-hero__title span {
  display: block;
  margin-top: 12px;
  background: var(--sh-gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.refund-policy-hero__description {
  max-width: 780px;
  margin: 28px auto 0;
  color: var(--sh-text-secondary);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.9;
}

.refund-policy-hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 850px;
  margin: 42px auto 0;
}

.refund-policy-hero__meta-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 17px 18px;
  border: 1px solid rgba(218, 212, 228, 0.78);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(27, 18, 46, 0.07);
  text-align: left;
  backdrop-filter: blur(16px);
}

.refund-policy-hero__meta-item > span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--sh-gradient-soft);
  color: var(--sh-primary);
  font-size: 1rem;
}

.refund-policy-hero__meta-item small,
.refund-policy-hero__meta-item strong {
  display: block;
}
.refund-policy-hero__meta-item small {
  color: var(--sh-text-muted);
  font-size: 0.7rem;
}
.refund-policy-hero__meta-item strong {
  margin-top: 2px;
  color: var(--sh-text);
  font-size: 0.83rem;
  font-weight: 800;
}

/* Summary */
.refund-policy-overview {
  position: relative;
  z-index: 2;
  padding: 0 0 28px;
}
.refund-policy-overview__card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 28px 30px;
  border: 1px solid rgba(113, 56, 232, 0.13);
  border-radius: 25px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95),
    rgba(248, 245, 255, 0.92)
  );
  box-shadow: var(--sh-shadow-md);
}
.refund-policy-overview__icon {
  display: inline-flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  border-radius: 19px;
  background: var(--sh-gradient-primary);
  color: #fff;
  box-shadow: var(--sh-shadow-primary);
  font-size: 1.35rem;
}
.refund-policy-overview__content > span {
  color: var(--sh-primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.refund-policy-overview__content h2 {
  margin: 5px 0 0;
  color: var(--sh-text);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 850;
  letter-spacing: -0.045em;
}
.refund-policy-overview__content p {
  max-width: 740px;
  margin: 9px 0 0;
  color: var(--sh-text-secondary);
  font-size: 0.93rem;
  line-height: 1.75;
}
.refund-policy-overview__principles {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}
.refund-policy-overview__principles div {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius-pill);
  background: #fff;
  color: var(--sh-text-secondary);
  font-size: 0.74rem;
}
.refund-policy-overview__principles i {
  color: var(--sh-secondary-dark);
}

/* Search */
.refund-policy-search-section {
  position: relative;
  z-index: 2;
  padding: 24px 0 44px;
}
.refund-policy-search-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(420px, 1.25fr);
  align-items: center;
  gap: 28px;
  padding: 24px 26px;
  border: 1px solid var(--sh-border);
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--sh-shadow-sm);
  backdrop-filter: blur(16px);
}
.refund-policy-search-card__heading {
  display: flex;
  align-items: center;
  gap: 14px;
}
.refund-policy-search-card__icon {
  display: inline-flex;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: var(--sh-primary-soft);
  color: var(--sh-primary);
  font-size: 1.1rem;
}
.refund-policy-search-card__heading span {
  color: var(--sh-primary);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.refund-policy-search-card__heading h2 {
  margin: 3px 0 0;
  color: var(--sh-text);
  font-size: 1.15rem;
  font-weight: 850;
  letter-spacing: -0.025em;
}
.refund-policy-search {
  position: relative;
}
.refund-policy-search__leading {
  position: absolute;
  top: 50%;
  left: 17px;
  color: var(--sh-text-light);
  transform: translateY(-50%);
  pointer-events: none;
}
.refund-policy-search__input {
  width: 100%;
  min-height: 54px;
  padding: 13px 52px 13px 48px;
  border: 1px solid var(--sh-border);
  border-radius: 15px;
  background: var(--sh-surface-soft);
  color: var(--sh-text);
  outline: none;
  transition:
    border-color var(--sh-transition),
    box-shadow var(--sh-transition),
    background var(--sh-transition);
}
.refund-policy-search__input::placeholder {
  color: #9a94a5;
}
.refund-policy-search__input:focus {
  border-color: rgba(113, 56, 232, 0.35);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(113, 56, 232, 0.09);
}
.refund-policy-search__clear {
  position: absolute;
  top: 50%;
  right: 10px;
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 11px;
  background: var(--sh-primary-soft);
  color: var(--sh-primary);
  transform: translateY(-50%);
  cursor: pointer;
}
.refund-policy-search__status {
  grid-column: 2;
  margin: -17px 0 0;
  color: var(--sh-text-muted);
  font-size: 0.75rem;
}

/* Main layout */
.refund-policy-content-section {
  position: relative;
  z-index: 2;
  padding: 14px 0 52px;
}
.refund-policy-layout {
  display: grid;
  grid-template-columns: minmax(260px, 310px) minmax(0, 1fr);
  align-items: start;
  gap: 30px;
}
.refund-policy-sidebar {
  position: sticky;
  top: calc(var(--sh-navbar-height) + 22px);
  /* max-height: calc(100vh - var(--sh-navbar-height) - 42px); */
  overflow: hidden;
  border: 1px solid var(--sh-border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--sh-shadow-sm);
  backdrop-filter: blur(18px);
}
.refund-policy-sidebar__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 18px 15px;
  border-bottom: 1px solid var(--sh-border);
}
.refund-policy-sidebar__header-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--sh-gradient-soft);
  color: var(--sh-primary);
}
.refund-policy-sidebar__header small {
  display: block;
  color: var(--sh-primary);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.refund-policy-sidebar__header h2 {
  margin: 2px 0 0;
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: -0.025em;
}
.refund-policy-sidebar__navigation {
  display: flex;
  max-height: calc(100vh - var(--sh-navbar-height) - 245px);
  flex-direction: column;
  gap: 4px;
  padding: 10px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(113, 56, 232, 0.3) transparent;
}
.refund-policy-sidebar__navigation a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: var(--sh-text-secondary);
  transition:
    color var(--sh-transition-fast),
    background var(--sh-transition-fast),
    border-color var(--sh-transition-fast),
    transform var(--sh-transition-fast);
}
.refund-policy-sidebar__navigation a > span {
  display: inline-flex;
  width: 31px;
  height: 31px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #f4f1fa;
  color: var(--sh-text-muted);
  font-size: 0.67rem;
  font-weight: 800;
}
.refund-policy-sidebar__navigation strong,
.refund-policy-sidebar__navigation small {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.refund-policy-sidebar__navigation strong {
  color: inherit;
  font-size: 0.75rem;
  font-weight: 750;
}
.refund-policy-sidebar__navigation small {
  margin-top: 1px;
  color: var(--sh-text-muted);
  font-size: 0.62rem;
}
.refund-policy-sidebar__navigation a:hover {
  border-color: rgba(113, 56, 232, 0.1);
  background: rgba(113, 56, 232, 0.055);
  color: var(--sh-primary-dark);
  transform: translateX(2px);
}
.refund-policy-sidebar__navigation a.is-active {
  border-color: rgba(113, 56, 232, 0.14);
  background: linear-gradient(
    135deg,
    rgba(113, 56, 232, 0.13),
    rgba(22, 184, 166, 0.07)
  );
  color: var(--sh-primary-dark);
}
.refund-policy-sidebar__navigation a.is-active > span {
  background: var(--sh-gradient-primary);
  color: #fff;
  box-shadow: 0 8px 18px rgba(113, 56, 232, 0.22);
}
.refund-policy-sidebar__help {
  display: flex;
  gap: 11px;
  margin: 10px;
  padding: 13px;
  border: 1px solid rgba(22, 184, 166, 0.15);
  border-radius: 14px;
  background: var(--sh-primary-soft);
}
.refund-policy-sidebar__help > span {
  display: inline-flex;
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: #fff;
  color: var(--sh-secondary-dark);
}
.refund-policy-sidebar__help strong {
  color: #245e58;
  font-size: 0.75rem;
}
.refund-policy-sidebar__help p {
  margin: 3px 0 7px;
  color: #4f7772;
  font-size: 0.65rem;
  line-height: 1.5;
}
.refund-policy-sidebar__help a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--sh-secondary-dark);
  font-size: 0.67rem;
  font-weight: 800;
}

.refund-policy-article {
  min-width: 0;
}
.refund-section-card {
  position: relative;
  margin-bottom: 22px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--sh-border);
  border-radius: 22px;
  background: linear-gradient(145deg, #fff, #fcfbfe);
  box-shadow: 0 10px 32px rgba(31, 20, 52, 0.055);
  scroll-margin-top: calc(var(--sh-navbar-height) + 24px);
  transition:
    border-color var(--sh-transition),
    box-shadow var(--sh-transition),
    transform var(--sh-transition);
}
.refund-section-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--sh-gradient-primary);
  opacity: 0;
  transition: opacity var(--sh-transition);
}
.refund-section-card::after {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(113, 56, 232, 0.045);
  pointer-events: none;
}
.refund-section-card:hover {
  border-color: rgba(113, 56, 232, 0.18);
  box-shadow: 0 18px 44px rgba(31, 20, 52, 0.09);
  transform: translateY(-2px);
}
.refund-section-card:hover::before,
.refund-section-card--highlight::before {
  opacity: 1;
}
.refund-section-card--highlight {
  border-color: rgba(113, 56, 232, 0.17);
  background: linear-gradient(145deg, #fff, #faf7ff);
}
.refund-section-card--contact {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 1),
    rgba(232, 250, 247, 0.55)
  );
}

.refund-section-card__header {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--sh-border);
}
.refund-section-card__number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--sh-text);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 850;
}
.refund-section-card__icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--sh-primary-soft);
  color: var(--sh-primary);
  font-size: 1rem;
}
.refund-section-card__eyebrow {
  display: block;
  color: var(--sh-primary);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.refund-section-card__heading h2 {
  margin: 3px 0 0;
  color: var(--sh-text);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1.2;
}
.refund-section-card__heading p {
  margin: 6px 0 0;
  color: var(--sh-text-muted);
  font-size: 0.8rem;
  line-height: 1.6;
}
.refund-section-card__content {
  position: relative;
  z-index: 1;
  padding-top: 20px;
}
.refund-policy-copy {
  margin: 0 0 14px;
  color: var(--sh-text-secondary);
  font-size: 0.94rem;
  line-height: 1.85;
}
.refund-policy-copy:last-child {
  margin-bottom: 0;
}
.refund-policy-subheading {
  margin: 24px 0 9px;
  color: var(--sh-text);
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: -0.02em;
}
.refund-policy-subheading::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 16px;
  margin-right: 9px;
  border-radius: 999px;
  background: var(--sh-gradient-primary);
  vertical-align: -2px;
}
.refund-policy-inline-link {
  color: var(--sh-primary-dark);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(113, 56, 232, 0.25);
  text-underline-offset: 3px;
}
.refund-policy-inline-link:hover {
  color: var(--sh-primary);
}

.refund-policy-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 20px;
  padding: 0;
  list-style: none;
}
.refund-policy-list__item {
  position: relative;
  padding: 12px 14px 12px 43px;
  border: 1px solid var(--sh-border);
  border-radius: 13px;
  background: var(--sh-surface-soft);
  color: var(--sh-text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
}
.refund-policy-list__item::before {
  content: "\F26E";
  position: absolute;
  top: 12px;
  left: 13px;
  display: inline-flex;
  width: 21px;
  height: 21px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: var(--sh-secondary-soft);
  color: var(--sh-secondary-dark);
  font-family: "bootstrap-icons";
  font-size: 0.75rem;
}

.refund-note {
  display: flex;
  gap: 13px;
  margin: 22px 0 4px;
  padding: 16px 17px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 15px;
  background: #f4f8ff;
  color: #365475;
}
.refund-note > i {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--sh-info);
  font-size: 1.05rem;
}
.refund-note p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.7;
}
.refund-note--payment {
  border-color: rgba(113, 56, 232, 0.15);
  background: #f8f5ff;
  color: #594b77;
}
.refund-note--payment > i {
  color: var(--sh-primary);
}
.refund-note--security {
  border-color: rgba(22, 184, 166, 0.17);
  background: var(--sh-secondary-soft);
  color: #376e67;
}
.refund-note--security > i {
  color: var(--sh-secondary-dark);
}

.refund-policy-rights-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}
.refund-policy-rights-grid > div {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  column-gap: 11px;
  padding: 15px;
  border: 1px solid var(--sh-border);
  border-radius: 15px;
  background: #fff;
}
.refund-policy-rights-grid i {
  grid-row: 1 / span 2;
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--sh-primary-soft);
  color: var(--sh-primary);
}
.refund-policy-rights-grid strong {
  color: var(--sh-text);
  font-size: 0.8rem;
}
.refund-policy-rights-grid span {
  margin-top: 2px;
  color: var(--sh-text-muted);
  font-size: 0.68rem;
  line-height: 1.5;
}

.refund-contact-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(113, 56, 232, 0.14);
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(113, 56, 232, 0.08),
    rgba(22, 184, 166, 0.07)
  );
}
.refund-contact-card__icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #fff;
  color: var(--sh-primary);
  box-shadow: var(--sh-shadow-xs);
}
.refund-contact-card small {
  display: block;
  color: var(--sh-text-muted);
  font-size: 0.66rem;
}
.refund-contact-card a {
  display: inline-block;
  margin-top: 2px;
  color: var(--sh-primary-dark);
  font-size: 0.84rem;
  font-weight: 800;
  word-break: break-word;
}
.refund-contact-card > i {
  color: var(--sh-primary);
}

.refund-section-card__back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  padding: 8px 11px;
  border-radius: 10px;
  background: var(--sh-primary-soft);
  color: var(--sh-primary-dark);
  font-size: 0.7rem;
  font-weight: 800;
  transition:
    transform var(--sh-transition),
    background var(--sh-transition);
}
.refund-section-card__back:hover {
  background: #e7defc;
  color: var(--sh-primary-dark);
  transform: translateY(-1px);
}

.refund-policy-empty-state {
  padding: 52px 28px;
  border: 1px dashed rgba(113, 56, 232, 0.25);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
}
.refund-policy-empty-state > span {
  display: inline-flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  border-radius: 19px;
  background: var(--sh-primary-soft);
  color: var(--sh-primary);
  font-size: 1.35rem;
}
.refund-policy-empty-state h2 {
  margin: 17px 0 0;
  font-size: 1.45rem;
  font-weight: 850;
  letter-spacing: -0.04em;
}
.refund-policy-empty-state p {
  margin: 8px auto 0;
  color: var(--sh-text-muted);
}
.refund-policy-empty-state button {
  margin-top: 18px;
  padding: 10px 15px;
  border: 0;
  border-radius: 12px;
  background: var(--sh-gradient-primary);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
}

.refund-important-notice {
  display: flex;
  gap: 14px;
  margin-top: 26px;
  padding: 20px;
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 17px;
  background: #fff8e7;
  color: #6c4a08;
}
.refund-important-notice > span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: #fff;
  color: #c27a00;
}
.refund-important-notice strong {
  font-size: 0.84rem;
}
.refund-important-notice p {
  margin: 5px 0 0;
  font-size: 0.76rem;
  line-height: 1.7;
}

/* Final CTA */
.refund-policy-final-cta {
  position: relative;
  z-index: 2;
  padding: 38px 0 20px;
}
.refund-policy-final-cta__card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 30px 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  background: linear-gradient(135deg, #261348 0%, #44208a 52%, #136e70 100%);
  color: #fff;
  box-shadow: 0 25px 65px rgba(35, 20, 61, 0.22);
}
.refund-policy-final-cta__card::before {
  content: "";
  position: absolute;
  top: -100px;
  right: 12%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
}
.refund-policy-final-cta__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.11);
  font-size: 1.35rem;
}
.refund-policy-final-cta__content {
  position: relative;
  z-index: 1;
}
.refund-policy-final-cta__content > span {
  color: #d9c9ff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.refund-policy-final-cta__content h2 {
  margin: 4px 0 0;
  color: #fff;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 850;
  letter-spacing: -0.04em;
}
.refund-policy-final-cta__content p {
  max-width: 700px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
  line-height: 1.7;
}
.refund-policy-final-cta__button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 19px;
  border-radius: 14px;
  background: #fff;
  color: var(--sh-primary-deep);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  font-size: 0.82rem;
  font-weight: 850;
  transition:
    transform var(--sh-transition),
    box-shadow var(--sh-transition);
}
.refund-policy-final-cta__button:hover {
  color: var(--sh-primary-deep);
  transform: translateY(-3px);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.25);
}

[hidden] {
  display: none !important;
}

@media (max-width: 1199.98px) {
  .refund-policy-layout {
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 24px;
  }
  .refund-policy-overview__card {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .refund-policy-overview__principles {
    grid-column: 2;
    justify-content: flex-start;
  }
}

@media (max-width: 991.98px) {
  .refund-policy-hero {
    padding: 72px 0 58px;
  }
  .refund-policy-layout {
    grid-template-columns: 1fr;
  }
  .refund-policy-sidebar {
    position: relative;
    top: auto;
    max-height: none;
  }
  .refund-policy-sidebar__navigation {
    display: grid;
    max-height: 320px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .refund-policy-search-card {
    grid-template-columns: 1fr;
  }
  .refund-policy-search__status {
    grid-column: auto;
    margin: -13px 0 0;
  }
  .refund-policy-final-cta__card {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .refund-policy-final-cta__button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 767.98px) {
  .refund-policy-hero {
    padding: 58px 0 44px;
  }
  .refund-policy-hero__title {
    font-size: clamp(2.65rem, 13vw, 4.2rem);
  }
  .refund-policy-hero__meta {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .refund-policy-overview__card {
    grid-template-columns: 1fr;
    padding: 23px;
  }
  .refund-policy-overview__principles {
    grid-column: auto;
    justify-content: flex-start;
  }
  .refund-policy-search-card {
    padding: 20px;
  }
  .refund-policy-sidebar__navigation {
    grid-template-columns: 1fr;
    max-height: 350px;
  }
  .refund-section-card {
    padding: 22px 19px;
    border-radius: 18px;
  }
  .refund-section-card__header {
    grid-template-columns: auto auto;
  }
  .refund-section-card__heading {
    grid-column: 1 / -1;
  }
  .refund-policy-rights-grid {
    grid-template-columns: 1fr;
  }
  .refund-policy-final-cta__card {
    grid-template-columns: 1fr;
    padding: 25px 22px;
  }
  .refund-policy-final-cta__button {
    grid-column: auto;
    width: 100%;
  }
}

@media (max-width: 479.98px) {
  .refund-policy-hero__eyebrow {
    font-size: 0.65rem;
  }
  .refund-policy-hero__description {
    font-size: 0.94rem;
  }
  .refund-policy-overview__principles {
    align-items: stretch;
    flex-direction: column;
  }
  .refund-policy-overview__principles div {
    width: fit-content;
  }
  .refund-policy-search-card__heading {
    align-items: flex-start;
  }
  .refund-policy-search__input {
    font-size: 0.86rem;
  }
  .refund-section-card__number,
  .refund-section-card__icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }
  .refund-contact-card {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .refund-contact-card > i {
    display: none;
  }
  .refund-important-notice {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .refund-policy-page__orb {
    animation: none;
  }
  .refund-section-card:hover,
  .refund-policy-sidebar__navigation a:hover,
  .refund-policy-final-cta__button:hover {
    transform: none;
  }
}

/* =========================================================
   REFUND POLICY — PAGE-SPECIFIC COMPONENTS
========================================================= */

/* Compatibility fallbacks for projects that do not define soft semantic colors */
.refund-policy-page {
  --refund-success-soft: rgba(34, 160, 107, 0.1);
  --refund-danger-soft: rgba(220, 53, 69, 0.09);
  --refund-warning-soft: rgba(245, 158, 11, 0.11);
}

/* Quick policy status cards */
.refund-policy-status {
  position: relative;
  z-index: 2;
  padding: 4px 0 28px;
}

.refund-policy-status__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.refund-policy-status__card {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--sh-border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--sh-shadow-sm);
  backdrop-filter: blur(16px);
}

.refund-policy-status__icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 1.05rem;
}

.refund-policy-status__icon--success {
  background: var(--refund-success-soft);
  color: var(--sh-success);
}

.refund-policy-status__icon--danger {
  background: var(--refund-danger-soft);
  color: var(--sh-danger);
}

.refund-policy-status__icon--info {
  background: var(--sh-primary-soft);
  color: var(--sh-primary);
}

.refund-policy-status__card small,
.refund-policy-status__card h2,
.refund-policy-status__card p {
  display: block;
}

.refund-policy-status__card small {
  color: var(--sh-text-muted);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

.refund-policy-status__card h2 {
  margin: 4px 0 7px;
  color: var(--sh-text);
  font-size: 1rem;
  font-weight: 820;
  letter-spacing: -0.02em;
}

.refund-policy-status__card p {
  margin: 0;
  color: var(--sh-text-secondary);
  font-size: 0.77rem;
  line-height: 1.65;
}

/* Sidebar subtitle support */
.refund-policy-sidebar__navigation a > div {
  min-width: 0;
}

.refund-policy-sidebar__navigation a small {
  display: block;
  margin-top: 2px;
  color: var(--sh-text-muted);
  font-size: 0.62rem;
}

/* Section body copy */
.refund-section-card__content > p {
  margin: 0;
  color: var(--sh-text-secondary);
  font-size: 0.91rem;
  line-height: 1.82;
}

.refund-section-card__content > p + p,
.refund-section-card__content > p + ul,
.refund-section-card__content > p + .refund-note,
.refund-section-card__content > p + .refund-timeline,
.refund-section-card__content > p + .refund-contact-card {
  margin-top: 14px;
}

/* Lists */
.refund-policy-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.refund-policy-list li {
  position: relative;
  padding-left: 31px;
  color: var(--sh-text-secondary);
  font-size: 0.88rem;
  line-height: 1.72;
}

.refund-policy-list li::before {
  content: "\F26E";
  position: absolute;
  top: 2px;
  left: 0;
  display: inline-flex;
  width: 21px;
  height: 21px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: var(--sh-secondary-soft);
  color: var(--sh-secondary-dark);
  font-family: "bootstrap-icons";
  font-size: 0.72rem;
}

/* Information notes */
.refund-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: flex-start;
  gap: 11px;
  margin-top: 16px;
  padding: 14px 15px;
  border: 1px solid transparent;
  border-radius: 14px;
}

.refund-note i {
  margin-top: 2px;
}

.refund-note p {
  margin: 0 !important;
  font-size: 0.82rem;
  line-height: 1.68;
}

.refund-note--success {
  border-color: rgba(34, 160, 107, 0.18);
  background: var(--refund-success-soft);
  color: #24734f;
}

.refund-note--warning {
  border-color: rgba(245, 158, 11, 0.22);
  background: var(--refund-warning-soft);
  color: #805b13;
}

.refund-note--danger {
  border-color: rgba(220, 53, 69, 0.18);
  background: var(--refund-danger-soft);
  color: #8b3540;
}

.refund-note--information,
.refund-note--payment,
.refund-note--security {
  border-color: rgba(113, 56, 232, 0.16);
  background: var(--sh-primary-soft);
  color: var(--sh-primary-dark);
}

/* Refund process timeline */
.refund-timeline {
  display: grid;
  gap: 11px;
  margin-top: 17px;
}

.refund-timeline__step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--sh-border);
  border-radius: 14px;
  background: var(--sh-surface-soft);
}

.refund-timeline__step > span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: var(--sh-primary-soft);
  color: var(--sh-primary);
  font-size: 0.67rem;
  font-weight: 850;
}

.refund-timeline__step strong {
  display: block;
  color: var(--sh-text);
  font-size: 0.81rem;
}

.refund-timeline__step p {
  margin: 4px 0 0 !important;
  color: var(--sh-text-secondary);
  font-size: 0.75rem;
  line-height: 1.6;
}

/* Contact card */
.refund-contact-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid var(--sh-border);
  border-radius: 15px;
  background: var(--sh-surface-soft);
}

.refund-contact-card__icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--sh-primary-soft);
  color: var(--sh-primary);
}

.refund-contact-card small,
.refund-contact-card strong {
  display: block;
}

.refund-contact-card small {
  color: var(--sh-text-muted);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.refund-contact-card strong {
  margin-top: 2px;
  color: var(--sh-text);
  font-size: 0.87rem;
}

.refund-contact-card p {
  margin: 4px 0 0 !important;
  color: var(--sh-text-secondary);
  font-size: 0.75rem;
  line-height: 1.55;
}

.refund-contact-card a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--sh-gradient-primary);
  color: #fff;
  box-shadow: 0 10px 22px rgba(113, 56, 232, 0.2);
  font-size: 0.75rem;
  font-weight: 800;
  white-space: nowrap;
}

/* Important notice */
.refund-important-notice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 15px;
  margin-top: 24px;
  padding: 22px;
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.09),
    rgba(255, 255, 255, 0.95)
  );
  box-shadow: var(--sh-shadow-sm);
}

.refund-important-notice__icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: var(--refund-warning-soft);
  color: var(--sh-warning);
  font-size: 1.15rem;
}

.refund-important-notice__content small {
  color: var(--sh-warning);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.refund-important-notice__content h2 {
  margin: 3px 0 7px;
  color: var(--sh-text);
  font-size: 1.14rem;
  font-weight: 820;
}

.refund-important-notice__content p {
  margin: 0;
  color: var(--sh-text-secondary);
  font-size: 0.82rem;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 991.98px) {
  .refund-policy-status__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .refund-contact-card {
    grid-template-columns: 1fr;
  }

  .refund-contact-card a {
    width: 100%;
  }
}

/* =========================================================
   SMART HIRING — TERMS & CONDITIONS PAGE
   Add this file after your existing public style.css
========================================================= */

.terms-page {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 5% 3%, rgba(113, 56, 232, 0.08), transparent 24%),
    radial-gradient(
      circle at 95% 12%,
      rgba(22, 184, 166, 0.07),
      transparent 22%
    ),
    linear-gradient(180deg, #fcfbff 0%, var(--sh-bg) 35%, #f8f9fd 100%);
}

.terms-page__grid {
  position: absolute;
  inset: 0 0 auto;
  height: 760px;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(113, 56, 232, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(113, 56, 232, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
}

.terms-page__orb {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(6px);
}

.terms-page__orb--one {
  top: 110px;
  left: -180px;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(113, 56, 232, 0.16),
    transparent 68%
  );
  animation: privacy-orb-float 10s ease-in-out infinite;
}

.terms-page__orb--two {
  top: 300px;
  right: -220px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(22, 184, 166, 0.13),
    transparent 68%
  );
  animation: privacy-orb-float 12s ease-in-out infinite reverse;
}

@keyframes privacy-orb-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -24px, 0);
  }
}

/* Hero */
.terms-hero {
  position: relative;
  z-index: 1;
  padding: 92px 0 74px;
}

.terms-hero__content {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.terms-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 9px 14px;
  border: 1px solid rgba(113, 56, 232, 0.14);
  border-radius: var(--sh-radius-pill);
  background: rgba(255, 255, 255, 0.8);
  color: var(--sh-primary-dark);
  box-shadow: var(--sh-shadow-xs);
  backdrop-filter: blur(14px);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.terms-hero__eyebrow-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: var(--sh-primary-soft);
  color: var(--sh-primary);
}

.terms-hero__title {
  margin: 0;
  color: var(--sh-text);
  font-size: clamp(3rem, 6vw, 5.6rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.98;
}

.terms-hero__title span {
  display: block;
  margin-top: 12px;
  background: var(--sh-gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.terms-hero__description {
  max-width: 780px;
  margin: 28px auto 0;
  color: var(--sh-text-secondary);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.9;
}

.terms-hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 850px;
  margin: 42px auto 0;
}

.terms-hero__meta-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 17px 18px;
  border: 1px solid rgba(218, 212, 228, 0.78);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(27, 18, 46, 0.07);
  text-align: left;
  backdrop-filter: blur(16px);
}

.terms-hero__meta-item > span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--sh-gradient-soft);
  color: var(--sh-primary);
  font-size: 1rem;
}

.terms-hero__meta-item small,
.terms-hero__meta-item strong {
  display: block;
}
.terms-hero__meta-item small {
  color: var(--sh-text-muted);
  font-size: 0.7rem;
}
.terms-hero__meta-item strong {
  margin-top: 2px;
  color: var(--sh-text);
  font-size: 0.83rem;
  font-weight: 800;
}

/* Summary */
.terms-summary {
  position: relative;
  z-index: 2;
  padding: 0 0 28px;
}
.terms-summary__card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 28px 30px;
  border: 1px solid rgba(113, 56, 232, 0.13);
  border-radius: 25px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95),
    rgba(248, 245, 255, 0.92)
  );
  box-shadow: var(--sh-shadow-md);
}
.terms-summary__icon {
  display: inline-flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  border-radius: 19px;
  background: var(--sh-gradient-primary);
  color: #fff;
  box-shadow: var(--sh-shadow-primary);
  font-size: 1.35rem;
}
.terms-summary__content > span {
  color: var(--sh-primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.terms-summary__content h2 {
  margin: 5px 0 0;
  color: var(--sh-text);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 850;
  letter-spacing: -0.045em;
}
.terms-summary__content p {
  max-width: 740px;
  margin: 9px 0 0;
  color: var(--sh-text-secondary);
  font-size: 0.93rem;
  line-height: 1.75;
}
.terms-summary__principles {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}
.terms-summary__principles div {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius-pill);
  background: #fff;
  color: var(--sh-text-secondary);
  font-size: 0.74rem;
}
.terms-summary__principles i {
  color: var(--sh-secondary-dark);
}

/* Search */
.terms-search-section {
  position: relative;
  z-index: 2;
  padding: 24px 0 44px;
}
.terms-search-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(420px, 1.25fr);
  align-items: center;
  gap: 28px;
  padding: 24px 26px;
  border: 1px solid var(--sh-border);
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--sh-shadow-sm);
  backdrop-filter: blur(16px);
}
.terms-search-card__heading {
  display: flex;
  align-items: center;
  gap: 14px;
}
.terms-search-card__icon {
  display: inline-flex;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: var(--sh-primary-soft);
  color: var(--sh-primary);
  font-size: 1.1rem;
}
.terms-search-card__heading span {
  color: var(--sh-primary);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.terms-search-card__heading h2 {
  margin: 3px 0 0;
  color: var(--sh-text);
  font-size: 1.15rem;
  font-weight: 850;
  letter-spacing: -0.025em;
}
.terms-search {
  position: relative;
}
.terms-search__leading {
  position: absolute;
  top: 50%;
  left: 17px;
  color: var(--sh-text-light);
  transform: translateY(-50%);
  pointer-events: none;
}
.terms-search__input {
  width: 100%;
  min-height: 54px;
  padding: 13px 52px 13px 48px;
  border: 1px solid var(--sh-border);
  border-radius: 15px;
  background: var(--sh-surface-soft);
  color: var(--sh-text);
  outline: none;
  transition:
    border-color var(--sh-transition),
    box-shadow var(--sh-transition),
    background var(--sh-transition);
}
.terms-search__input::placeholder {
  color: #9a94a5;
}
.terms-search__input:focus {
  border-color: rgba(113, 56, 232, 0.35);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(113, 56, 232, 0.09);
}
.terms-search__clear {
  position: absolute;
  top: 50%;
  right: 10px;
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 11px;
  background: var(--sh-primary-soft);
  color: var(--sh-primary);
  transform: translateY(-50%);
  cursor: pointer;
}
.terms-search__status {
  grid-column: 2;
  margin: -17px 0 0;
  color: var(--sh-text-muted);
  font-size: 0.75rem;
}

/* Main layout */
.terms-content-section {
  position: relative;
  z-index: 2;
  padding: 14px 0 52px;
}
.terms-layout {
  display: grid;
  grid-template-columns: minmax(260px, 310px) minmax(0, 1fr);
  align-items: start;
  gap: 30px;
}
.terms-sidebar {
  position: sticky;
  top: calc(var(--sh-navbar-height) + 22px);
  /* max-height: calc(100vh - var(--sh-navbar-height) - 42px); */
  overflow: hidden;
  border: 1px solid var(--sh-border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--sh-shadow-sm);
  backdrop-filter: blur(18px);
}
.terms-sidebar__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 18px 15px;
  border-bottom: 1px solid var(--sh-border);
}
.terms-sidebar__header-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--sh-gradient-soft);
  color: var(--sh-primary);
}
.terms-sidebar__header small {
  display: block;
  color: var(--sh-primary);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.terms-sidebar__header h2 {
  margin: 2px 0 0;
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: -0.025em;
}
.terms-sidebar__navigation {
  display: flex;
  max-height: calc(100vh - var(--sh-navbar-height) - 245px);
  flex-direction: column;
  gap: 4px;
  padding: 10px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(113, 56, 232, 0.3) transparent;
}
.terms-sidebar__navigation a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: var(--sh-text-secondary);
  transition:
    color var(--sh-transition-fast),
    background var(--sh-transition-fast),
    border-color var(--sh-transition-fast),
    transform var(--sh-transition-fast);
}
.terms-sidebar__navigation a > span {
  display: inline-flex;
  width: 31px;
  height: 31px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #f4f1fa;
  color: var(--sh-text-muted);
  font-size: 0.67rem;
  font-weight: 800;
}
.terms-sidebar__navigation strong,
.terms-sidebar__navigation small {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.terms-sidebar__navigation strong {
  color: inherit;
  font-size: 0.75rem;
  font-weight: 750;
}
.terms-sidebar__navigation small {
  margin-top: 1px;
  color: var(--sh-text-muted);
  font-size: 0.62rem;
}
.terms-sidebar__navigation a:hover {
  border-color: rgba(113, 56, 232, 0.1);
  background: rgba(113, 56, 232, 0.055);
  color: var(--sh-primary-dark);
  transform: translateX(2px);
}
.terms-sidebar__navigation a.is-active {
  border-color: rgba(113, 56, 232, 0.14);
  background: linear-gradient(
    135deg,
    rgba(113, 56, 232, 0.13),
    rgba(22, 184, 166, 0.07)
  );
  color: var(--sh-primary-dark);
}
.terms-sidebar__navigation a.is-active > span {
  background: var(--sh-gradient-primary);
  color: #fff;
  box-shadow: 0 8px 18px rgba(113, 56, 232, 0.22);
}
.terms-sidebar__help {
  display: flex;
  gap: 11px;
  margin: 10px;
  padding: 13px;
  border: 1px solid rgba(22, 184, 166, 0.15);
  border-radius: 14px;
  background: var(--sh-primary-soft);
}
.terms-sidebar__help > span {
  display: inline-flex;
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: #fff;
  color: var(--sh-secondary-dark);
}
.terms-sidebar__help strong {
  color: #245e58;
  font-size: 0.75rem;
}
.terms-sidebar__help p {
  margin: 3px 0 7px;
  color: #4f7772;
  font-size: 0.65rem;
  line-height: 1.5;
}
.terms-sidebar__help a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--sh-secondary-dark);
  font-size: 0.67rem;
  font-weight: 800;
}

.terms-article {
  min-width: 0;
}
.terms-section-card {
  position: relative;
  margin-bottom: 22px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--sh-border);
  border-radius: 22px;
  background: linear-gradient(145deg, #fff, #fcfbfe);
  box-shadow: 0 10px 32px rgba(31, 20, 52, 0.055);
  scroll-margin-top: calc(var(--sh-navbar-height) + 24px);
  transition:
    border-color var(--sh-transition),
    box-shadow var(--sh-transition),
    transform var(--sh-transition);
}
.terms-section-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--sh-gradient-primary);
  opacity: 0;
  transition: opacity var(--sh-transition);
}
.terms-section-card::after {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(113, 56, 232, 0.045);
  pointer-events: none;
}
.terms-section-card:hover {
  border-color: rgba(113, 56, 232, 0.18);
  box-shadow: 0 18px 44px rgba(31, 20, 52, 0.09);
  transform: translateY(-2px);
}
.terms-section-card:hover::before,
.terms-section-card--highlight::before {
  opacity: 1;
}
.terms-section-card--highlight {
  border-color: rgba(113, 56, 232, 0.17);
  background: linear-gradient(145deg, #fff, #faf7ff);
}
.terms-section-card--contact {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 1),
    rgba(232, 250, 247, 0.55)
  );
}

.terms-section-card__header {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--sh-border);
}
.terms-section-card__number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--sh-text);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 850;
}
.terms-section-card__icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--sh-primary-soft);
  color: var(--sh-primary);
  font-size: 1rem;
}
.terms-section-card__eyebrow {
  display: block;
  color: var(--sh-primary);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.terms-section-card__heading h2 {
  margin: 3px 0 0;
  color: var(--sh-text);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1.2;
}
.terms-section-card__heading p {
  margin: 6px 0 0;
  color: var(--sh-text-muted);
  font-size: 0.8rem;
  line-height: 1.6;
}
.terms-section-card__content {
  position: relative;
  z-index: 1;
  padding-top: 20px;
}
.terms-copy {
  margin: 0 0 14px;
  color: var(--sh-text-secondary);
  font-size: 0.94rem;
  line-height: 1.85;
}
.terms-copy:last-child {
  margin-bottom: 0;
}
.terms-subheading {
  margin: 24px 0 9px;
  color: var(--sh-text);
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: -0.02em;
}
.terms-subheading::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 16px;
  margin-right: 9px;
  border-radius: 999px;
  background: var(--sh-gradient-primary);
  vertical-align: -2px;
}
.terms-inline-link {
  color: var(--sh-primary-dark);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(113, 56, 232, 0.25);
  text-underline-offset: 3px;
}
.terms-inline-link:hover {
  color: var(--sh-primary);
}

.terms-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 20px;
  padding: 0;
  list-style: none;
}
.terms-list__item {
  position: relative;
  padding: 12px 14px 12px 43px;
  border: 1px solid var(--sh-border);
  border-radius: 13px;
  background: var(--sh-surface-soft);
  color: var(--sh-text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
}
.terms-list__item::before {
  content: "\F26E";
  position: absolute;
  top: 12px;
  left: 13px;
  display: inline-flex;
  width: 21px;
  height: 21px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: var(--sh-secondary-soft);
  color: var(--sh-secondary-dark);
  font-family: "bootstrap-icons";
  font-size: 0.75rem;
}

.privacy-note {
  display: flex;
  gap: 13px;
  margin: 22px 0 4px;
  padding: 16px 17px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 15px;
  background: #f4f8ff;
  color: #365475;
}
.privacy-note > i {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--sh-info);
  font-size: 1.05rem;
}
.privacy-note p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.7;
}
.privacy-note--payment {
  border-color: rgba(113, 56, 232, 0.15);
  background: #f8f5ff;
  color: #594b77;
}
.privacy-note--payment > i {
  color: var(--sh-primary);
}
.privacy-note--security {
  border-color: rgba(22, 184, 166, 0.17);
  background: var(--sh-secondary-soft);
  color: #376e67;
}
.privacy-note--security > i {
  color: var(--sh-secondary-dark);
}

.terms-rights-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}
.terms-rights-grid > div {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  column-gap: 11px;
  padding: 15px;
  border: 1px solid var(--sh-border);
  border-radius: 15px;
  background: #fff;
}
.terms-rights-grid i {
  grid-row: 1 / span 2;
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--sh-primary-soft);
  color: var(--sh-primary);
}
.terms-rights-grid strong {
  color: var(--sh-text);
  font-size: 0.8rem;
}
.terms-rights-grid span {
  margin-top: 2px;
  color: var(--sh-text-muted);
  font-size: 0.68rem;
  line-height: 1.5;
}

.privacy-contact-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(113, 56, 232, 0.14);
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(113, 56, 232, 0.08),
    rgba(22, 184, 166, 0.07)
  );
}
.privacy-contact-card__icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #fff;
  color: var(--sh-primary);
  box-shadow: var(--sh-shadow-xs);
}
.privacy-contact-card small {
  display: block;
  color: var(--sh-text-muted);
  font-size: 0.66rem;
}
.privacy-contact-card a {
  display: inline-block;
  margin-top: 2px;
  color: var(--sh-primary-dark);
  font-size: 0.84rem;
  font-weight: 800;
  word-break: break-word;
}
.privacy-contact-card > i {
  color: var(--sh-primary);
}

.terms-section-card__back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  padding: 8px 11px;
  border-radius: 10px;
  background: var(--sh-primary-soft);
  color: var(--sh-primary-dark);
  font-size: 0.7rem;
  font-weight: 800;
  transition:
    transform var(--sh-transition),
    background var(--sh-transition);
}
.terms-section-card__back:hover {
  background: #e7defc;
  color: var(--sh-primary-dark);
  transform: translateY(-1px);
}

.terms-empty-state {
  padding: 52px 28px;
  border: 1px dashed rgba(113, 56, 232, 0.25);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
}
.terms-empty-state > span {
  display: inline-flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  border-radius: 19px;
  background: var(--sh-primary-soft);
  color: var(--sh-primary);
  font-size: 1.35rem;
}
.terms-empty-state h2 {
  margin: 17px 0 0;
  font-size: 1.45rem;
  font-weight: 850;
  letter-spacing: -0.04em;
}
.terms-empty-state p {
  margin: 8px auto 0;
  color: var(--sh-text-muted);
}
.terms-empty-state button {
  margin-top: 18px;
  padding: 10px 15px;
  border: 0;
  border-radius: 12px;
  background: var(--sh-gradient-primary);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
}

.terms-important-notice {
  display: flex;
  gap: 14px;
  margin-top: 26px;
  padding: 20px;
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 17px;
  background: #fff8e7;
  color: #6c4a08;
}
.terms-important-notice > span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: #fff;
  color: #c27a00;
}
.terms-important-notice strong {
  font-size: 0.84rem;
}
.terms-important-notice p {
  margin: 5px 0 0;
  font-size: 0.76rem;
  line-height: 1.7;
}

/* Final CTA */
.terms-final-cta {
  position: relative;
  z-index: 2;
  padding: 38px 0 20px;
}
.terms-final-cta__card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 30px 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  background: linear-gradient(135deg, #261348 0%, #44208a 52%, #136e70 100%);
  color: #fff;
  box-shadow: 0 25px 65px rgba(35, 20, 61, 0.22);
}
.terms-final-cta__card::before {
  content: "";
  position: absolute;
  top: -100px;
  right: 12%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
}
.terms-final-cta__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.11);
  font-size: 1.35rem;
}
.terms-final-cta__content {
  position: relative;
  z-index: 1;
}
.terms-final-cta__content > span {
  color: #d9c9ff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.terms-final-cta__content h2 {
  margin: 4px 0 0;
  color: #fff;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 850;
  letter-spacing: -0.04em;
}
.terms-final-cta__content p {
  max-width: 700px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
  line-height: 1.7;
}
.terms-final-cta__button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 19px;
  border-radius: 14px;
  background: #fff;
  color: var(--sh-primary-deep);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  font-size: 0.82rem;
  font-weight: 850;
  transition:
    transform var(--sh-transition),
    box-shadow var(--sh-transition);
}
.terms-final-cta__button:hover {
  color: var(--sh-primary-deep);
  transform: translateY(-3px);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.25);
}

[hidden] {
  display: none !important;
}

@media (max-width: 1199.98px) {
  .terms-layout {
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 24px;
  }
  .terms-summary__card {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .terms-summary__principles {
    grid-column: 2;
    justify-content: flex-start;
  }
}

@media (max-width: 991.98px) {
  .terms-hero {
    padding: 72px 0 58px;
  }
  .terms-layout {
    grid-template-columns: 1fr;
  }
  .terms-sidebar {
    position: relative;
    top: auto;
    max-height: none;
  }
  .terms-sidebar__navigation {
    display: grid;
    max-height: 320px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .terms-search-card {
    grid-template-columns: 1fr;
  }
  .terms-search__status {
    grid-column: auto;
    margin: -13px 0 0;
  }
  .terms-final-cta__card {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .terms-final-cta__button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 767.98px) {
  .terms-hero {
    padding: 58px 0 44px;
  }
  .terms-hero__title {
    font-size: clamp(2.65rem, 13vw, 4.2rem);
  }
  .terms-hero__meta {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .terms-summary__card {
    grid-template-columns: 1fr;
    padding: 23px;
  }
  .terms-summary__principles {
    grid-column: auto;
    justify-content: flex-start;
  }
  .terms-search-card {
    padding: 20px;
  }
  .terms-sidebar__navigation {
    grid-template-columns: 1fr;
    max-height: 350px;
  }
  .terms-section-card {
    padding: 22px 19px;
    border-radius: 18px;
  }
  .terms-section-card__header {
    grid-template-columns: auto auto;
  }
  .terms-section-card__heading {
    grid-column: 1 / -1;
  }
  .terms-rights-grid {
    grid-template-columns: 1fr;
  }
  .terms-final-cta__card {
    grid-template-columns: 1fr;
    padding: 25px 22px;
  }
  .terms-final-cta__button {
    grid-column: auto;
    width: 100%;
  }
}

@media (max-width: 479.98px) {
  .terms-hero__eyebrow {
    font-size: 0.65rem;
  }
  .terms-hero__description {
    font-size: 0.94rem;
  }
  .terms-summary__principles {
    align-items: stretch;
    flex-direction: column;
  }
  .terms-summary__principles div {
    width: fit-content;
  }
  .terms-search-card__heading {
    align-items: flex-start;
  }
  .terms-search__input {
    font-size: 0.86rem;
  }
  .terms-section-card__number,
  .terms-section-card__icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }
  .privacy-contact-card {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .privacy-contact-card > i {
    display: none;
  }
  .terms-important-notice {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .terms-page__orb {
    animation: none;
  }
  .terms-section-card:hover,
  .terms-sidebar__navigation a:hover,
  .terms-final-cta__button:hover {
    transform: none;
  }
}

/* =========================================================
   TERMS & CONDITIONS — PAGE-SPECIFIC CONTENT
========================================================= */

.terms-page {
  --terms-warning-soft: rgba(245, 158, 11, 0.11);
  --terms-danger-soft: rgba(220, 53, 69, 0.09);
}

/* Intro notice */
.terms-intro-notice {
  position: relative;
  z-index: 2;
  padding: 0 0 30px;
}

.terms-intro-notice__card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  padding: 23px;
  border: 1px solid rgba(113, 56, 232, 0.15);
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(113, 56, 232, 0.08),
    rgba(255, 255, 255, 0.95)
  );
  box-shadow: var(--sh-shadow-sm);
}

.terms-intro-notice__icon {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: var(--sh-primary-soft);
  color: var(--sh-primary);
  font-size: 1.15rem;
}

.terms-intro-notice__card > div > span {
  color: var(--sh-primary);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.terms-intro-notice__card h2 {
  margin: 4px 0 8px;
  color: var(--sh-text);
  font-size: 1.18rem;
  font-weight: 820;
}

.terms-intro-notice__card p {
  margin: 0;
  color: var(--sh-text-secondary);
  font-size: 0.84rem;
  line-height: 1.75;
}

/* Sidebar subtitles */
.terms-sidebar__navigation a > div {
  min-width: 0;
}

.terms-sidebar__navigation a small {
  display: block;
  margin-top: 2px;
  color: var(--sh-text-muted);
  font-size: 0.62rem;
}

/* Sidebar support card */
.terms-sidebar__help {
  display: flex;
  gap: 11px;
  margin: 10px;
  padding: 13px;
  border: 1px solid rgba(22, 184, 166, 0.15);
  border-radius: 14px;
  background: var(--sh-primary-soft);
}
.terms-sidebar__help > span {
  display: inline-flex;
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: #fff;
  color: var(--sh-secondary-dark);
}
.terms-sidebar__help strong {
  color: #245e58;
  font-size: 0.75rem;
}
.terms-sidebar__help p {
  margin: 3px 0 7px;
  color: #4f7772;
  font-size: 0.65rem;
  line-height: 1.5;
}
.terms-sidebar__help a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--sh-secondary-dark);
  font-size: 0.67rem;
  font-weight: 800;
}

/* Main text */
.terms-section-card__content > p {
  margin: 0;
  color: var(--sh-text-secondary);
  font-size: 0.91rem;
  line-height: 1.82;
}

.terms-section-card__content > p + p,
.terms-section-card__content > p + ul,
.terms-section-card__content > p + ol {
  margin-top: 14px;
}

.terms-section-card__content ul,
.terms-section-card__content ol {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.terms-section-card__content li {
  position: relative;
  padding-left: 31px;
  color: var(--sh-text-secondary);
  font-size: 0.88rem;
  line-height: 1.72;
}

.terms-section-card__content li::before {
  content: "\F26E";
  position: absolute;
  top: 2px;
  left: 0;
  display: inline-flex;
  width: 21px;
  height: 21px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: var(--sh-secondary-soft);
  color: var(--sh-secondary-dark);
  font-family: "bootstrap-icons";
  font-size: 0.72rem;
}

/* Important final notice */
.terms-important-notice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 15px;
  margin-top: 24px;
  padding: 22px;
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.09),
    rgba(255, 255, 255, 0.95)
  );
  box-shadow: var(--sh-shadow-sm);
}

.terms-important-notice__icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: var(--terms-warning-soft);
  color: var(--sh-warning);
  font-size: 1.15rem;
}

.terms-important-notice__content small {
  color: var(--sh-warning);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.terms-important-notice__content h2 {
  margin: 3px 0 7px;
  color: var(--sh-text);
  font-size: 1.14rem;
  font-weight: 820;
}

.terms-important-notice__content p {
  margin: 0;
  color: var(--sh-text-secondary);
  font-size: 0.82rem;
  line-height: 1.7;
}

@media (max-width: 767.98px) {
  .terms-intro-notice__card,
  .terms-important-notice {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   SMART HIRING — ACCESSIBILITY STATEMENT PAGE
   Add this file after your existing public style.css
========================================================= */

.accessibility-page {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 5% 3%, rgba(113, 56, 232, 0.08), transparent 24%),
    radial-gradient(
      circle at 95% 12%,
      rgba(22, 184, 166, 0.07),
      transparent 22%
    ),
    linear-gradient(180deg, #fcfbff 0%, var(--sh-bg) 35%, #f8f9fd 100%);
}

.accessibility-page__grid {
  position: absolute;
  inset: 0 0 auto;
  height: 760px;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(113, 56, 232, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(113, 56, 232, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
}

.accessibility-page__orb {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(6px);
}

.accessibility-page__orb--one {
  top: 110px;
  left: -180px;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(113, 56, 232, 0.16),
    transparent 68%
  );
  animation: privacy-orb-float 10s ease-in-out infinite;
}

.accessibility-page__orb--two {
  top: 300px;
  right: -220px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(22, 184, 166, 0.13),
    transparent 68%
  );
  animation: privacy-orb-float 12s ease-in-out infinite reverse;
}

@keyframes privacy-orb-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -24px, 0);
  }
}

/* Hero */
.accessibility-hero {
  position: relative;
  z-index: 1;
  padding: 92px 0 74px;
}

.accessibility-hero__content {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.accessibility-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 9px 14px;
  border: 1px solid rgba(113, 56, 232, 0.14);
  border-radius: var(--sh-radius-pill);
  background: rgba(255, 255, 255, 0.8);
  color: var(--sh-primary-dark);
  box-shadow: var(--sh-shadow-xs);
  backdrop-filter: blur(14px);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.accessibility-hero__eyebrow-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: var(--sh-primary-soft);
  color: var(--sh-primary);
}

.accessibility-hero__title {
  margin: 0;
  color: var(--sh-text);
  font-size: clamp(3rem, 6vw, 5.6rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.98;
}

.accessibility-hero__title span {
  display: block;
  margin-top: 12px;
  background: var(--sh-gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.accessibility-hero__description {
  max-width: 780px;
  margin: 28px auto 0;
  color: var(--sh-text-secondary);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.9;
}

.accessibility-hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 850px;
  margin: 42px auto 0;
}

.accessibility-hero__meta-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 17px 18px;
  border: 1px solid rgba(218, 212, 228, 0.78);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(27, 18, 46, 0.07);
  text-align: left;
  backdrop-filter: blur(16px);
}

.accessibility-hero__meta-item > span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--sh-gradient-soft);
  color: var(--sh-primary);
  font-size: 1rem;
}

.accessibility-hero__meta-item small,
.accessibility-hero__meta-item strong {
  display: block;
}
.accessibility-hero__meta-item small {
  color: var(--sh-text-muted);
  font-size: 0.7rem;
}
.accessibility-hero__meta-item strong {
  margin-top: 2px;
  color: var(--sh-text);
  font-size: 0.83rem;
  font-weight: 800;
}

/* Summary */
.accessibility-summary {
  position: relative;
  z-index: 2;
  padding: 0 0 28px;
}
.accessibility-summary__card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 28px 30px;
  border: 1px solid rgba(113, 56, 232, 0.13);
  border-radius: 25px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95),
    rgba(248, 245, 255, 0.92)
  );
  box-shadow: var(--sh-shadow-md);
}
.accessibility-summary__icon {
  display: inline-flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  border-radius: 19px;
  background: var(--sh-gradient-primary);
  color: #fff;
  box-shadow: var(--sh-shadow-primary);
  font-size: 1.35rem;
}
.accessibility-summary__content > span {
  color: var(--sh-primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.accessibility-summary__content h2 {
  margin: 5px 0 0;
  color: var(--sh-text);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 850;
  letter-spacing: -0.045em;
}
.accessibility-summary__content p {
  max-width: 740px;
  margin: 9px 0 0;
  color: var(--sh-text-secondary);
  font-size: 0.93rem;
  line-height: 1.75;
}
.accessibility-summary__principles {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}
.accessibility-summary__principles div {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius-pill);
  background: #fff;
  color: var(--sh-text-secondary);
  font-size: 0.74rem;
}
.accessibility-summary__principles i {
  color: var(--sh-secondary-dark);
}

/* Search */
.accessibility-search-section {
  position: relative;
  z-index: 2;
  padding: 24px 0 44px;
}
.accessibility-search-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(420px, 1.25fr);
  align-items: center;
  gap: 28px;
  padding: 24px 26px;
  border: 1px solid var(--sh-border);
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--sh-shadow-sm);
  backdrop-filter: blur(16px);
}
.accessibility-search-card__heading {
  display: flex;
  align-items: center;
  gap: 14px;
}
.accessibility-search-card__icon {
  display: inline-flex;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: var(--sh-primary-soft);
  color: var(--sh-primary);
  font-size: 1.1rem;
}
.accessibility-search-card__heading span {
  color: var(--sh-primary);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.accessibility-search-card__heading h2 {
  margin: 3px 0 0;
  color: var(--sh-text);
  font-size: 1.15rem;
  font-weight: 850;
  letter-spacing: -0.025em;
}
.accessibility-search {
  position: relative;
}
.accessibility-search__leading {
  position: absolute;
  top: 50%;
  left: 17px;
  color: var(--sh-text-light);
  transform: translateY(-50%);
  pointer-events: none;
}
.accessibility-search__input {
  width: 100%;
  min-height: 54px;
  padding: 13px 52px 13px 48px;
  border: 1px solid var(--sh-border);
  border-radius: 15px;
  background: var(--sh-surface-soft);
  color: var(--sh-text);
  outline: none;
  transition:
    border-color var(--sh-transition),
    box-shadow var(--sh-transition),
    background var(--sh-transition);
}
.accessibility-search__input::placeholder {
  color: #9a94a5;
}
.accessibility-search__input:focus {
  border-color: rgba(113, 56, 232, 0.35);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(113, 56, 232, 0.09);
}
.accessibility-search__clear {
  position: absolute;
  top: 50%;
  right: 10px;
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 11px;
  background: var(--sh-primary-soft);
  color: var(--sh-primary);
  transform: translateY(-50%);
  cursor: pointer;
}
.accessibility-search__status {
  grid-column: 2;
  margin: -17px 0 0;
  color: var(--sh-text-muted);
  font-size: 0.75rem;
}

/* Main layout */
.accessibility-content-section {
  position: relative;
  z-index: 2;
  padding: 14px 0 52px;
}
.accessibility-layout {
  display: grid;
  grid-template-columns: minmax(260px, 310px) minmax(0, 1fr);
  align-items: start;
  gap: 30px;
}
.accessibility-sidebar {
  position: sticky;
  top: calc(var(--sh-navbar-height) + 22px);
  /* max-height: calc(100vh - var(--sh-navbar-height) - 42px); */
  overflow: hidden;
  border: 1px solid var(--sh-border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--sh-shadow-sm);
  backdrop-filter: blur(18px);
}
.accessibility-sidebar__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 18px 15px;
  border-bottom: 1px solid var(--sh-border);
}
.accessibility-sidebar__header-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--sh-gradient-soft);
  color: var(--sh-primary);
}
.accessibility-sidebar__header small {
  display: block;
  color: var(--sh-primary);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.accessibility-sidebar__header h2 {
  margin: 2px 0 0;
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: -0.025em;
}
.accessibility-sidebar__navigation {
  display: flex;
  max-height: calc(100vh - var(--sh-navbar-height) - 245px);
  flex-direction: column;
  gap: 4px;
  padding: 10px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(113, 56, 232, 0.3) transparent;
}
.accessibility-sidebar__navigation a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: var(--sh-text-secondary);
  transition:
    color var(--sh-transition-fast),
    background var(--sh-transition-fast),
    border-color var(--sh-transition-fast),
    transform var(--sh-transition-fast);
}
.accessibility-sidebar__navigation a > span {
  display: inline-flex;
  width: 31px;
  height: 31px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #f4f1fa;
  color: var(--sh-text-muted);
  font-size: 0.67rem;
  font-weight: 800;
}
.accessibility-sidebar__navigation strong,
.accessibility-sidebar__navigation small {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.accessibility-sidebar__navigation strong {
  color: inherit;
  font-size: 0.75rem;
  font-weight: 750;
}
.accessibility-sidebar__navigation small {
  margin-top: 1px;
  color: var(--sh-text-muted);
  font-size: 0.62rem;
}
.accessibility-sidebar__navigation a:hover {
  border-color: rgba(113, 56, 232, 0.1);
  background: rgba(113, 56, 232, 0.055);
  color: var(--sh-primary-dark);
  transform: translateX(2px);
}
.accessibility-sidebar__navigation a.is-active {
  border-color: rgba(113, 56, 232, 0.14);
  background: linear-gradient(
    135deg,
    rgba(113, 56, 232, 0.13),
    rgba(22, 184, 166, 0.07)
  );
  color: var(--sh-primary-dark);
}
.accessibility-sidebar__navigation a.is-active > span {
  background: var(--sh-gradient-primary);
  color: #fff;
  box-shadow: 0 8px 18px rgba(113, 56, 232, 0.22);
}

.accessibility-article {
  min-width: 0;
}
.accessibility-section-card {
  position: relative;
  margin-bottom: 22px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--sh-border);
  border-radius: 22px;
  background: linear-gradient(145deg, #fff, #fcfbfe);
  box-shadow: 0 10px 32px rgba(31, 20, 52, 0.055);
  scroll-margin-top: calc(var(--sh-navbar-height) + 24px);
  transition:
    border-color var(--sh-transition),
    box-shadow var(--sh-transition),
    transform var(--sh-transition);
}
.accessibility-section-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--sh-gradient-primary);
  opacity: 0;
  transition: opacity var(--sh-transition);
}
.accessibility-section-card::after {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(113, 56, 232, 0.045);
  pointer-events: none;
}
.accessibility-section-card:hover {
  border-color: rgba(113, 56, 232, 0.18);
  box-shadow: 0 18px 44px rgba(31, 20, 52, 0.09);
  transform: translateY(-2px);
}
.accessibility-section-card:hover::before,
.accessibility-section-card--highlight::before {
  opacity: 1;
}
.accessibility-section-card--highlight {
  border-color: rgba(113, 56, 232, 0.17);
  background: linear-gradient(145deg, #fff, #faf7ff);
}
.accessibility-section-card--contact {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 1),
    rgba(232, 250, 247, 0.55)
  );
}

.accessibility-section-card__header {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--sh-border);
}
.accessibility-section-card__number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--sh-text);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 850;
}
.accessibility-section-card__icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--sh-primary-soft);
  color: var(--sh-primary);
  font-size: 1rem;
}
.accessibility-section-card__eyebrow {
  display: block;
  color: var(--sh-primary);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.accessibility-section-card__heading h2 {
  margin: 3px 0 0;
  color: var(--sh-text);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1.2;
}
.accessibility-section-card__heading p {
  margin: 6px 0 0;
  color: var(--sh-text-muted);
  font-size: 0.8rem;
  line-height: 1.6;
}
.accessibility-section-card__content {
  position: relative;
  z-index: 1;
  padding-top: 20px;
}
.accessibility-copy {
  margin: 0 0 14px;
  color: var(--sh-text-secondary);
  font-size: 0.94rem;
  line-height: 1.85;
}
.accessibility-copy:last-child {
  margin-bottom: 0;
}
.accessibility-subheading {
  margin: 24px 0 9px;
  color: var(--sh-text);
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: -0.02em;
}
.accessibility-subheading::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 16px;
  margin-right: 9px;
  border-radius: 999px;
  background: var(--sh-gradient-primary);
  vertical-align: -2px;
}
.accessibility-inline-link {
  color: var(--sh-primary-dark);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(113, 56, 232, 0.25);
  text-underline-offset: 3px;
}
.accessibility-inline-link:hover {
  color: var(--sh-primary);
}

.accessibility-check-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 20px;
  padding: 0;
  list-style: none;
}
.accessibility-check-list__item {
  position: relative;
  padding: 12px 14px 12px 43px;
  border: 1px solid var(--sh-border);
  border-radius: 13px;
  background: var(--sh-surface-soft);
  color: var(--sh-text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
}
.accessibility-check-list__item::before {
  content: "\F26E";
  position: absolute;
  top: 12px;
  left: 13px;
  display: inline-flex;
  width: 21px;
  height: 21px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: var(--sh-secondary-soft);
  color: var(--sh-secondary-dark);
  font-family: "bootstrap-icons";
  font-size: 0.75rem;
}

.privacy-note {
  display: flex;
  gap: 13px;
  margin: 22px 0 4px;
  padding: 16px 17px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 15px;
  background: #f4f8ff;
  color: #365475;
}
.privacy-note > i {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--sh-info);
  font-size: 1.05rem;
}
.privacy-note p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.7;
}
.privacy-note--payment {
  border-color: rgba(113, 56, 232, 0.15);
  background: #f8f5ff;
  color: #594b77;
}
.privacy-note--payment > i {
  color: var(--sh-primary);
}
.privacy-note--security {
  border-color: rgba(22, 184, 166, 0.17);
  background: var(--sh-secondary-soft);
  color: #376e67;
}
.privacy-note--security > i {
  color: var(--sh-secondary-dark);
}

.accessibility-rights-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}
.accessibility-rights-grid > div {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  column-gap: 11px;
  padding: 15px;
  border: 1px solid var(--sh-border);
  border-radius: 15px;
  background: #fff;
}
.accessibility-rights-grid i {
  grid-row: 1 / span 2;
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--sh-primary-soft);
  color: var(--sh-primary);
}
.accessibility-rights-grid strong {
  color: var(--sh-text);
  font-size: 0.8rem;
}
.accessibility-rights-grid span {
  margin-top: 2px;
  color: var(--sh-text-muted);
  font-size: 0.68rem;
  line-height: 1.5;
}

.privacy-contact-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(113, 56, 232, 0.14);
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(113, 56, 232, 0.08),
    rgba(22, 184, 166, 0.07)
  );
}
.privacy-contact-card__icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #fff;
  color: var(--sh-primary);
  box-shadow: var(--sh-shadow-xs);
}
.privacy-contact-card small {
  display: block;
  color: var(--sh-text-muted);
  font-size: 0.66rem;
}
.privacy-contact-card a {
  display: inline-block;
  margin-top: 2px;
  color: var(--sh-primary-dark);
  font-size: 0.84rem;
  font-weight: 800;
  word-break: break-word;
}
.privacy-contact-card > i {
  color: var(--sh-primary);
}

.accessibility-section-card__back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  padding: 8px 11px;
  border-radius: 10px;
  background: var(--sh-primary-soft);
  color: var(--sh-primary-dark);
  font-size: 0.7rem;
  font-weight: 800;
  transition:
    transform var(--sh-transition),
    background var(--sh-transition);
}
.accessibility-section-card__back:hover {
  background: #e7defc;
  color: var(--sh-primary-dark);
  transform: translateY(-1px);
}

.accessibility-empty-state {
  padding: 52px 28px;
  border: 1px dashed rgba(113, 56, 232, 0.25);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
}
.accessibility-empty-state > span {
  display: inline-flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  border-radius: 19px;
  background: var(--sh-primary-soft);
  color: var(--sh-primary);
  font-size: 1.35rem;
}
.accessibility-empty-state h2 {
  margin: 17px 0 0;
  font-size: 1.45rem;
  font-weight: 850;
  letter-spacing: -0.04em;
}
.accessibility-empty-state p {
  margin: 8px auto 0;
  color: var(--sh-text-muted);
}
.accessibility-empty-state button {
  margin-top: 18px;
  padding: 10px 15px;
  border: 0;
  border-radius: 12px;
  background: var(--sh-gradient-primary);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
}

.accessibility-important-note {
  display: flex;
  gap: 14px;
  margin-top: 26px;
  padding: 20px;
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 17px;
  background: #fff8e7;
  color: #6c4a08;
}
.accessibility-important-note > span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: #fff;
  color: #c27a00;
}
.accessibility-important-note strong {
  font-size: 0.84rem;
}
.accessibility-important-note p {
  margin: 5px 0 0;
  font-size: 0.76rem;
  line-height: 1.7;
}

/* Final CTA */
.accessibility-final-cta {
  position: relative;
  z-index: 2;
  padding: 38px 0 20px;
}
.accessibility-final-cta__card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 30px 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  background: linear-gradient(135deg, #261348 0%, #44208a 52%, #136e70 100%);
  color: #fff;
  box-shadow: 0 25px 65px rgba(35, 20, 61, 0.22);
}
.accessibility-final-cta__card::before {
  content: "";
  position: absolute;
  top: -100px;
  right: 12%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
}
.accessibility-final-cta__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.11);
  font-size: 1.35rem;
}
.accessibility-final-cta__content {
  position: relative;
  z-index: 1;
}
.accessibility-final-cta__content > span {
  color: #d9c9ff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.accessibility-final-cta__content h2 {
  margin: 4px 0 0;
  color: #fff;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 850;
  letter-spacing: -0.04em;
}
.accessibility-final-cta__content p {
  max-width: 700px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
  line-height: 1.7;
}
.accessibility-final-cta__button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 19px;
  border-radius: 14px;
  background: #fff;
  color: var(--sh-primary-deep);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  font-size: 0.82rem;
  font-weight: 850;
  transition:
    transform var(--sh-transition),
    box-shadow var(--sh-transition);
}
.accessibility-final-cta__button:hover {
  color: var(--sh-primary-deep);
  transform: translateY(-3px);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.25);
}

[hidden] {
  display: none !important;
}

@media (max-width: 1199.98px) {
  .accessibility-layout {
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 24px;
  }
  .accessibility-summary__card {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .accessibility-summary__principles {
    grid-column: 2;
    justify-content: flex-start;
  }
}

@media (max-width: 991.98px) {
  .accessibility-hero {
    padding: 72px 0 58px;
  }
  .accessibility-layout {
    grid-template-columns: 1fr;
  }
  .accessibility-sidebar {
    position: relative;
    top: auto;
    max-height: none;
  }
  .accessibility-sidebar__navigation {
    display: grid;
    max-height: 320px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .accessibility-search-card {
    grid-template-columns: 1fr;
  }
  .accessibility-search__status {
    grid-column: auto;
    margin: -13px 0 0;
  }
  .accessibility-final-cta__card {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .accessibility-final-cta__button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 767.98px) {
  .accessibility-hero {
    padding: 58px 0 44px;
  }
  .accessibility-hero__title {
    font-size: clamp(2.65rem, 13vw, 4.2rem);
  }
  .accessibility-hero__meta {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .accessibility-summary__card {
    grid-template-columns: 1fr;
    padding: 23px;
  }
  .accessibility-summary__principles {
    grid-column: auto;
    justify-content: flex-start;
  }
  .accessibility-search-card {
    padding: 20px;
  }
  .accessibility-sidebar__navigation {
    grid-template-columns: 1fr;
    max-height: 350px;
  }
  .accessibility-section-card {
    padding: 22px 19px;
    border-radius: 18px;
  }
  .accessibility-section-card__header {
    grid-template-columns: auto auto;
  }
  .accessibility-section-card__heading {
    grid-column: 1 / -1;
  }
  .accessibility-rights-grid {
    grid-template-columns: 1fr;
  }
  .accessibility-final-cta__card {
    grid-template-columns: 1fr;
    padding: 25px 22px;
  }
  .accessibility-final-cta__button {
    grid-column: auto;
    width: 100%;
  }
}

@media (max-width: 479.98px) {
  .accessibility-hero__eyebrow {
    font-size: 0.65rem;
  }
  .accessibility-hero__description {
    font-size: 0.94rem;
  }
  .accessibility-summary__principles {
    align-items: stretch;
    flex-direction: column;
  }
  .accessibility-summary__principles div {
    width: fit-content;
  }
  .accessibility-search-card__heading {
    align-items: flex-start;
  }
  .accessibility-search__input {
    font-size: 0.86rem;
  }
  .accessibility-section-card__number,
  .accessibility-section-card__icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }
  .privacy-contact-card {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .privacy-contact-card > i {
    display: none;
  }
  .accessibility-important-note {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .accessibility-page__orb {
    animation: none;
  }
  .accessibility-section-card:hover,
  .accessibility-sidebar__navigation a:hover,
  .accessibility-final-cta__button:hover {
    transform: none;
  }
}

/* =========================================================
   ACCESSIBILITY STATEMENT — PAGE-SPECIFIC COMPONENTS
========================================================= */

.accessibility-sidebar__navigation a > div {
  min-width: 0;
}

.accessibility-sidebar__navigation a small {
  display: block;
  margin-top: 2px;
  color: var(--sh-text-muted);
  font-size: 0.62rem;
}

/* Sidebar help */
.accessibility-sidebar__help {
  display: flex;
  gap: 11px;
  margin: 10px;
  padding: 13px;
  border: 1px solid rgba(22, 184, 166, 0.15);
  border-radius: 14px;
  background: var(--sh-primary-soft);
}
.accessibility-sidebar__help > span {
  display: inline-flex;
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: #fff;
  color: var(--sh-secondary-dark);
}
.accessibility-sidebar__help strong {
  color: #245e58;
  font-size: 0.75rem;
}
.accessibility-sidebar__help p {
  margin: 3px 0 7px;
  color: #4f7772;
  font-size: 0.65rem;
  line-height: 1.5;
}
.accessibility-sidebar__help a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--sh-secondary-dark);
  font-size: 0.67rem;
  font-weight: 800;
}

/* Main text */
.accessibility-section-card__content > p {
  margin: 0;
  color: var(--sh-text-secondary);
  font-size: 0.91rem;
  line-height: 1.82;
}

.accessibility-section-card__content > p + p,
.accessibility-section-card__content > p + ul,
.accessibility-section-card__content > p + div,
.accessibility-section-card__content > div + p {
  margin-top: 14px;
}

/* Existing list classes */
.legal-check-list,
.accessibility-check-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.legal-check-list li,
.accessibility-check-list li {
  position: relative;
  padding-left: 31px;
  color: var(--sh-text-secondary);
  font-size: 0.88rem;
  line-height: 1.72;
}

.legal-check-list li::before,
.accessibility-check-list li::before {
  content: "\F26E";
  position: absolute;
  top: 2px;
  left: 0;
  display: inline-flex;
  width: 21px;
  height: 21px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: var(--sh-secondary-soft);
  color: var(--sh-secondary-dark);
  font-family: "bootstrap-icons";
  font-size: 0.72rem;
}

.legal-check-list--warning li::before {
  background: rgba(245, 158, 11, 0.12);
  color: var(--sh-warning);
}

/* WCAG principle cards */
.accessibility-principles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 17px;
}

.accessibility-principle {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px;
  border: 1px solid var(--sh-border);
  border-radius: 13px;
  background: var(--sh-surface-soft);
}

.accessibility-principle > span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--sh-primary-soft);
  color: var(--sh-primary);
}

.accessibility-principle strong {
  color: var(--sh-text);
  font-size: 0.75rem;
}

/* Information note */
.legal-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  margin-top: 17px;
  padding: 14px 15px;
  border: 1px solid rgba(113, 56, 232, 0.16);
  border-radius: 14px;
  background: var(--sh-primary-soft);
  color: var(--sh-primary-dark);
}

.legal-note p {
  margin: 0 !important;
  font-size: 0.82rem;
  line-height: 1.68;
}

/* Keyboard shortcuts */
.keyboard-shortcuts {
  display: grid;
  gap: 10px;
  margin-top: 17px;
}

.keyboard-shortcuts > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 12px 13px;
  border: 1px solid var(--sh-border);
  border-radius: 13px;
  background: var(--sh-surface-soft);
}

.keyboard-shortcuts kbd {
  min-width: 38px;
  padding: 6px 9px;
  border: 1px solid var(--sh-border-strong);
  border-bottom-width: 3px;
  border-radius: 8px;
  background: #fff;
  color: var(--sh-text);
  box-shadow: none;
  font-size: 0.7rem;
  font-weight: 800;
  text-align: center;
}

.keyboard-shortcuts span {
  color: var(--sh-text-secondary);
  font-size: 0.78rem;
}

/* Highlight action */
.legal-section-card__action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 17px;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--sh-gradient-primary);
  color: #fff;
  box-shadow: 0 10px 22px rgba(113, 56, 232, 0.2);
  font-size: 0.76rem;
  font-weight: 800;
}

/* Contact options */
.legal-contact-options {
  display: grid;
  gap: 11px;
  margin-top: 17px;
}

.legal-contact-options > a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--sh-border);
  border-radius: 14px;
  background: var(--sh-surface-soft);
  transition:
    border-color var(--sh-transition),
    box-shadow var(--sh-transition),
    transform var(--sh-transition);
}

.legal-contact-options > a:hover {
  border-color: rgba(113, 56, 232, 0.18);
  box-shadow: var(--sh-shadow-sm);
  transform: translateY(-2px);
}

.legal-contact-options > a > span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--sh-primary-soft);
  color: var(--sh-primary);
}

.legal-contact-options small,
.legal-contact-options strong {
  display: block;
}

.legal-contact-options small {
  color: var(--sh-text-muted);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-contact-options strong {
  margin-top: 2px;
  color: var(--sh-text);
  font-size: 0.81rem;
}

/* Important note */
.accessibility-important-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 15px;
  margin-top: 24px;
  padding: 22px;
  border: 1px solid rgba(113, 56, 232, 0.16);
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(113, 56, 232, 0.08),
    rgba(255, 255, 255, 0.96)
  );
  box-shadow: var(--sh-shadow-sm);
}

.accessibility-important-note__icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: var(--sh-primary-soft);
  color: var(--sh-primary);
  font-size: 1.15rem;
}

.accessibility-important-note__content small {
  color: var(--sh-primary);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.accessibility-important-note__content h2 {
  margin: 3px 0 7px;
  color: var(--sh-text);
  font-size: 1.14rem;
  font-weight: 820;
}

.accessibility-important-note__content p {
  margin: 0;
  color: var(--sh-text-secondary);
  font-size: 0.82rem;
  line-height: 1.7;
}

@media (max-width: 991.98px) {
  .accessibility-principles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .accessibility-principles {
    grid-template-columns: 1fr;
  }

  .accessibility-important-note {
    grid-template-columns: 1fr;
  }

  .legal-contact-options > a {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .legal-contact-options > a > i {
    display: none;
  }
}

/* =========================================================
   SMART HIRING — DISCLAIMER PAGE
   Add this file after your existing public style.css
========================================================= */

.disclaimer-page {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 5% 3%, rgba(113, 56, 232, 0.08), transparent 24%),
    radial-gradient(
      circle at 95% 12%,
      rgba(22, 184, 166, 0.07),
      transparent 22%
    ),
    linear-gradient(180deg, #fcfbff 0%, var(--sh-bg) 35%, #f8f9fd 100%);
}

.disclaimer-page__grid {
  position: absolute;
  inset: 0 0 auto;
  height: 760px;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(113, 56, 232, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(113, 56, 232, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
}

.disclaimer-page__orb {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(6px);
}

.disclaimer-page__orb--one {
  top: 110px;
  left: -180px;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(113, 56, 232, 0.16),
    transparent 68%
  );
  animation: privacy-orb-float 10s ease-in-out infinite;
}

.disclaimer-page__orb--two {
  top: 300px;
  right: -220px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(22, 184, 166, 0.13),
    transparent 68%
  );
  animation: privacy-orb-float 12s ease-in-out infinite reverse;
}

@keyframes privacy-orb-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -24px, 0);
  }
}

/* Hero */
.disclaimer-hero {
  position: relative;
  z-index: 1;
  padding: 92px 0 74px;
}

.disclaimer-hero__content {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.disclaimer-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 9px 14px;
  border: 1px solid rgba(113, 56, 232, 0.14);
  border-radius: var(--sh-radius-pill);
  background: rgba(255, 255, 255, 0.8);
  color: var(--sh-primary-dark);
  box-shadow: var(--sh-shadow-xs);
  backdrop-filter: blur(14px);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.disclaimer-hero__eyebrow-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: var(--sh-primary-soft);
  color: var(--sh-primary);
}

.disclaimer-hero__title {
  margin: 0;
  color: var(--sh-text);
  font-size: clamp(3rem, 6vw, 5.6rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.98;
}

.disclaimer-hero__title span {
  display: block;
  margin-top: 12px;
  background: var(--sh-gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.disclaimer-hero__description {
  max-width: 780px;
  margin: 28px auto 0;
  color: var(--sh-text-secondary);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.9;
}

.disclaimer-hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 850px;
  margin: 42px auto 0;
}

.disclaimer-hero__meta-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 17px 18px;
  border: 1px solid rgba(218, 212, 228, 0.78);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(27, 18, 46, 0.07);
  text-align: left;
  backdrop-filter: blur(16px);
}

.disclaimer-hero__meta-item > span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--sh-gradient-soft);
  color: var(--sh-primary);
  font-size: 1rem;
}

.disclaimer-hero__meta-item small,
.disclaimer-hero__meta-item strong {
  display: block;
}
.disclaimer-hero__meta-item small {
  color: var(--sh-text-muted);
  font-size: 0.7rem;
}
.disclaimer-hero__meta-item strong {
  margin-top: 2px;
  color: var(--sh-text);
  font-size: 0.83rem;
  font-weight: 800;
}

/* Summary */
.disclaimer-summary {
  position: relative;
  z-index: 2;
  padding: 0 0 28px;
}
.disclaimer-summary__card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 28px 30px;
  border: 1px solid rgba(113, 56, 232, 0.13);
  border-radius: 25px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95),
    rgba(248, 245, 255, 0.92)
  );
  box-shadow: var(--sh-shadow-md);
}
.disclaimer-summary__icon {
  display: inline-flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  border-radius: 19px;
  background: var(--sh-gradient-primary);
  color: #fff;
  box-shadow: var(--sh-shadow-primary);
  font-size: 1.35rem;
}
.disclaimer-summary__content > span {
  color: var(--sh-primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.disclaimer-summary__content h2 {
  margin: 5px 0 0;
  color: var(--sh-text);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 850;
  letter-spacing: -0.045em;
}
.disclaimer-summary__content p {
  max-width: 740px;
  margin: 9px 0 0;
  color: var(--sh-text-secondary);
  font-size: 0.93rem;
  line-height: 1.75;
}
.disclaimer-summary__principles {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}
.disclaimer-summary__principles div {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius-pill);
  background: #fff;
  color: var(--sh-text-secondary);
  font-size: 0.74rem;
}
.disclaimer-summary__principles i {
  color: var(--sh-secondary-dark);
}

/* Search */
.disclaimer-search-section {
  position: relative;
  z-index: 2;
  padding: 24px 0 44px;
}
.disclaimer-search-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(420px, 1.25fr);
  align-items: center;
  gap: 28px;
  padding: 24px 26px;
  border: 1px solid var(--sh-border);
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--sh-shadow-sm);
  backdrop-filter: blur(16px);
}
.disclaimer-search-card__heading {
  display: flex;
  align-items: center;
  gap: 14px;
}
.disclaimer-search-card__icon {
  display: inline-flex;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: var(--sh-primary-soft);
  color: var(--sh-primary);
  font-size: 1.1rem;
}
.disclaimer-search-card__heading span {
  color: var(--sh-primary);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.disclaimer-search-card__heading h2 {
  margin: 3px 0 0;
  color: var(--sh-text);
  font-size: 1.15rem;
  font-weight: 850;
  letter-spacing: -0.025em;
}
.disclaimer-search {
  position: relative;
}
.disclaimer-search__leading {
  position: absolute;
  top: 50%;
  left: 17px;
  color: var(--sh-text-light);
  transform: translateY(-50%);
  pointer-events: none;
}
.disclaimer-search__input {
  width: 100%;
  min-height: 54px;
  padding: 13px 52px 13px 48px;
  border: 1px solid var(--sh-border);
  border-radius: 15px;
  background: var(--sh-surface-soft);
  color: var(--sh-text);
  outline: none;
  transition:
    border-color var(--sh-transition),
    box-shadow var(--sh-transition),
    background var(--sh-transition);
}
.disclaimer-search__input::placeholder {
  color: #9a94a5;
}
.disclaimer-search__input:focus {
  border-color: rgba(113, 56, 232, 0.35);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(113, 56, 232, 0.09);
}
.disclaimer-search__clear {
  position: absolute;
  top: 50%;
  right: 10px;
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 11px;
  background: var(--sh-primary-soft);
  color: var(--sh-primary);
  transform: translateY(-50%);
  cursor: pointer;
}
.disclaimer-search__status {
  grid-column: 2;
  margin: -17px 0 0;
  color: var(--sh-text-muted);
  font-size: 0.75rem;
}

/* Main layout */
.disclaimer-content-section {
  position: relative;
  z-index: 2;
  padding: 14px 0 52px;
}
.disclaimer-layout {
  display: grid;
  grid-template-columns: minmax(260px, 310px) minmax(0, 1fr);
  align-items: start;
  gap: 30px;
}
.disclaimer-sidebar {
  position: sticky;
  top: calc(var(--sh-navbar-height) + 22px);
  /* max-height: calc(100vh - var(--sh-navbar-height) - 42px); */
  overflow: hidden;
  border: 1px solid var(--sh-border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--sh-shadow-sm);
  backdrop-filter: blur(18px);
}
.disclaimer-sidebar__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 18px 15px;
  border-bottom: 1px solid var(--sh-border);
}
.disclaimer-sidebar__header-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--sh-gradient-soft);
  color: var(--sh-primary);
}
.disclaimer-sidebar__header small {
  display: block;
  color: var(--sh-primary);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.disclaimer-sidebar__header h2 {
  margin: 2px 0 0;
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: -0.025em;
}
.disclaimer-sidebar__navigation {
  display: flex;
  max-height: calc(100vh - var(--sh-navbar-height) - 245px);
  flex-direction: column;
  gap: 4px;
  padding: 10px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(113, 56, 232, 0.3) transparent;
}
.disclaimer-sidebar__navigation a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: var(--sh-text-secondary);
  transition:
    color var(--sh-transition-fast),
    background var(--sh-transition-fast),
    border-color var(--sh-transition-fast),
    transform var(--sh-transition-fast);
}
.disclaimer-sidebar__navigation a > span {
  display: inline-flex;
  width: 31px;
  height: 31px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #f4f1fa;
  color: var(--sh-text-muted);
  font-size: 0.67rem;
  font-weight: 800;
}
.disclaimer-sidebar__navigation strong,
.disclaimer-sidebar__navigation small {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.disclaimer-sidebar__navigation strong {
  color: inherit;
  font-size: 0.75rem;
  font-weight: 750;
}
.disclaimer-sidebar__navigation small {
  margin-top: 1px;
  color: var(--sh-text-muted);
  font-size: 0.62rem;
}
.disclaimer-sidebar__navigation a:hover {
  border-color: rgba(113, 56, 232, 0.1);
  background: rgba(113, 56, 232, 0.055);
  color: var(--sh-primary-dark);
  transform: translateX(2px);
}
.disclaimer-sidebar__navigation a.is-active {
  border-color: rgba(113, 56, 232, 0.14);
  background: linear-gradient(
    135deg,
    rgba(113, 56, 232, 0.13),
    rgba(22, 184, 166, 0.07)
  );
  color: var(--sh-primary-dark);
}
.disclaimer-sidebar__navigation a.is-active > span {
  background: var(--sh-gradient-primary);
  color: #fff;
  box-shadow: 0 8px 18px rgba(113, 56, 232, 0.22);
}
.disclaimer-sidebar__help {
  display: flex;
  gap: 11px;
  margin: 10px;
  padding: 13px;
  border: 1px solid rgba(22, 184, 166, 0.15);
  border-radius: 14px;
  background: var(--sh-primary-soft);
}
.disclaimer-sidebar__help > span {
  display: inline-flex;
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: #fff;
  color: var(--sh-secondary-dark);
}
.disclaimer-sidebar__help strong {
  color: #245e58;
  font-size: 0.75rem;
}
.disclaimer-sidebar__help p {
  margin: 3px 0 7px;
  color: #4f7772;
  font-size: 0.65rem;
  line-height: 1.5;
}
.disclaimer-sidebar__help a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--sh-secondary-dark);
  font-size: 0.67rem;
  font-weight: 800;
}

.disclaimer-article {
  min-width: 0;
}
.disclaimer-section-card {
  position: relative;
  margin-bottom: 22px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--sh-border);
  border-radius: 22px;
  background: linear-gradient(145deg, #fff, #fcfbfe);
  box-shadow: 0 10px 32px rgba(31, 20, 52, 0.055);
  scroll-margin-top: calc(var(--sh-navbar-height) + 24px);
  transition:
    border-color var(--sh-transition),
    box-shadow var(--sh-transition),
    transform var(--sh-transition);
}
.disclaimer-section-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--sh-gradient-primary);
  opacity: 0;
  transition: opacity var(--sh-transition);
}
.disclaimer-section-card::after {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(113, 56, 232, 0.045);
  pointer-events: none;
}
.disclaimer-section-card:hover {
  border-color: rgba(113, 56, 232, 0.18);
  box-shadow: 0 18px 44px rgba(31, 20, 52, 0.09);
  transform: translateY(-2px);
}
.disclaimer-section-card:hover::before,
.disclaimer-section-card--highlight::before {
  opacity: 1;
}
.disclaimer-section-card--highlight {
  border-color: rgba(113, 56, 232, 0.17);
  background: linear-gradient(145deg, #fff, #faf7ff);
}
.disclaimer-section-card--contact {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 1),
    rgba(232, 250, 247, 0.55)
  );
}

.disclaimer-section-card__header {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--sh-border);
}
.disclaimer-section-card__number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--sh-text);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 850;
}
.disclaimer-section-card__icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--sh-primary-soft);
  color: var(--sh-primary);
  font-size: 1rem;
}
.disclaimer-section-card__eyebrow {
  display: block;
  color: var(--sh-primary);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.disclaimer-section-card__heading h2 {
  margin: 3px 0 0;
  color: var(--sh-text);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1.2;
}
.disclaimer-section-card__heading p {
  margin: 6px 0 0;
  color: var(--sh-text-muted);
  font-size: 0.8rem;
  line-height: 1.6;
}
.disclaimer-section-card__content {
  position: relative;
  z-index: 1;
  padding-top: 20px;
}
.disclaimer-copy {
  margin: 0 0 14px;
  color: var(--sh-text-secondary);
  font-size: 0.94rem;
  line-height: 1.85;
}
.disclaimer-copy:last-child {
  margin-bottom: 0;
}
.disclaimer-subheading {
  margin: 24px 0 9px;
  color: var(--sh-text);
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: -0.02em;
}
.disclaimer-subheading::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 16px;
  margin-right: 9px;
  border-radius: 999px;
  background: var(--sh-gradient-primary);
  vertical-align: -2px;
}
.disclaimer-inline-link {
  color: var(--sh-primary-dark);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(113, 56, 232, 0.25);
  text-underline-offset: 3px;
}
.disclaimer-inline-link:hover {
  color: var(--sh-primary);
}

.disclaimer-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 20px;
  padding: 0;
  list-style: none;
}
.disclaimer-list__item {
  position: relative;
  padding: 12px 14px 12px 43px;
  border: 1px solid var(--sh-border);
  border-radius: 13px;
  background: var(--sh-surface-soft);
  color: var(--sh-text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
}
.disclaimer-list__item::before {
  content: "\F26E";
  position: absolute;
  top: 12px;
  left: 13px;
  display: inline-flex;
  width: 21px;
  height: 21px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: var(--sh-secondary-soft);
  color: var(--sh-secondary-dark);
  font-family: "bootstrap-icons";
  font-size: 0.75rem;
}

.privacy-note {
  display: flex;
  gap: 13px;
  margin: 22px 0 4px;
  padding: 16px 17px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 15px;
  background: #f4f8ff;
  color: #365475;
}
.privacy-note > i {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--sh-info);
  font-size: 1.05rem;
}
.privacy-note p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.7;
}
.privacy-note--payment {
  border-color: rgba(113, 56, 232, 0.15);
  background: #f8f5ff;
  color: #594b77;
}
.privacy-note--payment > i {
  color: var(--sh-primary);
}
.privacy-note--security {
  border-color: rgba(22, 184, 166, 0.17);
  background: var(--sh-secondary-soft);
  color: #376e67;
}
.privacy-note--security > i {
  color: var(--sh-secondary-dark);
}

.disclaimer-rights-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}
.disclaimer-rights-grid > div {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  column-gap: 11px;
  padding: 15px;
  border: 1px solid var(--sh-border);
  border-radius: 15px;
  background: #fff;
}
.disclaimer-rights-grid i {
  grid-row: 1 / span 2;
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--sh-primary-soft);
  color: var(--sh-primary);
}
.disclaimer-rights-grid strong {
  color: var(--sh-text);
  font-size: 0.8rem;
}
.disclaimer-rights-grid span {
  margin-top: 2px;
  color: var(--sh-text-muted);
  font-size: 0.68rem;
  line-height: 1.5;
}

.privacy-contact-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(113, 56, 232, 0.14);
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(113, 56, 232, 0.08),
    rgba(22, 184, 166, 0.07)
  );
}
.privacy-contact-card__icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #fff;
  color: var(--sh-primary);
  box-shadow: var(--sh-shadow-xs);
}
.privacy-contact-card small {
  display: block;
  color: var(--sh-text-muted);
  font-size: 0.66rem;
}
.privacy-contact-card a {
  display: inline-block;
  margin-top: 2px;
  color: var(--sh-primary-dark);
  font-size: 0.84rem;
  font-weight: 800;
  word-break: break-word;
}
.privacy-contact-card > i {
  color: var(--sh-primary);
}

.disclaimer-section-card__back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  padding: 8px 11px;
  border-radius: 10px;
  background: var(--sh-primary-soft);
  color: var(--sh-primary-dark);
  font-size: 0.7rem;
  font-weight: 800;
  transition:
    transform var(--sh-transition),
    background var(--sh-transition);
}
.disclaimer-section-card__back:hover {
  background: #e7defc;
  color: var(--sh-primary-dark);
  transform: translateY(-1px);
}

.disclaimer-empty-state {
  padding: 52px 28px;
  border: 1px dashed rgba(113, 56, 232, 0.25);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
}
.disclaimer-empty-state > span {
  display: inline-flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  border-radius: 19px;
  background: var(--sh-primary-soft);
  color: var(--sh-primary);
  font-size: 1.35rem;
}
.disclaimer-empty-state h2 {
  margin: 17px 0 0;
  font-size: 1.45rem;
  font-weight: 850;
  letter-spacing: -0.04em;
}
.disclaimer-empty-state p {
  margin: 8px auto 0;
  color: var(--sh-text-muted);
}
.disclaimer-empty-state button {
  margin-top: 18px;
  padding: 10px 15px;
  border: 0;
  border-radius: 12px;
  background: var(--sh-gradient-primary);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
}

.disclaimer-important-note {
  display: flex;
  gap: 14px;
  margin-top: 26px;
  padding: 20px;
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 17px;
  background: #fff8e7;
  color: #6c4a08;
}
.disclaimer-important-note > span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: #fff;
  color: #c27a00;
}
.disclaimer-important-note strong {
  font-size: 0.84rem;
}
.disclaimer-important-note p {
  margin: 5px 0 0;
  font-size: 0.76rem;
  line-height: 1.7;
}

/* Final CTA */
.disclaimer-final-cta {
  position: relative;
  z-index: 2;
  padding: 38px 0 20px;
}
.disclaimer-final-cta__card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 30px 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  background: linear-gradient(135deg, #261348 0%, #44208a 52%, #136e70 100%);
  color: #fff;
  box-shadow: 0 25px 65px rgba(35, 20, 61, 0.22);
}
.disclaimer-final-cta__card::before {
  content: "";
  position: absolute;
  top: -100px;
  right: 12%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
}
.disclaimer-final-cta__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.11);
  font-size: 1.35rem;
}
.disclaimer-final-cta__content {
  position: relative;
  z-index: 1;
}
.disclaimer-final-cta__content > span {
  color: #d9c9ff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.disclaimer-final-cta__content h2 {
  margin: 4px 0 0;
  color: #fff;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 850;
  letter-spacing: -0.04em;
}
.disclaimer-final-cta__content p {
  max-width: 700px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
  line-height: 1.7;
}
.disclaimer-final-cta__button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 19px;
  border-radius: 14px;
  background: #fff;
  color: var(--sh-primary-deep);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  font-size: 0.82rem;
  font-weight: 850;
  transition:
    transform var(--sh-transition),
    box-shadow var(--sh-transition);
}
.disclaimer-final-cta__button:hover {
  color: var(--sh-primary-deep);
  transform: translateY(-3px);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.25);
}

[hidden] {
  display: none !important;
}

@media (max-width: 1199.98px) {
  .disclaimer-layout {
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 24px;
  }
  .disclaimer-summary__card {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .disclaimer-summary__principles {
    grid-column: 2;
    justify-content: flex-start;
  }
}

@media (max-width: 991.98px) {
  .disclaimer-hero {
    padding: 72px 0 58px;
  }
  .disclaimer-layout {
    grid-template-columns: 1fr;
  }
  .disclaimer-sidebar {
    position: relative;
    top: auto;
    max-height: none;
  }
  .disclaimer-sidebar__navigation {
    display: grid;
    max-height: 320px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .disclaimer-search-card {
    grid-template-columns: 1fr;
  }
  .disclaimer-search__status {
    grid-column: auto;
    margin: -13px 0 0;
  }
  .disclaimer-final-cta__card {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .disclaimer-final-cta__button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 767.98px) {
  .disclaimer-hero {
    padding: 58px 0 44px;
  }
  .disclaimer-hero__title {
    font-size: clamp(2.65rem, 13vw, 4.2rem);
  }
  .disclaimer-hero__meta {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .disclaimer-summary__card {
    grid-template-columns: 1fr;
    padding: 23px;
  }
  .disclaimer-summary__principles {
    grid-column: auto;
    justify-content: flex-start;
  }
  .disclaimer-search-card {
    padding: 20px;
  }
  .disclaimer-sidebar__navigation {
    grid-template-columns: 1fr;
    max-height: 350px;
  }
  .disclaimer-section-card {
    padding: 22px 19px;
    border-radius: 18px;
  }
  .disclaimer-section-card__header {
    grid-template-columns: auto auto;
  }
  .disclaimer-section-card__heading {
    grid-column: 1 / -1;
  }
  .disclaimer-rights-grid {
    grid-template-columns: 1fr;
  }
  .disclaimer-final-cta__card {
    grid-template-columns: 1fr;
    padding: 25px 22px;
  }
  .disclaimer-final-cta__button {
    grid-column: auto;
    width: 100%;
  }
}

@media (max-width: 479.98px) {
  .disclaimer-hero__eyebrow {
    font-size: 0.65rem;
  }
  .disclaimer-hero__description {
    font-size: 0.94rem;
  }
  .disclaimer-summary__principles {
    align-items: stretch;
    flex-direction: column;
  }
  .disclaimer-summary__principles div {
    width: fit-content;
  }
  .disclaimer-search-card__heading {
    align-items: flex-start;
  }
  .disclaimer-search__input {
    font-size: 0.86rem;
  }
  .disclaimer-section-card__number,
  .disclaimer-section-card__icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }
  .privacy-contact-card {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .privacy-contact-card > i {
    display: none;
  }
  .disclaimer-important-note {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .disclaimer-page__orb {
    animation: none;
  }
  .disclaimer-section-card:hover,
  .disclaimer-sidebar__navigation a:hover,
  .disclaimer-final-cta__button:hover {
    transform: none;
  }
}

/* =========================================================
   DISCLAIMER — PAGE-SPECIFIC COMPONENTS
   Base layout is an exact selector-mapped copy of
   the working Privacy Policy stylesheet.
========================================================= */

.disclaimer-sidebar__navigation a > div {
  min-width: 0;
}

.disclaimer-sidebar__navigation a small {
  display: block;
  margin-top: 2px;
  color: var(--sh-text-muted);
  font-size: 0.62rem;
}

/* Sidebar support */
.disclaimer-sidebar__help {
  display: flex;
  gap: 11px;
  margin: 10px;
  padding: 13px;
  border: 1px solid rgba(22, 184, 166, 0.15);
  border-radius: 14px;
  background: var(--sh-primary-soft);
}
.disclaimer-sidebar__help > span {
  display: inline-flex;
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: #fff;
  color: var(--sh-secondary-dark);
}
.disclaimer-sidebar__help strong {
  color: #245e58;
  font-size: 0.75rem;
}
.disclaimer-sidebar__help p {
  margin: 3px 0 7px;
  color: #4f7772;
  font-size: 0.65rem;
  line-height: 1.5;
}
.disclaimer-sidebar__help a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--sh-secondary-dark);
  font-size: 0.67rem;
  font-weight: 800;
}

/* Legal copy and lists */
.disclaimer-section-card__content > p {
  margin: 0;
  color: var(--sh-text-secondary);
  font-size: 0.91rem;
  line-height: 1.82;
}

.disclaimer-section-card__content > p + p,
.disclaimer-section-card__content > p + ul,
.disclaimer-section-card__content > p + ol {
  margin-top: 14px;
}

.disclaimer-section-card__content ul,
.disclaimer-section-card__content ol {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.disclaimer-section-card__content li {
  position: relative;
  padding-left: 31px;
  color: var(--sh-text-secondary);
  font-size: 0.88rem;
  line-height: 1.72;
}

.disclaimer-section-card__content li::before {
  content: "\F26E";
  position: absolute;
  top: 2px;
  left: 0;
  display: inline-flex;
  width: 21px;
  height: 21px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: var(--sh-secondary-soft);
  color: var(--sh-secondary-dark);
  font-family: "bootstrap-icons";
  font-size: 0.72rem;
}

/* Final important notice */
.disclaimer-important-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 15px;
  margin-top: 24px;
  padding: 22px;
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.09),
    rgba(255, 255, 255, 0.95)
  );
  box-shadow: var(--sh-shadow-sm);
}

.disclaimer-important-note__icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: rgba(245, 158, 11, 0.11);
  color: var(--sh-warning);
  font-size: 1.15rem;
}

.disclaimer-important-note__content small {
  color: var(--sh-warning);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.disclaimer-important-note__content h2 {
  margin: 3px 0 7px;
  color: var(--sh-text);
  font-size: 1.14rem;
  font-weight: 820;
}

.disclaimer-important-note__content p {
  margin: 0;
  color: var(--sh-text-secondary);
  font-size: 0.82rem;
  line-height: 1.7;
}

@media (max-width: 767.98px) {
  .disclaimer-important-note {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   SMART HIRING — COOKIE POLICY PAGE
   Add this file after your existing public style.css
========================================================= */

.cookie-page {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 5% 3%, rgba(113, 56, 232, 0.08), transparent 24%),
    radial-gradient(
      circle at 95% 12%,
      rgba(22, 184, 166, 0.07),
      transparent 22%
    ),
    linear-gradient(180deg, #fcfbff 0%, var(--sh-bg) 35%, #f8f9fd 100%);
}

.cookie-page__grid {
  position: absolute;
  inset: 0 0 auto;
  height: 760px;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(113, 56, 232, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(113, 56, 232, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
}

.cookie-page__orb {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(6px);
}

.cookie-page__orb--one {
  top: 110px;
  left: -180px;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(113, 56, 232, 0.16),
    transparent 68%
  );
  animation: privacy-orb-float 10s ease-in-out infinite;
}

.cookie-page__orb--two {
  top: 300px;
  right: -220px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(22, 184, 166, 0.13),
    transparent 68%
  );
  animation: privacy-orb-float 12s ease-in-out infinite reverse;
}

@keyframes privacy-orb-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -24px, 0);
  }
}

/* Hero */
.cookie-hero {
  position: relative;
  z-index: 1;
  padding: 92px 0 74px;
}

.cookie-hero__content {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.cookie-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 9px 14px;
  border: 1px solid rgba(113, 56, 232, 0.14);
  border-radius: var(--sh-radius-pill);
  background: rgba(255, 255, 255, 0.8);
  color: var(--sh-primary-dark);
  box-shadow: var(--sh-shadow-xs);
  backdrop-filter: blur(14px);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cookie-hero__eyebrow-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: var(--sh-primary-soft);
  color: var(--sh-primary);
}

.cookie-hero__title {
  margin: 0;
  color: var(--sh-text);
  font-size: clamp(3rem, 6vw, 5.6rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.98;
}

.cookie-hero__title span {
  display: block;
  margin-top: 12px;
  background: var(--sh-gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.cookie-hero__description {
  max-width: 780px;
  margin: 28px auto 0;
  color: var(--sh-text-secondary);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.9;
}

.cookie-hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 850px;
  margin: 42px auto 0;
}

.cookie-hero__meta-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 17px 18px;
  border: 1px solid rgba(218, 212, 228, 0.78);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(27, 18, 46, 0.07);
  text-align: left;
  backdrop-filter: blur(16px);
}

.cookie-hero__meta-item > span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--sh-gradient-soft);
  color: var(--sh-primary);
  font-size: 1rem;
}

.cookie-hero__meta-item small,
.cookie-hero__meta-item strong {
  display: block;
}
.cookie-hero__meta-item small {
  color: var(--sh-text-muted);
  font-size: 0.7rem;
}
.cookie-hero__meta-item strong {
  margin-top: 2px;
  color: var(--sh-text);
  font-size: 0.83rem;
  font-weight: 800;
}

/* Summary */
.cookie-summary {
  position: relative;
  z-index: 2;
  padding: 0 0 28px;
}
.cookie-summary__card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 28px 30px;
  border: 1px solid rgba(113, 56, 232, 0.13);
  border-radius: 25px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95),
    rgba(248, 245, 255, 0.92)
  );
  box-shadow: var(--sh-shadow-md);
}
.cookie-summary__icon {
  display: inline-flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  border-radius: 19px;
  background: var(--sh-gradient-primary);
  color: #fff;
  box-shadow: var(--sh-shadow-primary);
  font-size: 1.35rem;
}
.cookie-summary__content > span {
  color: var(--sh-primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.cookie-summary__content h2 {
  margin: 5px 0 0;
  color: var(--sh-text);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 850;
  letter-spacing: -0.045em;
}
.cookie-summary__content p {
  max-width: 740px;
  margin: 9px 0 0;
  color: var(--sh-text-secondary);
  font-size: 0.93rem;
  line-height: 1.75;
}
.cookie-summary__principles {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}
.cookie-summary__principles div {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius-pill);
  background: #fff;
  color: var(--sh-text-secondary);
  font-size: 0.74rem;
}
.cookie-summary__principles i {
  color: var(--sh-secondary-dark);
}

/* Search */
.cookie-search-section {
  position: relative;
  z-index: 2;
  padding: 24px 0 44px;
}
.cookie-search-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(420px, 1.25fr);
  align-items: center;
  gap: 28px;
  padding: 24px 26px;
  border: 1px solid var(--sh-border);
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--sh-shadow-sm);
  backdrop-filter: blur(16px);
}
.cookie-search-card__heading {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-search-card__icon {
  display: inline-flex;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: var(--sh-primary-soft);
  color: var(--sh-primary);
  font-size: 1.1rem;
}
.cookie-search-card__heading span {
  color: var(--sh-primary);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.cookie-search-card__heading h2 {
  margin: 3px 0 0;
  color: var(--sh-text);
  font-size: 1.15rem;
  font-weight: 850;
  letter-spacing: -0.025em;
}
.cookie-search {
  position: relative;
}
.cookie-search__leading {
  position: absolute;
  top: 50%;
  left: 17px;
  color: var(--sh-text-light);
  transform: translateY(-50%);
  pointer-events: none;
}
.cookie-search__input {
  width: 100%;
  min-height: 54px;
  padding: 13px 52px 13px 48px;
  border: 1px solid var(--sh-border);
  border-radius: 15px;
  background: var(--sh-surface-soft);
  color: var(--sh-text);
  outline: none;
  transition:
    border-color var(--sh-transition),
    box-shadow var(--sh-transition),
    background var(--sh-transition);
}
.cookie-search__input::placeholder {
  color: #9a94a5;
}
.cookie-search__input:focus {
  border-color: rgba(113, 56, 232, 0.35);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(113, 56, 232, 0.09);
}
.cookie-search__clear {
  position: absolute;
  top: 50%;
  right: 10px;
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 11px;
  background: var(--sh-primary-soft);
  color: var(--sh-primary);
  transform: translateY(-50%);
  cursor: pointer;
}
.cookie-search__status {
  grid-column: 2;
  margin: -17px 0 0;
  color: var(--sh-text-muted);
  font-size: 0.75rem;
}

/* Main layout */
.cookie-content-section {
  position: relative;
  z-index: 2;
  padding: 14px 0 52px;
}
.cookie-layout {
  display: grid;
  grid-template-columns: minmax(260px, 310px) minmax(0, 1fr);
  align-items: start;
  gap: 30px;
}
.cookie-sidebar {
  position: sticky;
  top: calc(var(--sh-navbar-height) + 22px);
  /* max-height: calc(100vh - var(--sh-navbar-height) - 42px); */
  overflow: hidden;
  border: 1px solid var(--sh-border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--sh-shadow-sm);
  backdrop-filter: blur(18px);
}
.cookie-sidebar__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 18px 15px;
  border-bottom: 1px solid var(--sh-border);
}
.cookie-sidebar__header-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--sh-gradient-soft);
  color: var(--sh-primary);
}
.cookie-sidebar__header small {
  display: block;
  color: var(--sh-primary);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.cookie-sidebar__header h2 {
  margin: 2px 0 0;
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: -0.025em;
}
.cookie-sidebar__navigation {
  display: flex;
  max-height: calc(100vh - var(--sh-navbar-height) - 245px);
  flex-direction: column;
  gap: 4px;
  padding: 10px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(113, 56, 232, 0.3) transparent;
}
.cookie-sidebar__navigation a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: var(--sh-text-secondary);
  transition:
    color var(--sh-transition-fast),
    background var(--sh-transition-fast),
    border-color var(--sh-transition-fast),
    transform var(--sh-transition-fast);
}
.cookie-sidebar__navigation a > span {
  display: inline-flex;
  width: 31px;
  height: 31px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #f4f1fa;
  color: var(--sh-text-muted);
  font-size: 0.67rem;
  font-weight: 800;
}
.cookie-sidebar__navigation strong,
.cookie-sidebar__navigation small {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cookie-sidebar__navigation strong {
  color: inherit;
  font-size: 0.75rem;
  font-weight: 750;
}
.cookie-sidebar__navigation small {
  margin-top: 1px;
  color: var(--sh-text-muted);
  font-size: 0.62rem;
}
.cookie-sidebar__navigation a:hover {
  border-color: rgba(113, 56, 232, 0.1);
  background: rgba(113, 56, 232, 0.055);
  color: var(--sh-primary-dark);
  transform: translateX(2px);
}
.cookie-sidebar__navigation a.is-active {
  border-color: rgba(113, 56, 232, 0.14);
  background: linear-gradient(
    135deg,
    rgba(113, 56, 232, 0.13),
    rgba(22, 184, 166, 0.07)
  );
  color: var(--sh-primary-dark);
}
.cookie-sidebar__navigation a.is-active > span {
  background: var(--sh-gradient-primary);
  color: #fff;
  box-shadow: 0 8px 18px rgba(113, 56, 232, 0.22);
}

.cookie-article {
  min-width: 0;
}
.cookie-section-card {
  position: relative;
  margin-bottom: 22px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--sh-border);
  border-radius: 22px;
  background: linear-gradient(145deg, #fff, #fcfbfe);
  box-shadow: 0 10px 32px rgba(31, 20, 52, 0.055);
  scroll-margin-top: calc(var(--sh-navbar-height) + 24px);
  transition:
    border-color var(--sh-transition),
    box-shadow var(--sh-transition),
    transform var(--sh-transition);
}
.cookie-section-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--sh-gradient-primary);
  opacity: 0;
  transition: opacity var(--sh-transition);
}
.cookie-section-card::after {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(113, 56, 232, 0.045);
  pointer-events: none;
}
.cookie-section-card:hover {
  border-color: rgba(113, 56, 232, 0.18);
  box-shadow: 0 18px 44px rgba(31, 20, 52, 0.09);
  transform: translateY(-2px);
}
.cookie-section-card:hover::before,
.cookie-section-card--highlight::before {
  opacity: 1;
}
.cookie-section-card--highlight {
  border-color: rgba(113, 56, 232, 0.17);
  background: linear-gradient(145deg, #fff, #faf7ff);
}
.cookie-section-card--contact {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 1),
    rgba(232, 250, 247, 0.55)
  );
}

.cookie-section-card__header {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--sh-border);
}
.cookie-section-card__number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--sh-text);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 850;
}
.cookie-section-card__icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--sh-primary-soft);
  color: var(--sh-primary);
  font-size: 1rem;
}
.cookie-section-card__eyebrow {
  display: block;
  color: var(--sh-primary);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.cookie-section-card__heading h2 {
  margin: 3px 0 0;
  color: var(--sh-text);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1.2;
}
.cookie-section-card__heading p {
  margin: 6px 0 0;
  color: var(--sh-text-muted);
  font-size: 0.8rem;
  line-height: 1.6;
}
.cookie-section-card__content {
  position: relative;
  z-index: 1;
  padding-top: 20px;
}
.cookie-copy {
  margin: 0 0 14px;
  color: var(--sh-text-secondary);
  font-size: 0.94rem;
  line-height: 1.85;
}
.cookie-copy:last-child {
  margin-bottom: 0;
}
.cookie-subheading {
  margin: 24px 0 9px;
  color: var(--sh-text);
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: -0.02em;
}
.cookie-subheading::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 16px;
  margin-right: 9px;
  border-radius: 999px;
  background: var(--sh-gradient-primary);
  vertical-align: -2px;
}
.cookie-inline-link {
  color: var(--sh-primary-dark);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(113, 56, 232, 0.25);
  text-underline-offset: 3px;
}
.cookie-inline-link:hover {
  color: var(--sh-primary);
}

.cookie-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 20px;
  padding: 0;
  list-style: none;
}
.cookie-list__item {
  position: relative;
  padding: 12px 14px 12px 43px;
  border: 1px solid var(--sh-border);
  border-radius: 13px;
  background: var(--sh-surface-soft);
  color: var(--sh-text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
}
.cookie-list__item::before {
  content: "\F26E";
  position: absolute;
  top: 12px;
  left: 13px;
  display: inline-flex;
  width: 21px;
  height: 21px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: var(--sh-secondary-soft);
  color: var(--sh-secondary-dark);
  font-family: "bootstrap-icons";
  font-size: 0.75rem;
}

.privacy-note {
  display: flex;
  gap: 13px;
  margin: 22px 0 4px;
  padding: 16px 17px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 15px;
  background: #f4f8ff;
  color: #365475;
}
.privacy-note > i {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--sh-info);
  font-size: 1.05rem;
}
.privacy-note p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.7;
}
.privacy-note--payment {
  border-color: rgba(113, 56, 232, 0.15);
  background: #f8f5ff;
  color: #594b77;
}
.privacy-note--payment > i {
  color: var(--sh-primary);
}
.privacy-note--security {
  border-color: rgba(22, 184, 166, 0.17);
  background: var(--sh-secondary-soft);
  color: #376e67;
}
.privacy-note--security > i {
  color: var(--sh-secondary-dark);
}

.cookie-rights-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}
.cookie-rights-grid > div {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  column-gap: 11px;
  padding: 15px;
  border: 1px solid var(--sh-border);
  border-radius: 15px;
  background: #fff;
}
.cookie-rights-grid i {
  grid-row: 1 / span 2;
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--sh-primary-soft);
  color: var(--sh-primary);
}
.cookie-rights-grid strong {
  color: var(--sh-text);
  font-size: 0.8rem;
}
.cookie-rights-grid span {
  margin-top: 2px;
  color: var(--sh-text-muted);
  font-size: 0.68rem;
  line-height: 1.5;
}

.privacy-contact-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(113, 56, 232, 0.14);
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(113, 56, 232, 0.08),
    rgba(22, 184, 166, 0.07)
  );
}
.privacy-contact-card__icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #fff;
  color: var(--sh-primary);
  box-shadow: var(--sh-shadow-xs);
}
.privacy-contact-card small {
  display: block;
  color: var(--sh-text-muted);
  font-size: 0.66rem;
}
.privacy-contact-card a {
  display: inline-block;
  margin-top: 2px;
  color: var(--sh-primary-dark);
  font-size: 0.84rem;
  font-weight: 800;
  word-break: break-word;
}
.privacy-contact-card > i {
  color: var(--sh-primary);
}

.cookie-section-card__back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  padding: 8px 11px;
  border-radius: 10px;
  background: var(--sh-primary-soft);
  color: var(--sh-primary-dark);
  font-size: 0.7rem;
  font-weight: 800;
  transition:
    transform var(--sh-transition),
    background var(--sh-transition);
}
.cookie-section-card__back:hover {
  background: #e7defc;
  color: var(--sh-primary-dark);
  transform: translateY(-1px);
}

.cookie-empty-state {
  padding: 52px 28px;
  border: 1px dashed rgba(113, 56, 232, 0.25);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
}
.cookie-empty-state > span {
  display: inline-flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  border-radius: 19px;
  background: var(--sh-primary-soft);
  color: var(--sh-primary);
  font-size: 1.35rem;
}
.cookie-empty-state h2 {
  margin: 17px 0 0;
  font-size: 1.45rem;
  font-weight: 850;
  letter-spacing: -0.04em;
}
.cookie-empty-state p {
  margin: 8px auto 0;
  color: var(--sh-text-muted);
}
.cookie-empty-state button {
  margin-top: 18px;
  padding: 10px 15px;
  border: 0;
  border-radius: 12px;
  background: var(--sh-gradient-primary);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
}

.cookie-important-note {
  display: flex;
  gap: 14px;
  margin-top: 26px;
  padding: 20px;
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 17px;
  background: #fff8e7;
  color: #6c4a08;
}
.cookie-important-note > span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: #fff;
  color: #c27a00;
}
.cookie-important-note strong {
  font-size: 0.84rem;
}
.cookie-important-note p {
  margin: 5px 0 0;
  font-size: 0.76rem;
  line-height: 1.7;
}

/* Final CTA */
.cookie-final-cta {
  position: relative;
  z-index: 2;
  padding: 38px 0 20px;
}
.cookie-final-cta__card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 30px 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  background: linear-gradient(135deg, #261348 0%, #44208a 52%, #136e70 100%);
  color: #fff;
  box-shadow: 0 25px 65px rgba(35, 20, 61, 0.22);
}
.cookie-final-cta__card::before {
  content: "";
  position: absolute;
  top: -100px;
  right: 12%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
}
.cookie-final-cta__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.11);
  font-size: 1.35rem;
}
.cookie-final-cta__content {
  position: relative;
  z-index: 1;
}
.cookie-final-cta__content > span {
  color: #d9c9ff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.cookie-final-cta__content h2 {
  margin: 4px 0 0;
  color: #fff;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 850;
  letter-spacing: -0.04em;
}
.cookie-final-cta__content p {
  max-width: 700px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
  line-height: 1.7;
}
.cookie-final-cta__button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 19px;
  border-radius: 14px;
  background: #fff;
  color: var(--sh-primary-deep);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  font-size: 0.82rem;
  font-weight: 850;
  transition:
    transform var(--sh-transition),
    box-shadow var(--sh-transition);
}
.cookie-final-cta__button:hover {
  color: var(--sh-primary-deep);
  transform: translateY(-3px);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.25);
}

[hidden] {
  display: none !important;
}

@media (max-width: 1199.98px) {
  .cookie-layout {
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 24px;
  }
  .cookie-summary__card {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .cookie-summary__principles {
    grid-column: 2;
    justify-content: flex-start;
  }
}

@media (max-width: 991.98px) {
  .cookie-hero {
    padding: 72px 0 58px;
  }
  .cookie-layout {
    grid-template-columns: 1fr;
  }
  .cookie-sidebar {
    position: relative;
    top: auto;
    max-height: none;
  }
  .cookie-sidebar__navigation {
    display: grid;
    max-height: 320px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cookie-search-card {
    grid-template-columns: 1fr;
  }
  .cookie-search__status {
    grid-column: auto;
    margin: -13px 0 0;
  }
  .cookie-final-cta__card {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .cookie-final-cta__button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 767.98px) {
  .cookie-hero {
    padding: 58px 0 44px;
  }
  .cookie-hero__title {
    font-size: clamp(2.65rem, 13vw, 4.2rem);
  }
  .cookie-hero__meta {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .cookie-summary__card {
    grid-template-columns: 1fr;
    padding: 23px;
  }
  .cookie-summary__principles {
    grid-column: auto;
    justify-content: flex-start;
  }
  .cookie-search-card {
    padding: 20px;
  }
  .cookie-sidebar__navigation {
    grid-template-columns: 1fr;
    max-height: 350px;
  }
  .cookie-section-card {
    padding: 22px 19px;
    border-radius: 18px;
  }
  .cookie-section-card__header {
    grid-template-columns: auto auto;
  }
  .cookie-section-card__heading {
    grid-column: 1 / -1;
  }
  .cookie-rights-grid {
    grid-template-columns: 1fr;
  }
  .cookie-final-cta__card {
    grid-template-columns: 1fr;
    padding: 25px 22px;
  }
  .cookie-final-cta__button {
    grid-column: auto;
    width: 100%;
  }
}

@media (max-width: 479.98px) {
  .cookie-hero__eyebrow {
    font-size: 0.65rem;
  }
  .cookie-hero__description {
    font-size: 0.94rem;
  }
  .cookie-summary__principles {
    align-items: stretch;
    flex-direction: column;
  }
  .cookie-summary__principles div {
    width: fit-content;
  }
  .cookie-search-card__heading {
    align-items: flex-start;
  }
  .cookie-search__input {
    font-size: 0.86rem;
  }
  .cookie-section-card__number,
  .cookie-section-card__icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }
  .privacy-contact-card {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .privacy-contact-card > i {
    display: none;
  }
  .cookie-important-note {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-page__orb {
    animation: none;
  }
  .cookie-section-card:hover,
  .cookie-sidebar__navigation a:hover,
  .cookie-final-cta__button:hover {
    transform: none;
  }
}

/* =========================================================
   COOKIE POLICY — PAGE-SPECIFIC COMPONENTS
   Base styling is mapped directly from the working
   Privacy Policy stylesheet.
========================================================= */

.cookie-sidebar__navigation a > div {
  min-width: 0;
}

.cookie-sidebar__navigation a small {
  display: block;
  margin-top: 2px;
  color: var(--sh-text-muted);
  font-size: 0.62rem;
}

/* Sidebar support */
.cookie-sidebar__help {
  display: flex;
  gap: 11px;
  margin: 10px;
  padding: 13px;
  border: 1px solid rgba(22, 184, 166, 0.15);
  border-radius: 14px;
  background: var(--sh-primary-soft);
}
.cookie-sidebar__help > span {
  display: inline-flex;
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: #fff;
  color: var(--sh-secondary-dark);
}
.cookie-sidebar__help strong {
  color: #245e58;
  font-size: 0.75rem;
}
.cookie-sidebar__help p {
  margin: 3px 0 7px;
  color: #4f7772;
  font-size: 0.65rem;
  line-height: 1.5;
}
.cookie-sidebar__help a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--sh-secondary-dark);
  font-size: 0.67rem;
  font-weight: 800;
}

/* Section text */
.cookie-section-card__content > p {
  margin: 0;
  color: var(--sh-text-secondary);
  font-size: 0.91rem;
  line-height: 1.82;
}

.cookie-section-card__content > p + p,
.cookie-section-card__content > p + ul,
.cookie-section-card__content > p + ol,
.cookie-section-card__content > h3 + p,
.cookie-section-card__content > p + h3 {
  margin-top: 14px;
}

.cookie-section-card__content h3 {
  margin: 20px 0 0;
  color: var(--sh-text);
  font-size: 0.98rem;
  font-weight: 820;
  letter-spacing: -0.02em;
}

/* Lists */
.cookie-section-card__content ul,
.cookie-section-card__content ol {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.cookie-section-card__content li {
  position: relative;
  padding-left: 31px;
  color: var(--sh-text-secondary);
  font-size: 0.88rem;
  line-height: 1.72;
}

.cookie-section-card__content li::before {
  content: "\F26E";
  position: absolute;
  top: 2px;
  left: 0;
  display: inline-flex;
  width: 21px;
  height: 21px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: var(--sh-secondary-soft);
  color: var(--sh-secondary-dark);
  font-family: "bootstrap-icons";
  font-size: 0.72rem;
}

/* Important browser note */
.cookie-important-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 15px;
  margin-top: 24px;
  padding: 22px;
  border: 1px solid rgba(113, 56, 232, 0.16);
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(113, 56, 232, 0.08),
    rgba(255, 255, 255, 0.96)
  );
  box-shadow: var(--sh-shadow-sm);
}

.cookie-important-note__icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: var(--sh-primary-soft);
  color: var(--sh-primary);
  font-size: 1.15rem;
}

.cookie-important-note__content small {
  color: var(--sh-primary);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.cookie-important-note__content h2 {
  margin: 3px 0 7px;
  color: var(--sh-text);
  font-size: 1.14rem;
  font-weight: 820;
}

.cookie-important-note__content p {
  margin: 0;
  color: var(--sh-text-secondary);
  font-size: 0.82rem;
  line-height: 1.7;
}

@media (max-width: 767.98px) {
  .cookie-important-note {
    grid-template-columns: 1fr;
  }
}
