/* Claid Design System */

:root {
  /* Logo tree / earth tones */
  --claid-dark: #5c4d3d;
  --claid-brown: #8a7358;
  --claid-tan: #b09475;
  --claid-olive: #5c6647;
  --claid-red: #c41e3a;
  --claid-red-dark: #9f1239;
  --claid-wine: #7c2d4a;

  /* Indigo brand */
  --brand-50: #eef2ff;
  --brand-100: #e0e7ff;
  --brand-200: #c7d2fe;
  --brand-500: #6366f1;
  --brand-600: #4f46e5;
  --brand-700: #4338ca;
  --brand-800: #3730a3;

  /* Blended gradients — aligned with hero */
  --gradient-claid: linear-gradient(135deg, #7f1d1d 0%, #dc2626 42%, #9f1239 78%, #7c1d3a 100%);
  --gradient-claid-soft: linear-gradient(135deg, #991b1b 0%, #ef4444 50%, #b91c1c 100%);
  --gradient-claid-hero: linear-gradient(115deg, #5c4d3d 0%, #7f1d1d 14%, #b91c1c 38%, #dc2626 58%, #9f1239 82%, #7c1d3a 100%);
  --gradient-claid-surface: linear-gradient(180deg, rgba(254, 242, 242, 0.92) 0%, rgba(254, 226, 226, 0.45) 45%, #f8fafc 100%);
  --gradient-claid-panel: linear-gradient(135deg, rgba(254, 242, 242, 0.9), rgba(254, 226, 226, 0.55));
  --claid-accent: #b91c1c;
  --claid-accent-light: #dc2626;

  --shadow-claid: 0 8px 24px rgba(220, 38, 38, 0.28), 0 4px 12px rgba(79, 70, 229, 0.08);
  --site-nav-height: 4rem;
  --contact-banner-height: 2.25rem;
  --site-header-offset: var(--site-nav-height);

  --slate-50: #f8fafc;
  --slate-900: #0f172a;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
}

@media (min-width: 1024px) {
  :root {
    --site-nav-height: 4.25rem;
  }
}

body.has-contact-banner {
  --site-header-offset: calc(var(--contact-banner-height) + var(--site-nav-height));
}

body.dashboard-page {
  --site-header-offset: var(--site-nav-height);
}

@media (max-width: 639px) {
  body.has-contact-banner {
    --contact-banner-height: 2.75rem;
  }
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

/* Brand logo */
.brand-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.brand-logo-link--footer {
  display: block;
}

.brand-logo {
  display: block;
  width: auto;
  object-fit: contain;
  object-position: left center;
  transition: opacity 0.2s, transform 0.2s;
}

.brand-logo--default {
  height: 2.75rem;
  max-width: min(220px, 58vw);
}

.brand-logo--compact {
  height: 2.25rem;
  max-width: min(180px, 50vw);
}

.brand-logo--footer {
  height: 2.5rem;
  max-width: 200px;
}

.brand-logo-link:hover .brand-logo {
  opacity: 0.92;
}

@media (min-width: 768px) {
  .brand-logo--default {
    height: 3rem;
    max-width: 240px;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.75rem;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  line-height: 1.25;
}

.btn-primary {
  background: var(--gradient-claid);
  color: white;
  box-shadow: var(--shadow-claid);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(220, 38, 38, 0.35), 0 6px 16px rgba(79, 70, 229, 0.1);
  filter: brightness(1.03);
}

.btn-secondary {
  background: white;
  color: var(--claid-accent);
  border: 1px solid rgba(220, 38, 38, 0.22);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--gradient-claid-panel);
  border-color: rgba(220, 38, 38, 0.35);
  color: #7f1d1d;
}

.btn-ghost {
  background: transparent;
  color: #475569;
}

.btn-ghost:hover {
  background: var(--gradient-claid-panel);
  color: var(--claid-accent);
}

.btn-white {
  background: white;
  color: var(--claid-accent);
  box-shadow: var(--shadow-lg);
}

.btn-white:hover {
  background: #f8fafc;
  transform: translateY(-1px);
}

.btn-outline-light {
  background: rgba(15, 23, 42, 0.25);
  border-color: rgba(255, 255, 255, 0.65);
  color: #ffffff;
  backdrop-filter: blur(8px);
  text-shadow: 0 1px 1px rgba(15, 23, 42, 0.2);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  border-radius: 0.875rem;
}

.btn-sm {
  padding: 0.375rem 0.875rem;
  font-size: 0.8125rem;
}

/* Form controls */
.label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 0.375rem;
}

.input,
.select,
textarea.input {
  width: 100%;
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  color: #0f172a;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.input:focus,
.select:focus,
textarea.input:focus {
  outline: none;
  border-color: rgba(220, 38, 38, 0.45);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

.input::placeholder {
  color: #94a3b8;
}

/* Cards */
.card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
}

.card-hover {
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.card-hover:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(220, 38, 38, 0.28);
}

/* Fixed top navigation (landing + public pages) */
.contact-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 102;
  min-height: var(--contact-banner-height);
  height: auto;
  padding: 0.3rem 0;
  background: var(--gradient-claid);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 1px 4px rgba(127, 29, 29, 0.2);
}

.contact-banner-inner {
  height: 100%;
  display: flex;
  align-items: center;
}

.contact-banner-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

@media (min-width: 640px) {
  .contact-banner-list {
    justify-content: flex-end;
    font-size: 0.75rem;
    gap: 0.5rem 1.75rem;
  }
}

.contact-banner-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.contact-banner-link:hover {
  opacity: 0.88;
  color: #fff;
}

.contact-banner-address {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.contact-banner-icon {
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
  opacity: 0.9;
}

body.has-contact-banner .site-nav {
  top: var(--contact-banner-height);
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.75);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.site-nav-scrolled,
.landing-nav-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(226, 232, 240, 0.95);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
}

.site-nav-inner {
  position: relative;
}

.site-nav-mobile-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 101;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
  padding: 0.75rem 1rem 1rem;
}

.page-with-nav {
  padding-top: var(--site-header-offset);
}

.site-nav-spacer {
  height: var(--site-header-offset);
  flex-shrink: 0;
  pointer-events: none;
}

.glass-nav {
  background: rgba(255, 255, 255, 0.92);
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.125rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #475569;
  border-radius: 0.75rem;
  transition: color 0.2s, background 0.2s;
}

.nav-dropdown-trigger:hover,
.nav-dropdown-trigger-active {
  color: var(--claid-accent);
  background: var(--gradient-claid-panel);
}

.nav-dropdown-panel {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 0.35rem);
  min-width: 14rem;
  padding: 0.5rem;
  border-radius: 0.875rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  z-index: 110;
}

.nav-dropdown-panel a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #475569;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.nav-dropdown-panel a:hover {
  background: var(--gradient-claid-panel);
  color: var(--claid-accent);
}

.nav-dropdown-panel-end {
  left: auto;
  right: 0;
  transform: none;
}

.nav-dropdown-divider {
  height: 1px;
  margin: 0.375rem 0.5rem;
  background: #e2e8f0;
}

[x-cloak] {
  display: none !important;
}

/* Hero — reddish blend with subtle tree + indigo accents */
.claid-hero {
  background: var(--gradient-claid-hero);
  color: #fff;
  border-bottom: 1px solid rgba(220, 38, 38, 0.35);
  position: relative;
  overflow: hidden;
}

.claid-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 50% at 75% 8%, rgba(239, 68, 68, 0.38), transparent 55%),
    radial-gradient(ellipse 55% 45% at 10% 88%, rgba(185, 28, 28, 0.42), transparent 58%),
    radial-gradient(ellipse 35% 28% at 92% 75%, rgba(99, 102, 241, 0.12), transparent 65%);
  pointer-events: none;
}

.claid-hero>* {
  position: relative;
  z-index: 1;
}

.claid-section-dark {
  background: var(--gradient-claid-hero);
  color: #fff;
  position: relative;
}

.claid-section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 80% 15%, rgba(239, 68, 68, 0.32), transparent 58%),
    radial-gradient(ellipse 40% 35% at 12% 88%, rgba(185, 28, 28, 0.28), transparent 60%);
  pointer-events: none;
}

.claid-section-dark>* {
  position: relative;
  z-index: 1;
}

.gradient-hero {
  background: var(--gradient-claid-hero);
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.gradient-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 50% at 75% 8%, rgba(239, 68, 68, 0.38), transparent 55%),
    radial-gradient(ellipse 55% 45% at 10% 88%, rgba(185, 28, 28, 0.42), transparent 58%),
    radial-gradient(ellipse 35% 28% at 92% 75%, rgba(99, 102, 241, 0.12), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.gradient-hero>* {
  position: relative;
  z-index: 1;
}

.hero-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-stat {
  text-align: center;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  transition: transform 0.2s, background 0.2s;
}

.hero-stat:hover {
  transform: translateY(-2px);
  background: rgba(15, 23, 42, 0.45);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-stat-value {
  font-size: 1.875rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero-stat-value {
    font-size: 2.25rem;
  }
}

.hero-stat-label {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  margin-bottom: 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: #34d399;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.35);
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: #ffffff;
  text-shadow: 0 2px 16px rgba(15, 23, 42, 0.35);
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.25rem;
  }
}

.hero-title-accent {
  color: #fde68a;
  text-shadow: 0 1px 2px rgba(15, 23, 42, 0.4);
}

.hero-lead {
  margin-top: 1.5rem;
  max-width: 36rem;
  font-size: 1.125rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}

@media (min-width: 640px) {
  .hero-lead {
    font-size: 1.25rem;
  }
}

.hero-layout {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr 1.05fr;
    gap: 3.5rem;
  }
}

.hero-copy {
  text-align: center;
  position: relative;
  isolation: isolate;
}

@media (min-width: 1024px) {
  .hero-copy {
    text-align: left;
    padding-right: 0.5rem;
  }

  .hero-copy::before {
    content: '';
    position: absolute;
    inset: -2.5rem -1.5rem -2.5rem -2.5rem;
    z-index: -1;
    border-radius: 1.5rem;
    background: radial-gradient(ellipse 85% 90% at 15% 45%, rgba(15, 23, 42, 0.55), transparent 72%);
    pointer-events: none;
  }
}

.hero-image-col {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1024px) {
  .hero-image-col {
    max-width: none;
    margin: 0;
  }
}

.hero-image-wrap {
  position: relative;
  margin: 0;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow:
    0 25px 50px -12px rgba(15, 23, 42, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.12);
}

.hero-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
  pointer-events: none;
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 30%;
}

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

.trust-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #64748b;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 9999px;
}

.steps-line {
  display: none;
}

@media (min-width: 768px) {
  .steps-line {
    display: block;
    position: absolute;
    top: 1.5rem;
    left: 16.666%;
    right: 16.666%;
    height: 2px;
    background: linear-gradient(90deg, #c7d2fe, #6366f1, #c7d2fe);
    z-index: 0;
  }

  .step-item {
    position: relative;
    z-index: 1;
  }
}

/* Sections */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--claid-accent);
  background: var(--gradient-claid-panel);
  border-radius: 9999px;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: #64748b;
  max-width: 36rem;
  margin-top: 0.75rem;
}

/* Feature cards */
.feature-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.875rem;
  background: var(--gradient-claid-panel);
  color: var(--claid-accent);
}

/* Job cards */
.job-card {
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  text-decoration: none;
  color: inherit;
}

.job-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(220, 38, 38, 0.3);
}

.job-card:hover h3 {
  color: var(--claid-accent);
}

.job-card-image {
  width: 100%;
  height: 10rem;
  object-fit: cover;
}

.job-card-placeholder {
  width: 100%;
  height: 10rem;
  background: var(--gradient-claid-panel);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f87171;
}

/* Dashboard */
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 0.875rem;
  border-radius: 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #64748b;
  transition: all 0.15s;
}

.sidebar-link:hover {
  background: var(--gradient-claid-panel);
  color: var(--claid-accent);
}

.sidebar-link.active {
  background: var(--gradient-claid-panel);
  color: var(--claid-accent);
  font-weight: 600;
  box-shadow: inset 0 0 0 1px rgba(220, 38, 38, 0.22);
}

.dash-stat {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.dash-stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.dash-stat-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #64748b;
  margin-top: 0.25rem;
}

/* Auth — aligned with marketing pages */
.auth-benefits-panel {
  border-radius: 1rem;
  padding: 1.75rem;
  background: var(--gradient-claid-hero);
  box-shadow: var(--shadow-claid);
}

.auth-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0.875rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
}

.auth-benefit-num {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
}

.auth-card {
  background: white;
  border: 1px solid rgba(220, 38, 38, 0.14);
  border-radius: 1.25rem;
  box-shadow: var(--shadow-md);
  padding: 2rem;
}

.form-error {
  margin-top: 0.35rem;
  font-size: 0.75rem;
  color: #dc2626;
  font-weight: 500;
}

/* Tables */
.table-modern {
  width: 100%;
  font-size: 0.875rem;
}

.table-modern thead {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.table-modern th {
  text-align: left;
  padding: 0.75rem 1rem;
  font-weight: 600;
  color: #64748b;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.table-modern td {
  padding: 0.875rem 1rem;
  border-top: 1px solid #f1f5f9;
  color: #334155;
}

.table-modern tbody tr:hover {
  background: #fafafa;
}

/* Stage badges */
.stage-badge {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.stage-applied {
  background: #e0e7ff;
  color: #3730a3;
}

.stage-under_review {
  background: #fef3c7;
  color: #92400e;
}

.stage-shortlisted {
  background: #d1fae5;
  color: #065f46;
}

.stage-interview_scheduled {
  background: #dbeafe;
  color: #1e40af;
}

.stage-hired {
  background: #bbf7d0;
  color: #166534;
}

.stage-rejected {
  background: #fee2e2;
  color: #991b1b;
}

/* Page headers (public) */
.page-header {
  background: var(--gradient-claid-surface);
  border-bottom: 1px solid rgba(220, 38, 38, 0.12);
  padding: 3rem 0;
}

.page-header-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.03em;
}

/* Video hero (used on About page) */
.page-header-video {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-bottom: none;
  background: #0f172a;
}

.page-header-video__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.page-header-video__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(92, 30, 30, 0.78) 0%,
      rgba(15, 23, 42, 0.72) 60%,
      rgba(99, 26, 26, 0.65) 100%);
  pointer-events: none;
}

.page-header-video__content {
  position: relative;
  z-index: 2;
  padding: 5rem 1rem 4.5rem;
  text-align: center;
  color: #fff;
}

.page-header-video__badge {
  display: inline-block;
  padding: 0.3rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  backdrop-filter: blur(4px);
}

.page-header-video__title {
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  margin-top: 0.85rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.page-header-video__sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 0.75rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

.page-header-video__scroll {
  margin-top: 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Image hero (services and similar pages) */
.page-header-image {
  position: relative;
  overflow: hidden;
  min-height: clamp(280px, 42vw, 420px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f172a;
}
.page-header-image__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}
.page-header-image__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(92, 30, 30, 0.78) 0%,
    rgba(15, 23, 42, 0.72) 60%,
    rgba(99, 26, 26, 0.65) 100%
  );
  pointer-events: none;
}

/* Animations */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.35s;
}

@media (prefers-reduced-motion: reduce) {
  .animate-fade-up {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

[x-cloak] {
  display: none !important;
}

/* Landing CTA inner glow */
.cta-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.12), transparent 55%);
  pointer-events: none;
}

/* ——— Premium landing page ——— */
.landing-page {
  background: #ffffff;
  color: #0f172a;
}

.landing-logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem 2.5rem;
}

.landing-logo-placeholder {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: -0.02em;
  opacity: 0.85;
  transition: color 0.2s, opacity 0.2s;
}

.landing-logo-placeholder:hover {
  color: #64748b;
  opacity: 1;
}

/* Hero dashboard mock */
.hero-mock {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 32px 64px -16px rgba(15, 23, 42, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

.hero-mock-bar {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-mock-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.15);
}

.hero-mock-dot:first-child {
  background: #f87171;
}

.hero-mock-dot:nth-child(2) {
  background: #fbbf24;
}

.hero-mock-dot:nth-child(3) {
  background: #34d399;
}

.hero-mock-body {
  padding: 1rem;
  display: grid;
  gap: 0.75rem;
}

.hero-mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.hero-mock-stat {
  padding: 0.625rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-mock-stat-label {
  font-size: 0.625rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-mock-stat-value {
  font-size: 1rem;
  font-weight: 700;
  color: #f8fafc;
  margin-top: 0.125rem;
}

.hero-mock-pipeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.375rem;
  min-height: 5.5rem;
}

.hero-mock-col {
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.375rem;
}

.hero-mock-col-title {
  font-size: 0.5625rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  margin-bottom: 0.375rem;
}

.hero-mock-card {
  height: 1.25rem;
  border-radius: 0.25rem;
  background: linear-gradient(90deg, rgba(99, 102, 241, 0.35), rgba(129, 140, 248, 0.2));
  margin-bottom: 0.25rem;
}

.hero-mock-card:nth-child(3) {
  opacity: 0.6;
  width: 85%;
}

/* Dashboard preview section */
.dashboard-preview {
  position: relative;
  border-radius: 1.25rem;
  border: 1px solid #e2e8f0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 40%);
  box-shadow:
    0 24px 48px -12px rgba(15, 23, 42, 0.12),
    0 0 0 1px rgba(99, 102, 241, 0.06);
  overflow: hidden;
}

.dashboard-preview-inner {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .dashboard-preview-inner {
    grid-template-columns: 220px 1fr;
  }
}

.dp-sidebar {
  padding: 1.25rem;
  background: #f8fafc;
  border-right: 1px solid #e2e8f0;
  display: none;
}

@media (min-width: 1024px) {
  .dp-sidebar {
    display: block;
  }
}

.dp-nav-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #64748b;
  margin-bottom: 0.25rem;
}

.dp-nav-item.active {
  background: white;
  color: var(--claid-accent);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.dp-main {
  padding: 1.25rem;
}

.dp-kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

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

.dp-kpi {
  padding: 0.875rem;
  border-radius: 0.75rem;
  background: white;
  border: 1px solid #e2e8f0;
}

.dp-kpi-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.dp-kpi-label {
  font-size: 0.6875rem;
  color: #64748b;
  margin-top: 0.125rem;
}

.dp-pipeline {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

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

.dp-stage {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 0.75rem;
  min-height: 7rem;
}

.dp-stage-head {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #64748b;
  margin-bottom: 0.5rem;
}

.dp-candidate {
  padding: 0.5rem;
  border-radius: 0.5rem;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  margin-bottom: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #334155;
}

.dp-feed {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  background: white;
  border: 1px solid #e2e8f0;
}

.dp-feed-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.625rem 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.8125rem;
}

.dp-feed-item:last-child {
  border-bottom: none;
}

/* Testimonials */
.testimonial-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 1.25rem;
  padding: 1.75rem;
  height: 100%;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
  border-color: #c7d2fe;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: white;
  flex-shrink: 0;
}

.testimonial-quote {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #475569;
  margin-top: 1.25rem;
}

/* Pricing cards */
.pricing-card {
  position: relative;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 1.25rem;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.pricing-card-featured {
  border-color: rgba(220, 38, 38, 0.45);
  box-shadow: 0 0 0 1px rgba(220, 38, 38, 0.35), var(--shadow-claid);
}

.pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 0.875rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: white;
  background: var(--gradient-claid);
  border-radius: 9999px;
  white-space: nowrap;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
  line-height: 1;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: #475569;
  margin-bottom: 0.625rem;
}

.pricing-check {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 9999px;
  background: var(--gradient-claid-panel);
  color: var(--claid-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.0625rem;
}

.landing-footer {
  background: linear-gradient(165deg, #7f1d1d 0%, #991b1b 38%, #5c4d3d 72%, #312e81 100%);
  color: #94a3b8;
}

.landing-footer-link {
  color: #94a3b8;
  transition: color 0.15s;
}

.landing-footer-link:hover {
  color: #fecaca;
}

.landing-social {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.625rem;
  background: rgba(255, 255, 255, 0.06);
  color: #94a3b8;
  transition: background 0.15s, color 0.15s;
}

.landing-social:hover {
  background: rgba(99, 102, 241, 0.25);
  color: #ffffff;
}

.landing-newsletter-input {
  width: 100%;
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  color: #f8fafc;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.75rem;
}

.landing-newsletter-input::placeholder {
  color: #64748b;
}

.landing-newsletter-input:focus {
  outline: none;
  border-color: rgba(220, 38, 38, 0.5);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.18);
}

.feature-card-premium {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 1.25rem;
  padding: 1.75rem;
  height: 100%;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s, border-color 0.25s;
}

.feature-card-premium:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(220, 38, 38, 0.15);
  border-color: rgba(220, 38, 38, 0.28);
}

.feature-icon-lg {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-claid-panel);
  color: var(--claid-accent);
  margin-bottom: 1.25rem;
  transition: transform 0.2s;
}

.feature-card-premium:hover .feature-icon-lg {
  transform: scale(1.05);
}

@media (prefers-reduced-motion: reduce) {

  .feature-card-premium:hover,
  .testimonial-card:hover,
  .pricing-card:hover,
  .hero-stat:hover {
    transform: none;
  }
}

/* Employer manage jobs & ATS */
.employer-job-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
}

.employer-job-card-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.employer-job-type {
  font-size: 0.875rem;
  font-weight: 700;
}

.employer-job-type-basic {
  color: #0d9488;
}

.employer-job-type-standard {
  color: #2563eb;
}

.employer-job-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-top: 0.25rem;
}

.employer-job-title a {
  color: #1d4ed8;
  text-decoration: none;
}

.employer-job-title a:hover {
  text-decoration: underline;
}

.employer-job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #64748b;
}

.employer-job-meta span {
  background: #f1f5f9;
  padding: 0.125rem 0.5rem;
  border-radius: 0.375rem;
}

.employer-job-expiry {
  font-size: 0.8125rem;
  color: #64748b;
  margin-top: 0.5rem;
}

.employer-job-status {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.employer-job-status-online {
  background: #dcfce7;
  color: #166534;
}

.employer-job-status-expired {
  background: #fee2e2;
  color: #991b1b;
}

.profile-photo-preview {
  flex-shrink: 0;
}

.profile-photo-img {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 9999px;
  object-fit: cover;
  border: 3px solid rgba(220, 38, 38, 0.2);
  box-shadow: var(--shadow-md);
}

.profile-photo-placeholder {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 9999px;
  background: var(--gradient-claid-panel);
  border: 2px solid rgba(220, 38, 38, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.employer-job-status-draft {
  background: #f1f5f9;
  color: #475569;
}

.employer-funnel {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
}

.employer-funnel-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 7rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  color: #475569;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}

.employer-funnel-item strong {
  font-size: 1rem;
  color: #0f172a;
  margin-top: 0.25rem;
}

.employer-funnel-item:hover,
.employer-funnel-item-active {
  background: var(--gradient-claid-panel);
  border-color: rgba(220, 38, 38, 0.35);
  color: var(--claid-accent);
}

.employer-job-card-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
}

.employer-feature-pill {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.375rem 0.75rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  color: #334155;
}

.employer-feature-pill-muted {
  color: #64748b;
  border-style: dashed;
}

.employer-feature-pill-link {
  color: var(--claid-accent);
  border-color: rgba(220, 38, 38, 0.25);
  text-decoration: none;
}

.employer-filter-chip {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.375rem 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 9999px;
  color: #475569;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.employer-filter-chip.active,
.employer-filter-chip:hover {
  background: var(--gradient-claid-panel);
  border-color: rgba(220, 38, 38, 0.3);
  color: var(--claid-accent);
}

.employer-stage-link {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: #475569;
  text-decoration: none;
}

.employer-stage-link span {
  font-weight: 700;
  color: #0f172a;
}

.employer-stage-link.active,
.employer-stage-link:hover {
  background: var(--gradient-claid-panel);
  color: var(--claid-accent);
}

.employer-match-tag {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  color: #475569;
}

.rating-btn {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  cursor: pointer;
}

.rating-btn-suitable.active,
.rating-btn-suitable:hover {
  background: #dcfce7;
  border-color: #86efac;
  color: #166534;
}

.rating-btn-maybe.active,
.rating-btn-maybe:hover {
  background: #dbeafe;
  border-color: #93c5fd;
  color: #1e40af;
}

.rating-btn-not_suitable.active,
.rating-btn-not_suitable:hover {
  background: #fee2e2;
  border-color: #fca5a5;
  color: #991b1b;
}

.rating-btn-not_rated.active,
.rating-btn-not_rated:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #475569;
}

/* Claid accent utilities (hero palette) */
.claid-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: 0.375rem;
  background: var(--gradient-claid-panel);
  color: var(--claid-accent);
  border: 1px solid rgba(220, 38, 38, 0.18);
}

.claid-highlight-card {
  padding: 1.25rem;
  border-radius: 0.875rem;
  background: var(--gradient-claid-panel);
  border: 1px solid rgba(220, 38, 38, 0.15);
}

.claid-pill {
  display: inline-block;
  padding: 0.25rem 0.875rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--gradient-claid-hero);
  border-radius: 9999px;
  white-space: nowrap;
}

.claid-media-panel {
  background: var(--gradient-claid-hero);
}

.claid-progress {
  height: 100%;
  border-radius: 9999px;
  background: var(--gradient-claid-hero);
}

.claid-ring {
  box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.4);
}

.claid-nav-cta {
  display: block;
  text-align: center;
  font-weight: 600;
  color: var(--claid-accent) !important;
  background: var(--gradient-claid-panel) !important;
  border-radius: 0.75rem;
}

.claid-notif-unread {
  border-color: rgba(220, 38, 38, 0.28) !important;
  background: var(--gradient-claid-panel) !important;
}

.claid-link {
  color: var(--claid-accent);
}

.claid-link:hover {
  color: #7f1d1d;
}

/* Marketing & public content */
.page-content-wrap {
  background: var(--gradient-claid-surface);
}

.card-claid {
  border-color: rgba(220, 38, 38, 0.14);
  box-shadow: var(--shadow-md);
}

.prose-claid a:not(.btn):not(.marketing-card) {
  color: var(--claid-accent);
  font-weight: 600;
  text-decoration: none;
}

.prose-claid a:not(.btn):not(.marketing-card):hover {
  color: #7f1d1d;
}

.marketing-card {
  display: block;
  padding: 1.25rem;
  border-radius: 0.875rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.marketing-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -8px rgba(220, 38, 38, 0.2);
  border-color: rgba(220, 38, 38, 0.35);
}

.marketing-card:hover h3 {
  color: var(--claid-accent);
}

/* Service cards */
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.75rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(220, 38, 38, 0.18);
  border-color: rgba(220, 38, 38, 0.3);
}

.service-card-compact {
  padding: 1.5rem;
}

.service-card-featured {
  border-color: rgba(220, 38, 38, 0.4);
  box-shadow: 0 0 0 1px rgba(220, 38, 38, 0.2), var(--shadow-md);
}

.service-card-badge {
  position: absolute;
  top: -0.65rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.2rem 0.75rem;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--gradient-claid);
  border-radius: 9999px;
  white-space: nowrap;
}

.service-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 0.875rem;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(220, 38, 38, 0.04));
  color: var(--claid-accent);
  margin-bottom: 1.25rem;
}

.service-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.service-card-desc {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #64748b;
  flex: 1;
}

.service-card-desc-block {
  flex: 1;
  margin-top: 0.625rem;
}

.service-card-desc-block .service-card-desc {
  margin-top: 0;
  margin-bottom: 0.625rem;
  font-size: 0.8125rem;
}

.service-card-desc-block .service-card-desc:last-child {
  margin-bottom: 0;
}

.service-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-top: 1rem;
  padding: 0;
  list-style: none;
}

.service-card-tags li {
  padding: 0.2rem 0.625rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #991b1b;
  background: #fef2f2;
  border: 1px solid rgba(220, 38, 38, 0.15);
  border-radius: 9999px;
}

.service-card-features {
  margin-top: 1rem;
  padding: 0;
  list-style: none;
}

.service-card-features li {
  position: relative;
  padding-left: 1.125rem;
  font-size: 0.8125rem;
  color: #64748b;
  margin-bottom: 0.375rem;
}

.service-card-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 9999px;
  background: var(--claid-accent);
  opacity: 0.65;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--claid-accent);
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}

.service-card-link:hover {
  gap: 0.625rem;
  color: #7f1d1d;
}

.service-detail-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-detail-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: #475569;
  margin-bottom: 0.625rem;
}

/* Job placement service page */
.service-methodology-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid gap: 0.875rem;
}

.service-methodology-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.5;
}

.service-methodology-step {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: var(--gradient-claid);
}

.service-media-card {
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-media-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.service-media-card-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.service-media-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-media-card:hover .service-media-card-image img {
  transform: scale(1.04);
}

.service-media-card-caption {
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.4;
  border-top: 1px solid #f1f5f9;
}

.service-tier-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-tier-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -10px rgba(220, 38, 38, 0.16);
  border-color: rgba(220, 38, 38, 0.28);
}

.service-tier-card-featured {
  border-color: rgba(220, 38, 38, 0.4);
  box-shadow: 0 0 0 1px rgba(220, 38, 38, 0.18), var(--shadow-md);
}

.service-tier-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  padding-right: 0.5rem;
}

.service-tier-card-price {
  margin-top: 0.875rem;
}

.service-tier-card-amount {
  display: block;
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--claid-accent);
  line-height: 1.2;
}

.service-tier-card-period {
  display: block;
  margin-top: 0.125rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #94a3b8;
}

.service-tier-card-tagline {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #64748b;
  flex: 1;
}

.service-tier-card-features {
  margin-top: 1rem;
  padding: 0;
  list-style: none;
}

.service-tier-card-features li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.75rem;
  color: #64748b;
  margin-bottom: 0.35rem;
  line-height: 1.45;
}

.service-tier-card-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 9999px;
  background: var(--claid-accent);
  opacity: 0.7;
}

.service-tier-hero {
  padding: 2rem 2rem 1.5rem;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.08), rgba(220, 38, 38, 0.02));
  border-bottom: 1px solid rgba(220, 38, 38, 0.12);
  text-align: center;
}

.service-tier-hero-price .service-tier-card-amount {
  font-size: 2.25rem;
}

/* Service process columns (employee outsourcing) */
.service-process-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-process-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -10px rgba(220, 38, 38, 0.14);
  border-color: rgba(220, 38, 38, 0.25);
}

.service-process-card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.service-process-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-process-card:hover .service-process-card-image img {
  transform: scale(1.05);
}

.service-process-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem 1.5rem 1.5rem;
}

.service-process-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
}

.service-process-card-list {
  margin-top: 1rem;
  padding: 0;
  list-style: none;
  flex: 1;
}

.service-process-card-list li {
  position: relative;
  padding-left: 1.125rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #64748b;
  margin-bottom: 0.625rem;
}

.service-process-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 9999px;
  background: var(--claid-accent);
  opacity: 0.7;
}

/* Background referencing / due diligence */
.bg-check-page {
  padding-bottom: 0;
}

.bg-check-hero {
  position: relative;
  overflow: hidden;
  background: #f8fafc;
}

.bg-check-hero-bg {
  position: absolute;
  inset: 0;
}

.bg-check-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: blur(3px) brightness(1.05);
  transform: scale(1.06);
}

.bg-check-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.75) 55%, rgba(255, 255, 255, 0.35) 100%);
}

.bg-check-hero-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--claid-accent);
  line-height: 1.15;
}

.bg-check-hero-lead,
.bg-check-hero-note {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #475569;
}

.bg-check-risk-list {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0;
}

.bg-check-risk-list li {
  font-size: 0.9375rem;
  color: #475569;
  margin-bottom: 0.25rem;
}

.bg-check-split {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 420px;
}

@media (min-width: 768px) {
  .bg-check-split {
    grid-template-columns: 1fr auto 1fr;
  }
}

.bg-check-panel {
  background: #9b2c2c;
  color: #fff;
}

.bg-check-panel-inner {
  padding: 2rem 1.75rem;
  max-width: 36rem;
}

@media (min-width: 768px) {
  .bg-check-panel-left .bg-check-panel-inner {
    margin-left: auto;
    padding: 2.5rem 2rem 2.5rem 2.5rem;
  }

  .bg-check-panel-right .bg-check-panel-inner {
    padding: 2.5rem 2.5rem 2.5rem 2rem;
  }
}

.bg-check-panel-inner p {
  font-size: 0.875rem;
  line-height: 1.65;
  margin-bottom: 1rem;
  opacity: 0.95;
}

.bg-check-screening-heading {
  margin-top: 1.25rem;
  margin-bottom: 0.625rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.bg-check-screening-list {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0 0 0.5rem;
}

.bg-check-screening-list li {
  font-size: 0.875rem;
  line-height: 1.55;
  margin-bottom: 0.25rem;
}

.bg-check-center-image {
  width: 100%;
  max-width: 100%;
  min-height: 280px;
  overflow: hidden;
  background: #1e293b;
}

@media (min-width: 768px) {
  .bg-check-center-image {
    width: min(320px, 28vw);
    min-height: 100%;
  }
}

.bg-check-center-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.bg-check-panel-right {
  display: none;
}

@media (min-width: 768px) {
  .bg-check-panel-right {
    display: block;
  }
}

.bg-check-panel-accent {
  height: 100%;
  min-height: 420px;
}

/* Contact centre consultancy */
.cc-page {
  padding-bottom: 0;
}

.cc-hero {
  position: relative;
  overflow: hidden;
  background: #f8fafc;
}

.cc-hero-bg {
  position: absolute;
  inset: 0;
}

.cc-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(4px) brightness(0.95);
  transform: scale(1.08);
}

.cc-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
}

.cc-hero-title {
  font-size: clamp(1.875rem, 4.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--claid-accent);
  line-height: 1.15;
}

.cc-pillar-card {
  background: #fff;
}

.cc-pillar-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 0.5rem;
  border: 1px solid #e2e8f0;
}

.cc-pillar-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cc-pillar-body {
  padding: 1.25rem 0 0;
}

.cc-pillar-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--claid-accent);
}

.cc-pillar-intro {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #64748b;
}

.cc-pillar-list {
  margin-top: 0.75rem;
  padding-left: 1.125rem;
  list-style: disc;
}

.cc-pillar-list li {
  font-size: 0.875rem;
  line-height: 1.55;
  color: #475569;
  margin-bottom: 0.25rem;
}

.cc-burgundy-row {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 320px;
}

@media (min-width: 768px) {
  .cc-burgundy-row {
    grid-template-columns: 1fr 1fr;
  }

  .cc-burgundy-row-reverse .cc-burgundy-panel {
    order: 2;
  }

  .cc-burgundy-row-reverse .cc-burgundy-image {
    order: 1;
  }
}

.cc-burgundy-panel {
  background: #7f1d1d;
  color: #fff;
  display: flex;
  align-items: center;
}

.cc-burgundy-panel-inner {
  padding: 2.5rem 2rem;
  width: 100%;
}

@media (min-width: 1024px) {
  .cc-burgundy-panel-inner {
    padding: 3rem 3.5rem;
  }
}

.cc-burgundy-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
}

.cc-burgundy-list {
  margin-top: 1.25rem;
  padding-left: 1.125rem;
  list-style: disc;
}

.cc-burgundy-list li {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 0.375rem;
  opacity: 0.95;
}

.cc-burgundy-image {
  min-height: 280px;
  overflow: hidden;
  background: #1e293b;
}

.cc-burgundy-image img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center;
}

/* Tax and advisory */
.tax-page {
  padding-bottom: 0;
}

.tax-top-banner {
  height: clamp(140px, 22vw, 220px);
  overflow: hidden;
  background: #e2e8f0;
}

.tax-top-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.tax-split {
  display: grid;
  grid-template-columns: 1fr;
  background: #fff;
}

@media (min-width: 768px) {
  .tax-split {
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
  }
}

.tax-split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 1.75rem;
}

@media (min-width: 1024px) {
  .tax-split-text {
    padding: 3.5rem 3rem 3.5rem 4rem;
  }
}

.tax-split-title {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--claid-accent);
  line-height: 1.15;
}

.tax-split-body {
  margin-top: 1.25rem;
}

.tax-split-body p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 1rem;
}

.tax-split-body p:last-child {
  margin-bottom: 0;
}

.tax-split-image {
  min-height: 320px;
  overflow: hidden;
  background: #1e293b;
}

.tax-split-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
}

.tax-bottom-banner {
  position: relative;
  min-height: clamp(260px, 40vw, 380px);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.tax-bottom-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px) brightness(0.92);
  transform: scale(1.05);
}

.tax-bottom-overlay {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  margin: 2rem 1.75rem;
  padding: 1.75rem 1.5rem;
  background: rgba(153, 27, 27, 0.88);
  color: #fff;
}

@media (min-width: 768px) {
  .tax-bottom-overlay {
    margin: 2.5rem 3rem;
    padding: 2rem 2.25rem;
  }
}

.tax-bottom-overlay p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 0;
}

/* Business management consultancy */
.bm-page {
  padding-bottom: 0;
}

.bm-hero {
  position: relative;
  min-height: clamp(320px, 45vw, 480px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.bm-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(3px) brightness(0.95);
  transform: scale(1.06);
}

.bm-hero-overlay {
  position: relative;
  z-index: 1;
  max-width: 34rem;
  margin: 2rem 1.75rem;
  padding: 1.75rem 1.5rem;
  background: rgba(153, 27, 27, 0.9);
  color: #fff;
}

@media (min-width: 768px) {
  .bm-hero-overlay {
    margin: 2.5rem 3rem;
    padding: 2.25rem 2rem;
  }
}

.bm-hero-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.bm-hero-body {
  margin-top: 1rem;
}

.bm-hero-body p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 0.875rem;
  opacity: 0.97;
}

.bm-hero-body p:last-child {
  margin-bottom: 0;
}

.bm-feature-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 1.75rem 0;
  background: transparent;
}

.bm-feature-image img {
  width: min(100%, 640px);
  height: clamp(180px, 24vw, 260px);
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0 auto;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-md);
}

/* Learning and development */
.ld-page {
  padding-bottom: 0;
}

.ld-top-band {
  height: 2.5rem;
  background: #c4a882;
}

.ld-split {
  display: grid;
  grid-template-columns: 1fr;
  background: #fff;
}

@media (min-width: 768px) {
  .ld-split {
    grid-template-columns: 1fr 1fr;
    min-height: 360px;
  }

  .ld-split-reverse .ld-value-panel {
    order: 1;
  }

  .ld-split-reverse .ld-split-image {
    order: 2;
  }
}

.ld-split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 1.75rem;
}

@media (min-width: 1024px) {
  .ld-split-text {
    padding: 3rem 3rem 3rem 4rem;
  }
}

.ld-title {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--claid-accent);
  line-height: 1.15;
}

.ld-body {
  margin-top: 1.25rem;
}

.ld-body p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 1rem;
}

.ld-body p:last-child {
  margin-bottom: 0;
}

.ld-split-image {
  min-height: 280px;
  overflow: hidden;
  background: #1e293b;
}

.ld-split-image-tall {
  min-height: 320px;
}

.ld-split-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.ld-value-panel {
  background: #991b1b;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 1.75rem;
}

@media (min-width: 1024px) {
  .ld-value-panel {
    padding: 3rem 3rem 3rem 4rem;
  }
}

.ld-value-heading {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
}

.ld-value-list {
  margin-top: 1.25rem;
  padding-left: 1.125rem;
  list-style: disc;
}

.ld-value-list li {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 0.375rem;
  opacity: 0.97;
}

.ld-pillar-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 0.375rem;
  border: 1px solid #e2e8f0;
}

.ld-pillar-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ld-pillar-title {
  margin-top: 1rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--claid-accent);
}

.ld-pillar-list {
  margin-top: 0.75rem;
  padding-left: 1.25rem;
  list-style: decimal;
}

.ld-pillar-list li {
  font-size: 0.875rem;
  line-height: 1.55;
  color: #475569;
  margin-bottom: 0.25rem;
}

.ld-workplan-heading {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--claid-accent);
  margin-bottom: 1rem;
}

.ld-workplan-wrap {
  overflow-x: auto;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.ld-workplan-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.8125rem;
}

.ld-workplan-table th,
.ld-workplan-table td {
  border: 1px solid #e2e8f0;
  padding: 0.625rem 0.75rem;
  text-align: left;
  vertical-align: middle;
}

.ld-workplan-table thead th {
  background: #f8fafc;
  font-weight: 700;
  color: #334155;
}

.ld-workplan-weeks th {
  text-align: center;
  font-size: 0.75rem;
  color: #64748b;
  background: #fff;
}

.ld-workplan-cell {
  width: 2.5rem;
  padding: 0.375rem;
  text-align: center;
}

.ld-workplan-bar {
  display: block;
  height: 1.125rem;
  background: #991b1b;
  border-radius: 0.125rem;
}

.ld-bottom-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1.75rem 0.5rem;
}

.ld-bottom-image img {
  width: min(100%, 640px);
  height: clamp(180px, 24vw, 260px);
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0 auto;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-md);
}

.experience-level-card {
  display: block;
  padding: 1.25rem;
  border-radius: 0.875rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.experience-level-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -8px rgba(220, 38, 38, 0.18);
  border-color: rgba(220, 38, 38, 0.3);
}

.company-logo-tile {
  height: 4rem;
  border-radius: 0.5rem;
  border: 1px solid #e2e8f0;
  background: var(--gradient-claid-panel);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
}

.claid-salary {
  color: var(--claid-accent);
  font-weight: 700;
}

.job-card:hover h3 {
  color: var(--claid-accent);
}

.dash-stat-accent .dash-stat-value {
  color: var(--claid-accent);
}

.text-claid-accent {
  color: var(--claid-accent);
}

/* Job posting wizard */
.post-job-progress-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.post-job-progress-item {
  flex: 1;
  min-width: 7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.75rem 0.5rem;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  text-align: center;
}

.post-job-progress-item.done {
  border-color: rgba(220, 38, 38, 0.25);
  background: var(--gradient-claid-panel);
}

.post-job-progress-item.active {
  border-color: rgba(220, 38, 38, 0.45);
  box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.15);
}

.post-job-progress-num {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  background: #f1f5f9;
  color: #64748b;
}

.post-job-progress-item.done .post-job-progress-num,
.post-job-progress-item.active .post-job-progress-num {
  background: var(--gradient-claid);
  color: #fff;
}

.post-job-progress-label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #64748b;
}

.post-job-progress-item.active .post-job-progress-label {
  color: var(--claid-accent);
}

.package-card {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  border-radius: 1rem;
  border: 2px solid #e2e8f0;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  min-height: 100%;
}

.package-card:hover,
.package-card-selected {
  border-color: rgba(220, 38, 38, 0.45);
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.12);
}

.package-card-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding: 0.5rem 0.875rem;
  width: 100%;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  background: var(--gradient-claid);
  border-radius: 0.625rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.package-card-call:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
}

.package-card-call:focus-visible {
  outline: 2px solid var(--claid-accent);
  outline-offset: 2px;
}

.employer-job-status-awaiting_payment {
  background: #fef3c7;
  color: #92400e;
}

.employer-job-status-awaiting_approval {
  background: #dbeafe;
  color: #1e40af;
}

.employer-job-status-published {
  background: #dcfce7;
  color: #166534;
}

.employer-job-status-rejected {
  background: #fee2e2;
  color: #991b1b;
}

/* Salary survey and evaluation — 3 step process */
.sse-process-section {
  position: relative;
  padding-bottom: 3rem;
}

.sse-process-heading {
  text-align: center;
  font-size: clamp(1.25rem, 3vw, 1.625rem);
  font-weight: 800;
  color: var(--claid-accent);
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
}

.sse-process-layout {
  position: relative;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .sse-process-layout {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
  }
}

.sse-step {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
}

.sse-step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--claid-accent);
  line-height: 1.35;
}

.sse-step-number {
  font-weight: 800;
}

.sse-step-divider {
  height: 1px;
  background: #cbd5e1;
  margin: 0.75rem 0;
}

.sse-step-list {
  margin: 0;
  padding-left: 1.125rem;
  list-style: disc;
}

.sse-step-list li {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 0.35rem;
}

.sse-skyline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 72px;
  opacity: 0.12;
  background:
    linear-gradient(to top, #64748b 0%, transparent 100%),
    repeating-linear-gradient(90deg,
      transparent,
      transparent 18px,
      #64748b 18px,
      #64748b 22px);
  mask-image: linear-gradient(to top, black, transparent);
  pointer-events: none;
}

.sse-bottom-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 1.75rem 0;
}

.sse-bottom-image img {
  width: min(100%, 640px);
  height: clamp(180px, 24vw, 260px);
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0 auto;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-md);
}

/* Graduate trainee */
.gt-accent-line {
  display: block;
  width: 2.5rem;
  height: 3px;
  background: #f97316;
  border-radius: 9999px;
  margin-bottom: 1rem;
}
.gt-accent-line-light {
  background: rgba(255, 255, 255, 0.85);
}
.gt-section-title {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  color: var(--claid-accent);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.gt-section-sub {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}
.gt-hero-image {
  overflow: hidden;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-md);
}
.gt-hero-image img {
  width: 100%;
  min-height: 240px;
  object-fit: cover;
  display: block;
}
.gt-component-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem 1.25rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-sm);
  min-height: 100%;
}
.gt-component-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 28px 28px 0;
  border-color: transparent #f97316 transparent transparent;
}
.gt-component-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background: var(--claid-accent);
  color: #fff;
  margin-bottom: 1rem;
}
.gt-component-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #475569;
  line-height: 1.45;
}
.gt-needs-left {
  display: flex;
  flex-direction: column;
}
.gt-needs-red {
  background: #991b1b;
  color: #fff;
  padding: 2rem 1.75rem;
}
.gt-needs-heading {
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 800;
  line-height: 1.25;
}
.gt-needs-white {
  flex: 1;
  padding: 2rem 1.75rem;
  background: #fff;
}
.gt-needs-white p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #475569;
  margin: 0;
}
.gt-needs-right {
  display: flex;
  align-items: center;
  padding: 2rem 1.75rem;
  background: #fff;
  border-top: 1px solid #e2e8f0;
}
@media (min-width: 1024px) {
  .gt-needs-right {
    border-top: none;
    border-left: 1px solid #e2e8f0;
  }
}
.gt-needs-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
.gt-needs-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.gt-needs-list li:last-child {
  margin-bottom: 0;
}
.gt-needs-list-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  border-radius: 9999px;
  background: #f97316;
  color: #fff;
}
.gt-needs-list-text {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--claid-accent);
  line-height: 1.35;
}

.employer-job-status-expired {
  background: #fee2e2;
  color: #991b1b;
}

/* ── Homepage ── */
.home-page-main {
  overflow-x: hidden;
}

.home-hero {
  position: relative;
  min-height: clamp(480px, 78vh, 720px);
  background: #0f172a;
  overflow: hidden;
}

.home-hero__slides {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.home-hero__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.85s ease, visibility 0.85s ease;
}

.home-hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.home-hero__slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.home-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(92, 30, 30, 0.82) 0%,
    rgba(15, 23, 42, 0.76) 55%,
    rgba(99, 26, 26, 0.7) 100%
  );
  pointer-events: none;
}

.home-hero__content {
  position: relative;
  z-index: 2;
  max-width: 48rem;
  padding: 2rem 1.25rem 5.5rem;
  text-align: center;
  color: #fff;
}

.home-hero__eyebrow {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 9999px;
}

.home-hero__title {
  margin-top: 1.25rem;
  font-size: clamp(1.875rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.home-hero__tagline {
  margin-top: 1rem;
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.75rem;
}

.home-hero__controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.5rem;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0 1rem;
}

.home-hero__dots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
  max-width: min(90vw, 28rem);
}

.home-hero__dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: none;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, width 0.2s ease;
}

.home-hero__dot.is-active {
  width: 1.35rem;
  background: #fff;
}

.home-hero__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 9999px;
  background: rgba(15, 23, 42, 0.35);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.home-hero__arrow:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.55);
}

.home-section__badge {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.3rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #991b1b;
  background: #fef2f2;
  border: 1px solid rgba(220, 38, 38, 0.18);
  border-radius: 9999px;
}

.home-section__badge--light {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
}

.home-section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.15;
}

.home-section__sub {
  margin-top: 0.75rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #64748b;
}

.home-section__link {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--claid-accent);
  text-decoration: none;
}

.home-section__link:hover {
  color: #7f1d1d;
}

.home-about {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
}

.home-about__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .home-about__grid {
    grid-template-columns: minmax(180px, 260px) 1fr;
    gap: 3rem;
  }
}

.home-about__logo-wrap {
  display: flex;
  justify-content: center;
}

.home-about__lead,
.home-about__secondary {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #475569;
}

.home-about__secondary {
  margin-top: 0.75rem;
}

.home-pillars {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.home-pillars__grid {
  display: grid;
  gap: 1.5rem;
}

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

.home-pillar-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.home-pillar-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -12px rgba(15, 23, 42, 0.12);
}

.home-pillar-card__media {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.home-pillar-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-pillar-card__body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.home-pillar-card__badge {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #991b1b;
}

.home-pillar-card__title {
  margin-top: 0.35rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
}

.home-pillar-card__text {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #64748b;
}

.home-philosophy {
  position: relative;
  min-height: clamp(320px, 42vw, 420px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.home-philosophy__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-philosophy__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(15, 23, 42, 0.88) 0%,
    rgba(127, 29, 29, 0.78) 100%
  );
}

.home-philosophy__content {
  position: relative;
  z-index: 1;
  padding: 4rem 1rem;
  color: #fff;
}

.home-philosophy__title {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 800;
  line-height: 1.15;
}

.home-philosophy__text {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
}

.home-services {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
}

.home-contact {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.home-contact__card {
  display: grid;
  gap: 2rem;
  padding: 2rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .home-contact__card {
    grid-template-columns: 1.2fr 0.8fr;
    padding: 2.5rem;
    align-items: center;
  }
}

.home-contact__lead {
  margin-top: 0.75rem;
  font-size: 1rem;
  line-height: 1.65;
  color: #64748b;
}

.home-contact__details {
  margin-top: 1.25rem;
  padding: 0;
  list-style: none;
}

.home-contact__details li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
  color: #334155;
}

.home-contact__details a {
  color: var(--claid-accent);
  text-decoration: none;
  font-weight: 600;
}

.home-contact__details a:hover {
  color: #7f1d1d;
}

.home-contact__cta {
  padding: 1.25rem;
  border-radius: 1rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

@media (prefers-reduced-motion: reduce) {
  .home-hero__slide {
    transition: none;
  }
}

/* Fixed WhatsApp button */
.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  left: auto;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45), 0 2px 6px rgba(15, 23, 42, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.whatsapp-float:hover {
  background: #20bd5a;
  transform: scale(1.06);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5), 0 4px 10px rgba(15, 23, 42, 0.14);
}

.whatsapp-float:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.whatsapp-float__icon {
  width: 1.75rem;
  height: 1.75rem;
}

@media (max-width: 640px) {
  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
    width: 3.25rem;
    height: 3.25rem;
  }

  .whatsapp-float__icon {
    width: 1.625rem;
    height: 1.625rem;
  }
}