/* ============================================================
   AZZUR WORKFORCE SOLUTIONS - BUNDLED SITE STYLESHEET
   Generated from main.css import order to reduce CSS request chains.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');


/* ===== css/tokens.css ===== */
/* ============================================================
   AZZUR WORKFORCE SOLUTIONS — DESIGN TOKENS
   Brand + Color System v2.0
   ============================================================ */

:root {

  /* ----------------------------------------------------------
     COLOR PALETTE — PRIMARY SOURCE OF TRUTH
     ---------------------------------------------------------- */

  /* Brand Colors */
  --color-primary:        #0D3B5C;   /* Dark Navy  — headers, footer, hero bg */
  --color-secondary:      #1F4E6B;   /* Deep Blue  — sub-sections, card headers, alt bg */
  --color-accent:         #4FA3C0;   /* Teal       — buttons, links, CTAs, highlights */
  --color-accent-light:   #6F98A8;   /* Soft Blue  — hover states, subtle UI, badges */
  --color-neutral:        #D9D9D9;   /* Light Gray — borders, dividers, input outlines */
  --color-bg:             #FFFFFF;   /* White      — main page background */

  /* Hover / Interaction Variants (derived, not new colors) */
  --color-primary-dark:   #092d47;   /* Primary darkened ~10% for deep hover bg */
  --color-secondary-dark: #183d55;   /* Secondary darkened for hover states */
  --color-accent-dark:    #3b8aa5;   /* Accent darkened ~10% — button hover */
  --color-accent-xlight:  #a8cdd8;   /* Accent very light — disabled fills, tints */
  --color-neutral-dark:   #b8b8b8;   /* Neutral darkened — input hover borders */
  --color-neutral-light:  #f2f2f2;   /* Near-white — zebra rows, input bg */

  /* ----------------------------------------------------------
     TEXT COLORS
     ---------------------------------------------------------- */

  --text-primary:         #0D1F2D;   /* Near-black for body — max contrast on white */
  --text-secondary:       #4A5568;   /* Muted gray — supporting copy, captions */
  --text-muted:           #718096;   /* Light muted — labels, helper text */
  --text-inverted:        #FFFFFF;   /* White text on dark backgrounds */
  --text-accent:          #3b8aa5;   /* Teal text — links, highlights on white bg */
  --text-heading:         #0D3B5C;   /* Primary navy for headings on white */
  --text-error:           #C0392B;   /* Red — error messages */
  --text-success:         #1E7E5A;   /* Green — success messages */

  /* ----------------------------------------------------------
     TYPOGRAPHY
     ---------------------------------------------------------- */

  /* Font Families */
  --font-heading:   'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-body:      'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-mono:      'JetBrains Mono', 'Fira Code', 'Courier New', monospace;

  /* Font Weights */
  --fw-regular:     400;
  --fw-medium:      500;
  --fw-semibold:    600;
  --fw-bold:        700;
  --fw-extrabold:   800;

  /* Type Scale — Desktop */
  --text-xs:        0.75rem;    /* 12px */
  --text-sm:        0.875rem;   /* 14px */
  --text-base:      1rem;       /* 16px */
  --text-md:        1.125rem;   /* 18px */
  --text-lg:        1.25rem;    /* 20px */
  --text-xl:        1.5rem;     /* 24px */
  --text-2xl:       2rem;       /* 32px */
  --text-3xl:       2.5rem;     /* 40px */
  --text-4xl:       3rem;       /* 48px */
  --text-5xl:       3.75rem;    /* 60px */

  /* Line Heights */
  --lh-tight:       1.2;
  --lh-snug:        1.35;
  --lh-normal:      1.5;
  --lh-relaxed:     1.625;
  --lh-loose:       2;

  /* Letter Spacing */
  --ls-tight:       -0.025em;
  --ls-normal:      0em;
  --ls-wide:        0.025em;
  --ls-wider:       0.05em;
  --ls-widest:      0.1em;

  /* ----------------------------------------------------------
     SPACING SCALE
     ---------------------------------------------------------- */

  --space-1:        0.25rem;    /* 4px  */
  --space-2:        0.5rem;     /* 8px  */
  --space-3:        0.75rem;    /* 12px */
  --space-4:        1rem;       /* 16px */
  --space-5:        1.25rem;    /* 20px */
  --space-6:        1.5rem;     /* 24px */
  --space-8:        2rem;       /* 32px */
  --space-10:       2.5rem;     /* 40px */
  --space-12:       3rem;       /* 48px */
  --space-16:       4rem;       /* 64px */
  --space-20:       5rem;       /* 80px */
  --space-24:       6rem;       /* 96px */
  --space-32:       8rem;       /* 128px */

  /* Section Vertical Padding */
  --section-py:     5rem;       /* 80px  — standard section padding */
  --section-py-sm:  3rem;       /* 48px  — compact sections */
  --section-py-lg:  7.5rem;     /* 120px — hero / featured sections */

  /* ----------------------------------------------------------
     LAYOUT
     ---------------------------------------------------------- */

  --container-max:  1280px;     /* Max content width */
  --container-px:   1.5rem;     /* Horizontal gutter — mobile */
  --container-px-md: 2rem;      /* Horizontal gutter — tablet */
  --container-px-lg: 3rem;      /* Horizontal gutter — desktop */

  /* Grid */
  --grid-gap:       1.5rem;     /* Standard grid gap */
  --grid-gap-sm:    1rem;
  --grid-gap-lg:    2rem;

  /* ----------------------------------------------------------
     BORDERS & RADII
     ---------------------------------------------------------- */

  --radius-sm:      0.25rem;    /* 4px  — inputs, small chips */
  --radius-md:      0.5rem;     /* 8px  — cards, dropdowns */
  --radius-lg:      0.75rem;    /* 12px — large cards */
  --radius-xl:      1rem;       /* 16px — feature sections */
  --radius-full:    9999px;     /* Pill — badges, full-round buttons */

  --border-width:   1px;
  --border-color:   var(--color-neutral);
  --border:         var(--border-width) solid var(--border-color);

  /* ----------------------------------------------------------
     SHADOWS
     ---------------------------------------------------------- */

  --shadow-xs:      0 1px 2px rgba(13, 59, 92, 0.06);
  --shadow-sm:      0 2px 6px rgba(13, 59, 92, 0.08);
  --shadow-md:      0 4px 16px rgba(13, 59, 92, 0.10);
  --shadow-lg:      0 8px 32px rgba(13, 59, 92, 0.12);
  --shadow-xl:      0 16px 48px rgba(13, 59, 92, 0.14);
  --shadow-card:    0 2px 8px rgba(13, 59, 92, 0.08);
  --shadow-card-hover: 0 8px 24px rgba(13, 59, 92, 0.14);

  /* ----------------------------------------------------------
     TRANSITIONS
     ---------------------------------------------------------- */

  --transition-fast:   150ms ease;
  --transition-base:   200ms ease;
  --transition-smooth: 300ms ease;
  --transition-slow:   450ms ease;

  /* ----------------------------------------------------------
     Z-INDEX SCALE
     ---------------------------------------------------------- */

  --z-base:     0;
  --z-raised:   10;
  --z-dropdown: 100;
  --z-sticky:   200;
  --z-overlay:  300;
  --z-modal:    400;
  --z-toast:    500;

  /* ----------------------------------------------------------
     FORM TOKENS
     ---------------------------------------------------------- */

  --input-height:       2.875rem;    /* 46px */
  --input-height-sm:    2.25rem;     /* 36px */
  --input-height-lg:    3.25rem;     /* 52px */
  --input-padding-x:    0.875rem;
  --input-padding-y:    0.625rem;
  --input-bg:           #FFFFFF;
  --input-border:       var(--color-neutral);
  --input-border-focus: var(--color-accent);
  --input-ring:         0 0 0 3px rgba(79, 163, 192, 0.20);
  --input-placeholder:  var(--text-muted);
  --input-radius:       var(--radius-sm);

}


/* ===== css/base.css ===== */
/* ============================================================
   AZZUR WORKFORCE SOLUTIONS — BASE STYLES
   Reset, typography, utilities
   ============================================================ */


/* ----------------------------------------------------------
   BOX SIZING RESET
   ---------------------------------------------------------- */

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

/* ----------------------------------------------------------
   ROOT / HTML
   ---------------------------------------------------------- */

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--fw-regular);
  line-height: var(--lh-relaxed);
  color: var(--text-primary);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ----------------------------------------------------------
   TYPOGRAPHY — HEADINGS
   ---------------------------------------------------------- */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  font-weight: var(--fw-bold);
}

h1 {
  font-size: var(--text-4xl);
  font-weight: var(--fw-extrabold);
  letter-spacing: -0.03em;
}

h2 {
  font-size: var(--text-3xl);
  font-weight: var(--fw-bold);
}

h3 {
  font-size: var(--text-2xl);
  font-weight: var(--fw-bold);
}

h4 {
  font-size: var(--text-xl);
  font-weight: var(--fw-semibold);
}

h5 {
  font-size: var(--text-lg);
  font-weight: var(--fw-semibold);
}

h6 {
  font-size: var(--text-md);
  font-weight: var(--fw-semibold);
}

/* Inverted headings (on dark backgrounds) */
.heading-inverted,
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
  color: var(--text-inverted);
}

/* Section title utility */
.section-title {
  font-size: var(--text-3xl);
  font-weight: var(--fw-bold);
  color: var(--text-heading);
  margin-bottom: var(--space-4);
}

.section-subtitle {
  font-size: var(--text-md);
  color: var(--text-secondary);
  max-width: 640px;
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-8);
}

/* Inverted overrides — must come after .section-title/.section-subtitle to win */
.section-title.heading-inverted,
.section-mid .section-title,
.section-dark .section-title {
  color: var(--text-inverted);
}

.section-subtitle.text-inverted,
.section-mid .section-subtitle,
.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.75);
}

/* Eyebrow label above section titles */
.eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}

/* Inverted eyebrow — stronger white so it pops on teal/navy panels */
.eyebrow-inverted {
  color: #ffffff;
}

/* ----------------------------------------------------------
   TYPOGRAPHY — BODY + UTILITY
   ---------------------------------------------------------- */

p {
  font-size: var(--text-base);
  line-height: var(--lh-relaxed);
  color: var(--text-primary);
  max-width: 70ch;
}

.text-muted   { color: var(--text-secondary); }
.text-inverted { color: var(--text-inverted); }
.text-accent  { color: var(--text-accent); }
.text-sm      { font-size: var(--text-sm); }
.text-xs      { font-size: var(--text-xs); }
.text-lg      { font-size: var(--text-lg); }

/* Utility: remove max-width from p */
.text-full { max-width: none; }

/* ----------------------------------------------------------
   LINKS
   ---------------------------------------------------------- */

a {
  color: var(--text-accent);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--color-accent-dark);
  text-decoration: underline;
}

a:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* ----------------------------------------------------------
   IMAGES & MEDIA
   ---------------------------------------------------------- */

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

picture,
figure {
  display: block;
}

/* ----------------------------------------------------------
   LISTS
   ---------------------------------------------------------- */

ul, ol {
  padding-left: var(--space-6);
}

li {
  margin-bottom: var(--space-1);
}

/* Unstyled list utility */
.list-none {
  list-style: none;
  padding-left: 0;
}

/* Check-list utility */
.list-check {
  list-style: none;
  padding-left: 0;
}

.list-check li {
  padding-left: 1.75rem;
  position: relative;
  margin-bottom: var(--space-2);
}

.list-check li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 1rem;
  height: 1rem;
  background-color: var(--color-accent);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

/* ----------------------------------------------------------
   HORIZONTAL RULE
   ---------------------------------------------------------- */

hr {
  border: none;
  border-top: var(--border);
  margin: var(--space-8) 0;
}

/* ----------------------------------------------------------
   SELECTION
   ---------------------------------------------------------- */

::selection {
  background: rgba(79, 163, 192, 0.25);
  color: var(--text-primary);
}

/* ----------------------------------------------------------
   FOCUS VISIBLE (global)
   ---------------------------------------------------------- */

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* ----------------------------------------------------------
   SCROLLBAR (WebKit)
   ---------------------------------------------------------- */

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-neutral-light);
}

::-webkit-scrollbar-thumb {
  background: var(--color-accent-light);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent);
}

/* ----------------------------------------------------------
   SKIP LINK (keyboard accessibility)
   ---------------------------------------------------------- */

.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  padding: var(--space-2) var(--space-4);
  background: var(--color-primary);
  color: white;
  z-index: 9999;
  font-size: var(--text-sm);
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}


/* ===== css/layout.css ===== */
/* ============================================================
   AZZUR WORKFORCE SOLUTIONS — LAYOUT SYSTEM
   Container, grid, section wrappers
   ============================================================ */


/* ----------------------------------------------------------
   CONTAINER
   ---------------------------------------------------------- */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

@media (min-width: 768px) {
  .container {
    padding-inline: var(--container-px-md);
  }
}

@media (min-width: 1024px) {
  .container {
    padding-inline: var(--container-px-lg);
  }
}

/* Narrow container for text-heavy sections */
.container-sm {
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
  padding-inline: var(--container-px);
}

/* ----------------------------------------------------------
   SECTION WRAPPERS
   ---------------------------------------------------------- */

.section {
  padding-block: var(--section-py);
}

.section-sm {
  padding-block: var(--section-py-sm);
}

.section-lg {
  padding-block: var(--section-py-lg);
}

/* Background variants */
.section-white   { background-color: var(--color-bg); }
.section-light   { background-color: var(--color-neutral-light); }
.section-dark    { background-color: var(--color-primary); }
.section-mid     { background-color: var(--color-secondary); }
.section-accent  { background-color: var(--color-accent); }

/* ----------------------------------------------------------
   GRID SYSTEM
   ---------------------------------------------------------- */

.grid {
  display: grid;
  gap: var(--grid-gap);
}

/* Auto-responsive: stacks to 1 col on mobile */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--grid-gap);
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--grid-gap);
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--grid-gap);
}

/* Tablet: 2-col */
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

/* Desktop: full column counts */
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Split layout: text + visual side-by-side */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

@media (min-width: 1024px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }

  .split-60-40 {
    grid-template-columns: 3fr 2fr;
  }

  .split-40-60 {
    grid-template-columns: 2fr 3fr;
  }

  /* Reverse visual order on desktop */
  .split-reverse > :first-child { order: 2; }
  .split-reverse > :last-child  { order: 1; }
}

/* ----------------------------------------------------------
   FLEX UTILITIES
   ---------------------------------------------------------- */

.flex         { display: flex; }
.flex-col     { flex-direction: column; }
.items-center { align-items: center; }
.items-start  { align-items: flex-start; }
.items-end    { align-items: flex-end; }
.justify-center  { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end     { justify-content: flex-end; }
.flex-wrap    { flex-wrap: wrap; }
.gap-2        { gap: var(--space-2); }
.gap-3        { gap: var(--space-3); }
.gap-4        { gap: var(--space-4); }
.gap-6        { gap: var(--space-6); }
.gap-8        { gap: var(--space-8); }

/* ----------------------------------------------------------
   TEXT ALIGNMENT
   ---------------------------------------------------------- */

.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

/* Center narrow content within a section */
.section-header {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: var(--space-12);
}

.section-header .section-title  { margin-bottom: var(--space-3); }
.section-header .section-subtitle { margin-inline: auto; margin-bottom: 0; }

/* ----------------------------------------------------------
   SPACING UTILITIES
   ---------------------------------------------------------- */

.mt-0  { margin-top: 0; }
.mt-2  { margin-top: var(--space-2); }
.mt-4  { margin-top: var(--space-4); }
.mt-6  { margin-top: var(--space-6); }
.mt-8  { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }

.mb-0  { margin-bottom: 0; }
.mb-2  { margin-bottom: var(--space-2); }
.mb-4  { margin-bottom: var(--space-4); }
.mb-6  { margin-bottom: var(--space-6); }
.mb-8  { margin-bottom: var(--space-8); }
.mb-12 { margin-bottom: var(--space-12); }

/* ----------------------------------------------------------
   VISIBILITY
   ---------------------------------------------------------- */

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

/* ----------------------------------------------------------
   BREAKPOINTS REFERENCE
   ---------------------------------------------------------- */

/*
  Mobile first:
  sm  — 480px+
  md  — 768px+   (tablet)
  lg  — 1024px+  (desktop)
  xl  — 1280px+  (wide)
  2xl — 1536px+  (ultrawide)
*/


/* ===== css/components.css ===== */
/* ============================================================
   AZZUR WORKFORCE SOLUTIONS — COMPONENTS
   Buttons, Cards, Forms, Nav, Badges, etc.
   ============================================================ */


/* ============================================================
   BUTTON SYSTEM
   ============================================================ */

/* Base button reset + shared styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.75rem 1.625rem;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  line-height: 1;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  transition:
    background-color 0.2s ease,
    color            0.2s ease,
    border-color     0.2s ease,
    box-shadow       0.2s ease,
    transform        0.15s ease;
  user-select: none;
  position: relative;
  overflow: hidden;
  min-height: 48px; /* Accessible tap target */
}

.btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.btn:active {
  transform: translateY(1px);
}

/* ----------------------------------------------------------
   PRIMARY BUTTON — "Request Staff"
   Accent teal fill, white text
   ---------------------------------------------------------- */

.btn-primary {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--text-inverted);
}

.btn-primary:hover {
  background-color: #0a2f4a;
  border-color: #0a2f4a;
  color: var(--text-inverted);
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(13, 59, 92, 0.2);
  transform: translateY(-1px);
}

.btn-primary:focus-visible {
  outline-color: var(--color-accent-dark);
  box-shadow: var(--input-ring);
}

.btn-primary:disabled,
.btn-primary[aria-disabled="true"] {
  background-color: var(--color-accent-xlight);
  border-color: var(--color-accent-xlight);
  color: var(--color-bg);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ----------------------------------------------------------
   SECONDARY BUTTON — "Apply Now"
   White fill with teal border
   ---------------------------------------------------------- */

.btn-secondary {
  background-color: transparent;
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn-secondary:hover {
  background-color: #e8eef2;
  border-color: #4FA3C0;
  color: var(--color-accent-dark);
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(13, 59, 92, 0.2);
  transform: translateY(-1px);
}

.btn-secondary:focus-visible {
  box-shadow: var(--input-ring);
}

.btn-secondary:disabled,
.btn-secondary[aria-disabled="true"] {
  border-color: var(--color-neutral);
  color: var(--text-muted);
  cursor: not-allowed;
  transform: none;
}

/* ----------------------------------------------------------
   OUTLINE BUTTON (on dark backgrounds)
   White border, white text → fills on hover
   ---------------------------------------------------------- */

.btn-outline {
  background-color: transparent;
  border-color: var(--text-inverted);
  color: var(--text-inverted);
}

.btn-outline:hover {
  background-color: var(--text-inverted);
  color: var(--color-primary);
  text-decoration: none;
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

/* Alias: teal-filled accent button (for use on dark bg CTA bands) */
.btn-accent {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--text-inverted);
}
.btn-accent:hover {
  background-color: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: var(--text-inverted);
  text-decoration: none;
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

/* Alias: white outline button for dark backgrounds */
.btn-outline-light {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.85);
  color: #ffffff;
}
.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
  color: #ffffff;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

/* ----------------------------------------------------------
   GHOST BUTTON
   No border, no background — text only
   ---------------------------------------------------------- */

.btn-ghost {
  background-color: transparent;
  border-color: transparent;
  color: var(--text-accent);
  padding-inline: var(--space-4);
}

.btn-ghost:hover {
  background-color: rgba(79, 163, 192, 0.08);
  color: var(--color-accent-dark);
  text-decoration: none;
}

/* ----------------------------------------------------------
   DARK BUTTON
   Navy fill — for use on light sections needing strong CTA
   ---------------------------------------------------------- */

.btn-dark {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--text-inverted);
}

.btn-dark:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--text-inverted);
  text-decoration: none;
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

/* ----------------------------------------------------------
   BUTTON SIZES
   ---------------------------------------------------------- */

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: var(--text-sm);
  min-height: 40px;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: var(--text-lg);
  min-height: 56px;
  border-radius: var(--radius-lg);
}

/* Full-width block button */
.btn-full {
  width: 100%;
  display: flex;
}

/* ----------------------------------------------------------
   BUTTON GROUP
   Side-by-side CTAs with balanced spacing
   ---------------------------------------------------------- */

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
}

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background-color: var(--color-bg);
  border-bottom: var(--border);
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--transition-smooth);
}

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

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: var(--space-6);
}

.navbar-logo {
  flex-shrink: 0;
}

.navbar-logo img {
  height: 40px;
  width: auto;
}

.navbar-nav {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: var(--space-6);
}

@media (min-width: 1024px) {
  .navbar-nav {
    display: flex;
    align-items: center;
  }
}

.navbar-nav a {
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--text-primary);
  text-decoration: none;
  padding: var(--space-2) 0;
  border-bottom: 2px solid transparent;
  transition:
    color var(--transition-base),
    border-color var(--transition-base);
}

.navbar-nav a:hover,
.navbar-nav a.active {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
  text-decoration: none;
}

/* Header CTA group — right side */
.navbar-cta {
  display: none;
  gap: var(--space-3);
  align-items: center;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .navbar-cta {
    display: flex;
  }
}

/* Mobile menu toggle */
.navbar-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-base);
}

.navbar-toggle:hover {
  background-color: var(--color-neutral-light);
}

@media (min-width: 1024px) {
  .navbar-toggle { display: none; }
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  background-color: var(--color-bg);
  padding: var(--space-6);
  overflow-y: auto;
  flex-direction: column;
  gap: var(--space-6);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.mobile-nav-links a {
  display: block;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-md);
  font-weight: var(--fw-medium);
  color: var(--text-primary);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background-color var(--transition-base), color var(--transition-base);
}

.mobile-nav-links a:hover {
  background-color: var(--color-neutral-light);
  color: var(--color-accent);
  text-decoration: none;
}

.mobile-nav-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: var(--border);
}

/* ============================================================
   CARD SYSTEM
   ============================================================ */

/* Base card */
.card {
  background-color: var(--color-bg);
  border: var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition:
    box-shadow  var(--transition-smooth),
    transform   var(--transition-smooth);
}

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

/* Card sections */
.card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.card-body {
  padding: var(--space-6);
}

.card-footer {
  padding: var(--space-4) var(--space-6);
  border-top: var(--border);
  background-color: var(--color-neutral-light);
}

/* Card title / meta */
.card-title {
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  color: var(--text-heading);
  margin-bottom: var(--space-2);
  line-height: var(--lh-snug);
}

.card-text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
}

/* ----------------------------------------------------------
   SERVICE CARD
   Icon top, title, description
   ---------------------------------------------------------- */

.card-service {
  background-color: var(--color-bg);
  border: var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: var(--space-8) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition:
    box-shadow  var(--transition-smooth),
    transform   var(--transition-smooth),
    border-color var(--transition-smooth);
}

.card-service:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
  border-color: var(--color-accent-xlight);
}

.card-service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background-color: rgba(79, 163, 192, 0.12);
  color: var(--color-accent);
  flex-shrink: 0;
}

.card-service-icon img,
.card-service-icon svg {
  width: 28px;
  height: 28px;
}

.card-service-title {
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  color: var(--text-heading);
}

.card-service-text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  flex: 1;
}

/* ----------------------------------------------------------
   JOB CARD
   Position, location, type, CTA
   ---------------------------------------------------------- */

.card-job {
  background-color: var(--color-bg);
  border: var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition:
    box-shadow  var(--transition-smooth),
    transform   var(--transition-smooth);
}

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

.card-job-title {
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  color: var(--text-heading);
}

.card-job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.card-job-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  flex: 1;
}

/* ----------------------------------------------------------
   AUDIENCE SPLIT CARD
   Employer vs Applicant side-by-side panels
   ---------------------------------------------------------- */

.card-audience {
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.card-audience-employer {
  background-color: var(--color-primary);
  color: var(--text-inverted);
}

.card-audience-applicant {
  background-color: var(--color-accent);
  color: var(--text-inverted);
}

.card-audience-title {
  font-size: var(--text-2xl);
  font-weight: var(--fw-bold);
  color: var(--text-inverted);
}

.card-audience-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--text-md);
  line-height: var(--lh-relaxed);
  max-width: none;
}

/* ----------------------------------------------------------
   TESTIMONIAL CARD
   ---------------------------------------------------------- */

.card-testimonial {
  background-color: var(--color-bg);
  border: var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: var(--space-8) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  position: relative;
  transition:
    box-shadow  var(--transition-smooth),
    transform   var(--transition-smooth);
}

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

.card-testimonial-quote {
  font-size: var(--text-md);
  color: var(--text-primary);
  line-height: var(--lh-relaxed);
  font-style: italic;
  max-width: none;
}

.card-testimonial-quote::before {
  content: '\201C';
  font-size: 3rem;
  line-height: 0.5;
  color: var(--color-accent);
  display: block;
  margin-bottom: var(--space-2);
  font-style: normal;
}

.card-testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-3);
  border-top: var(--border);
}

.card-testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  object-fit: cover;
  flex-shrink: 0;
  background-color: var(--color-neutral-light);
}

.card-testimonial-name {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--text-heading);
}

.card-testimonial-role {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* ============================================================
   BADGE / TAG
   ============================================================ */

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.625rem;
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  border-radius: var(--radius-full);
  line-height: 1;
  white-space: nowrap;
}

.badge-primary   { background-color: rgba(13, 59, 92, 0.10);  color: var(--color-primary); }
.badge-accent    { background-color: rgba(79, 163, 192, 0.15); color: var(--color-accent-dark); }
.badge-success   { background-color: rgba(30, 126, 90, 0.12);  color: var(--text-success); }
.badge-neutral   { background-color: var(--color-neutral);     color: var(--text-secondary); }

/* ----------------------------------------------------------
   JOB TYPE / LOCATION BADGE
   ---------------------------------------------------------- */

.tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 0.25rem 0.75rem;
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  border-radius: var(--radius-full);
  border: 1px solid var(--color-neutral);
  color: var(--text-secondary);
  background-color: var(--color-neutral-light);
  white-space: nowrap;
}

/* ============================================================
   FORM SYSTEM
   ============================================================ */

.form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

/* Form group — label + input stacked */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-label {
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

/* Required star */
.form-label .required {
  color: var(--text-error);
  font-weight: var(--fw-bold);
  font-size: var(--text-xs);
  margin-left: 2px;
}

/* Base input / textarea / select */
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  height: var(--input-height);
  padding: var(--input-padding-y) var(--input-padding-x);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--fw-regular);
  color: var(--text-primary);
  background-color: var(--input-bg);
  border: var(--border-width) solid var(--input-border);
  border-radius: var(--input-radius);
  transition:
    border-color var(--transition-base),
    box-shadow   var(--transition-base);
  appearance: none;
  -webkit-appearance: none;
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--input-placeholder);
}

/* Focus state */
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--input-border-focus);
  box-shadow: var(--input-ring);
}

/* Hover state */
.form-input:hover:not(:focus),
.form-select:hover:not(:focus),
.form-textarea:hover:not(:focus) {
  border-color: var(--color-neutral-dark);
}

/* Textarea specific */
.form-textarea {
  height: auto;
  min-height: 120px;
  resize: vertical;
  line-height: var(--lh-relaxed);
}

/* Select custom arrow */
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 20 20' fill='%234A5568'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

/* Error state */
.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: var(--text-error);
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12);
}

.form-error {
  font-size: var(--text-xs);
  color: var(--text-error);
  display: flex;
  align-items: center;
  gap: var(--space-1);
  margin-top: var(--space-1);
}

/* Success state */
.form-input.success,
.form-select.success,
.form-textarea.success {
  border-color: var(--text-success);
}

/* Helper text */
.form-hint {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: var(--space-1);
}

/* Form grid — 2 columns on tablet+ */
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

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

/* Form container card */
.form-card {
  background-color: var(--color-bg);
  border: var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: var(--space-10) var(--space-8);
}

@media (max-width: 640px) {
  .form-card {
    padding: var(--space-6) var(--space-4);
  }
}

/* Form title within card */
.form-title {
  font-size: var(--text-2xl);
  font-weight: var(--fw-bold);
  color: var(--text-heading);
  margin-bottom: var(--space-2);
}

.form-description {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
  max-width: none;
}

/* Success message */
.form-success-msg {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-4);
  padding: var(--space-8);
}

.form-success-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background-color: rgba(30, 126, 90, 0.12);
  color: var(--text-success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

/* ============================================================
   STAT / NUMBER HIGHLIGHT
   ============================================================ */

.stat-block {
  text-align: center;
}

.stat-number {
  font-size: var(--text-4xl);
  font-weight: var(--fw-extrabold);
  color: var(--color-accent);
  line-height: 1;
  letter-spacing: var(--ls-tight);
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-top: var(--space-1);
  font-weight: var(--fw-medium);
}

.stat-label-inverted {
  color: rgba(255, 255, 255, 0.75);
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background-color: var(--color-primary);
  color: var(--text-inverted);
  padding-block: var(--space-16) var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
}

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

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

.footer-logo img {
  height: 36px;
  width: auto;
  margin-bottom: var(--space-4);
}

.footer-tagline {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.70);
  line-height: var(--lh-relaxed);
  max-width: none;
}

.footer-eeo {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.42);
  line-height: var(--lh-relaxed);
  margin-top: var(--space-4);
}

.footer-heading-mt {
  margin-top: var(--space-6);
}

.footer-heading {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-accent-light);
  margin-bottom: var(--space-4);
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-links a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.70);
  text-decoration: none;
  transition: color var(--transition-base);
}

.footer-links a:hover {
  color: var(--text-inverted);
  text-decoration: none;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.70);
  text-decoration: none;
  margin-bottom: var(--space-2);
  transition: color var(--transition-base);
  overflow: hidden;
}

/* Prevent SVG icons from being flex-shrunk to 0 on narrow columns */
.footer-contact a svg,
.footer-contact .footer-contact-item svg {
  flex-shrink: 0;
  min-width: 14px;
  width: 14px;
  height: 14px;
  display: block;
  opacity: 1;
  visibility: visible;
}

.footer-contact a:hover {
  color: var(--text-inverted);
  text-decoration: none;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.70);
  margin-bottom: var(--space-2);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: var(--space-12);
  padding-top: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: flex-start;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.55);
  font-size: var(--text-sm);
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color var(--transition-base);
}

.footer-legal-links a:hover {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ============================================================
   DIVIDER
   ============================================================ */

.divider {
  width: 64px;
  height: 4px;
  background-color: var(--color-accent);
  border-radius: var(--radius-full);
  margin-block: var(--space-4);
}

.divider-center {
  margin-inline: auto;
}

/* ============================================================
   ALERT / BANNER
   ============================================================ */

.alert {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  line-height: var(--lh-relaxed);
  border: 1px solid transparent;
}

.alert-success {
  background-color: rgba(30, 126, 90, 0.08);
  border-color: rgba(30, 126, 90, 0.20);
  color: var(--text-success);
}

.alert-error {
  background-color: rgba(192, 57, 43, 0.08);
  border-color: rgba(192, 57, 43, 0.20);
  color: var(--text-error);
}

.alert-info {
  background-color: rgba(79, 163, 192, 0.08);
  border-color: rgba(79, 163, 192, 0.25);
  color: var(--color-accent-dark);
}

/* ============================================================
   CARD SPACING FIXES
   ============================================================ */

/* Ensure cards never have less than 20px padding */
.card-body,
.card-service,
.card-job,
.card-testimonial {
  padding: var(--space-6);
}

/* Card body text line-height */
.card-text,
.card-service-text,
.card-job-desc,
.card-testimonial-quote {
  line-height: 1.6;
}

/* Icon containers: prevent shrink */
.card-service-icon,
.trust-icon,
.service-icon {
  flex-shrink: 0;
}

/* Grid parents: start alignment so unequal-height cards don't stretch */
.services-grid,
.positions-grid,
.trust-grid,
.testimonials-grid {
  align-items: start;
}


/* ===== css/home.css ===== */
/* ============================================================
   AZZUR WORKFORCE SOLUTIONS — HOMEPAGE STYLES
   Layout components unique to index.html
   ============================================================ */


/* ============================================================
   HERO — SPLIT LAYOUT
   Left: navy content panel · Right: image panel
   ============================================================ */

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  overflow: hidden;
}

/* Content panel */
.hero-content {
  background-color: var(--color-primary);
  padding: 5rem 4rem 5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  /* Subtle radial highlight adds depth without new colors */
  background-image: radial-gradient(ellipse at 0% 50%, rgba(79,163,192,0.08) 0%, transparent 70%);
}

/* Decorative vertical accent line */
.hero-content::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--color-accent), transparent);
  border-radius: var(--radius-full);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-accent);
  flex-shrink: 0;
}

.hero-heading {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: var(--fw-extrabold);
  color: var(--text-inverted);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-5);
}

.hero-heading em {
  font-style: normal;
  color: var(--color-accent);
}

.hero-subtext {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.80);
  line-height: var(--lh-relaxed);
  max-width: 480px;
  margin-bottom: var(--space-8);
}

.hero-ctas {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  align-items: center;
}

/* Trust micro-signals below CTAs */
.hero-trust {
  display: flex;
  gap: var(--space-5);
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.hero-trust-number {
  font-size: var(--text-lg);
  font-weight: var(--fw-extrabold);
  color: var(--color-accent);
  line-height: 1;
}

.hero-trust-label {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.3;
  max-width: 70px;
}

/* Image panel */
.hero-image {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

@media (min-width: 1024px) {
  .hero-image img {
    object-position: right center;
  }
}

/* Left-edge gradient blends image into content panel */
.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--color-primary) 0%,
    rgba(13, 59, 92, 0.35) 25%,
    transparent 55%
  );
  z-index: 1;
  pointer-events: none;
}

/* Bottom gradient for any text overlay if added */
.hero-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(13,59,92,0.4), transparent);
  z-index: 1;
  pointer-events: none;
}

/* ---- Mobile hero ---- */
@media (max-width: 1023px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    padding: 3.5rem var(--container-px-md);
    background-image: none;
  }

  .hero-content::after { display: none; }

  .hero-image {
    min-height: 300px;
    order: -1;
  }

  .hero-image::before {
    background: linear-gradient(
      to bottom,
      transparent 30%,
      rgba(13, 59, 92, 0.6) 100%
    );
  }
}

@media (max-width: 767px) {
  .hero-content {
    padding: 2.5rem var(--container-px);
  }

  .hero-image { min-height: 240px; }

  .hero-trust {
    gap: var(--space-4);
    padding-top: var(--space-5);
    margin-top: var(--space-6);
  }
}

/* ============================================================
   WHO WE HELP — AUDIENCE SPLIT SECTION
   Full-width, two equal-height panels, no inner container
   ============================================================ */

.audience-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.audience-panel {
  padding: var(--space-16) var(--space-12);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  position: relative;
  overflow: hidden;
}

.audience-panel::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  opacity: 0.05;
  pointer-events: none;
}

.audience-panel-employer {
  background-color: var(--color-primary);
}

.audience-panel-employer::before {
  background-color: #FFFFFF;
}

.audience-panel-applicant {
  background-color: var(--color-accent);
}

.audience-panel-applicant::before {
  background-color: var(--color-primary);
}

.audience-panel-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: var(--fw-bold);
  color: var(--text-inverted);
  line-height: var(--lh-snug);
}

.audience-panel-text {
  color: rgba(255, 255, 255, 0.80);
  font-size: var(--text-md);
  line-height: var(--lh-relaxed);
  max-width: 420px;
}

.audience-checklist {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin: 0;
}

.audience-checklist li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.80);
  line-height: var(--lh-relaxed);
}

.audience-check-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.audience-check-icon svg {
  width: 10px;
  height: 10px;
  color: white;
}

@media (max-width: 767px) {
  .audience-split {
    grid-template-columns: 1fr;
  }

  .audience-panel {
    padding: var(--space-10) var(--space-6);
  }
}

/* ============================================================
   SERVICES — 4-CARD GRID
   ============================================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

@media (max-width: 1023px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 639px) {
  .services-grid { grid-template-columns: 1fr; }
}

.service-card {
  background-color: var(--color-bg);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  box-shadow: var(--shadow-card);
  transition:
    box-shadow  var(--transition-smooth),
    transform   var(--transition-smooth),
    border-color var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.service-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
  border-color: var(--color-accent-xlight);
}

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

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background-color: rgba(79, 163, 192, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.service-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.service-title {
  font-size: var(--text-md);
  font-weight: var(--fw-bold);
  color: var(--text-heading);
  line-height: var(--lh-snug);
}

.service-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  flex: 1;
  max-width: none;
}

/* ============================================================
   POSITIONS — FEATURED ROLES GRID
   ============================================================ */

.positions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

@media (max-width: 1023px) {
  .positions-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 639px) {
  .positions-grid { grid-template-columns: 1fr; }
}

.position-card {
  background-color: var(--color-bg);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  box-shadow: var(--shadow-card);
  transition:
    box-shadow var(--transition-smooth),
    transform  var(--transition-smooth);
  text-decoration: none;
  color: inherit;
}

.position-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
  text-decoration: none;
}

.position-card-type {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 0.2rem 0.625rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  background-color: rgba(79, 163, 192, 0.12);
  color: var(--color-accent-dark);
  align-self: flex-start;
}

.position-card-title {
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  color: var(--text-heading);
  line-height: var(--lh-snug);
}

.position-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  align-items: center;
}

.position-card-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  flex: 1;
  max-width: none;
}

.position-card-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-accent);
  margin-top: auto;
  transition: gap var(--transition-base), color var(--transition-base);
}

.position-card:hover .position-card-cta {
  gap: var(--space-3);
  color: var(--color-accent-dark);
}

/* ============================================================
   HOW IT WORKS — DUAL PROCESS
   ============================================================ */

.how-it-works-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hiw-panel {
  padding: var(--space-12) var(--space-10);
}

.hiw-panel-employer {
  background-color: var(--color-primary);
}

.hiw-panel-applicant {
  background-color: var(--color-secondary);
}

.hiw-panel-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  background-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.80);
}

.hiw-panel-title {
  font-size: var(--text-2xl);
  font-weight: var(--fw-bold);
  color: var(--text-inverted);
  margin-bottom: var(--space-8);
  line-height: var(--lh-snug);
}

.hiw-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

/* Connecting vertical line */
.hiw-steps::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: rgba(255, 255, 255, 0.15);
}

.hiw-step {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding: var(--space-4) 0;
  position: relative;
  z-index: 1;
}

.hiw-step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--color-accent);
  color: var(--text-inverted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(79, 163, 192, 0.20);
}

.hiw-step-content {
  padding-top: 8px;
}

.hiw-step-title {
  font-size: var(--text-md);
  font-weight: var(--fw-semibold);
  color: var(--text-inverted);
  margin-bottom: var(--space-1);
}

.hiw-step-desc {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.65);
  line-height: var(--lh-relaxed);
  max-width: none;
}

.hiw-panel-cta {
  margin-top: var(--space-8);
}

@media (max-width: 1023px) {
  .how-it-works-grid {
    grid-template-columns: 1fr;
    border-radius: var(--radius-lg);
  }

  .hiw-panel {
    padding: var(--space-8) var(--space-6);
  }
}

/* ============================================================
   WHY CHOOSE AZZUR — ICON TRUST GRID
   ============================================================ */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

@media (max-width: 1023px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 639px) {
  .trust-grid { grid-template-columns: 1fr; }
}

.trust-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: rgba(79, 163, 192, 0.10);
  color: var(--color-accent);
}

.trust-icon svg {
  width: 22px;
  height: 22px;
}

.trust-title {
  font-size: var(--text-md);
  font-weight: var(--fw-semibold);
  color: var(--text-heading);
  margin-bottom: var(--space-1);
}

.trust-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  max-width: none;
}

/* ── Testimonials ── */
.testimonials-section {
  background-color: var(--color-bg);
  border-top: 1px solid var(--color-neutral-light, #e8eef2);
  border-bottom: 1px solid var(--color-neutral-light, #e8eef2);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.testimonial-card {
  background-color: #ffffff;
  border: 1px solid #e8eef2;
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  box-shadow: 0 2px 12px rgba(13,59,92,0.06);
  transition: box-shadow 0.2s ease, transform 0.15s ease;
}

.testimonial-card:hover {
  box-shadow: 0 6px 24px rgba(13,59,92,0.12);
  transform: translateY(-2px);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
}

.testimonial-quote {
  font-size: var(--text-base);
  font-style: italic;
  color: var(--text-primary, #1a2e3d);
  line-height: 1.7;
  flex: 1;
  margin: 0;
  max-width: none;
}

.testimonial-reviewer {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid #e8eef2;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: #ffffff;
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.testimonial-name {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--text-heading);
  margin: 0;
  max-width: none;
}

.testimonial-role {
  font-size: var(--text-xs);
  color: var(--text-secondary);
  margin: 0;
  max-width: none;
}

@media (max-width: 1023px) {
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 639px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTACT STRIP
   ============================================================ */

.contact-strip {
  background-color: var(--color-neutral-light);
  border-top: var(--border);
  border-bottom: var(--border);
  padding-block: var(--space-8);
}

.contact-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

@media (max-width: 767px) {
  .contact-strip-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }
}

.contact-strip-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5);
  background-color: var(--color-bg);
  border: var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition:
    box-shadow  var(--transition-smooth),
    transform   var(--transition-smooth),
    border-color var(--transition-smooth);
}

.contact-strip-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--color-accent-xlight);
  text-decoration: none;
}

.contact-strip-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: rgba(79, 163, 192, 0.10);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-strip-icon svg {
  width: 22px;
  height: 22px;
}

.contact-strip-label {
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--text-muted);
  margin-bottom: 3px;
}

.contact-strip-value {
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  color: var(--text-heading);
  line-height: 1.3;
}

/* ============================================================
   FINAL CTA BAND — HOMEPAGE
   ============================================================ */

.cta-band {
  background-color: var(--color-primary);
  position: relative;
  overflow: hidden;
  padding-block: var(--space-20);
}

/* Background pattern texture */
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(79,163,192,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(79,163,192,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.cta-band-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
}

.cta-band-headline {
  font-size: clamp(1.875rem, 3.5vw, 3rem);
  font-weight: var(--fw-extrabold);
  color: var(--text-inverted);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  margin-bottom: var(--space-4);
}

.cta-band-headline em {
  font-style: normal;
  color: var(--color-accent);
}

.cta-band-sub {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.72);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-10);
  max-width: none;
}

.cta-band-btns {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

.cta-band-divider {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  color: rgba(255, 255, 255, 0.30);
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  margin-top: var(--space-8);
  justify-content: center;
}

.cta-band-divider::before,
.cta-band-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.12);
  max-width: 120px;
}

/* ============================================================
   STATS BAR — enhanced
   ============================================================ */

.stats-bar {
  background-color: var(--color-secondary);
  padding-block: var(--space-10);
}

.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}

@media (max-width: 767px) {
  .stats-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 767px) {
  .stat-item:nth-child(2)::after { display: none; }
  .stat-item:nth-child(3)::after { display: none; }
}

.stat-item-number {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: var(--fw-extrabold);
  color: var(--color-accent);
  line-height: 1;
  letter-spacing: var(--ls-tight);
}

.stat-item-label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.65);
  margin-top: var(--space-2);
  font-weight: var(--fw-medium);
  line-height: var(--lh-snug);
}


/* ===== css/services.css ===== */
/* ============================================================
   AZZUR WORKFORCE SOLUTIONS — SERVICES PAGE STYLES
   Employer-focused layout components
   ============================================================ */


/* ============================================================
   PAGE HERO — SERVICES
   Wider content, shorter than home hero, image right
   ============================================================ */

.svc-hero {
  display: grid;
  grid-template-columns: 55fr 45fr;
  min-height: 520px;
  overflow: hidden;
}

.svc-hero-content {
  background-color: var(--color-primary);
  padding: 5rem 4rem 5rem
           max(3rem, calc((100vw - 1280px) / 2 + 3rem));
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background-image:
    radial-gradient(ellipse at 0% 60%, rgba(79,163,192,0.09) 0%, transparent 65%),
    radial-gradient(ellipse at 100% 0%,  rgba(79,163,192,0.04) 0%, transparent 50%);
}

.svc-hero-content::after {
  content: '';
  position: absolute;
  right: 0;
  top: 12%;
  height: 76%;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--color-accent) 40%, transparent);
  border-radius: var(--radius-full);
}

.svc-hero-heading {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: var(--fw-extrabold);
  color: var(--text-inverted);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-5);
}

.svc-hero-heading em {
  font-style: normal;
  color: var(--color-accent);
}

.svc-hero-sub {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.78);
  line-height: var(--lh-relaxed);
  max-width: 600px;
  margin-bottom: var(--space-8);
}

.svc-hero-image {
  position: relative;
  overflow: hidden;
}

.svc-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.svc-hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--color-primary) 0%,
    rgba(13, 59, 92, 0.30) 30%,
    transparent 60%
  );
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 1023px) {
  .svc-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .svc-hero-content {
    padding: 3.5rem var(--container-px-md);
  }

  .svc-hero-content::after { display: none; }

  .svc-hero-image {
    min-height: 280px;
    order: -1;
  }

  .svc-hero-image::before {
    background: linear-gradient(to bottom, transparent 30%, rgba(13,59,92,0.55) 100%);
  }
}

@media (max-width: 767px) {
  .svc-hero-content { padding: 2.5rem var(--container-px); }
  .svc-hero-image   { min-height: 220px; }
}

/* ============================================================
   SERVICES OVERVIEW — CATEGORY CARDS
   Large cards with accent top bar, roles list inside
   ============================================================ */

.svc-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

@media (max-width: 767px) {
  .svc-overview-grid { grid-template-columns: 1fr; }
}

.svc-category-card {
  background-color: var(--color-bg);
  border: var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow var(--transition-smooth), transform var(--transition-smooth);
}

.svc-category-card,
.svc-category-card * {
  box-sizing: border-box;
}

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

.svc-category-header {
  padding: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  border-bottom: var(--border);
  background-color: var(--color-neutral-light);
}

.svc-category-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: rgba(79, 163, 192, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-accent);
}

.svc-category-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.svc-category-title {
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  color: var(--text-heading);
  line-height: 1.3;
}

.svc-category-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.svc-category-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: none;
  flex: 1;
  margin: 0;
}

.svc-roles-label {
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.625rem;
  margin-bottom: 0.5rem;
}

.svc-roles-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.svc-role-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  background-color: rgba(79, 163, 192, 0.08);
  border: 1px solid rgba(79, 163, 192, 0.25);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  color: var(--color-accent-dark);
  max-width: 100%;
  white-space: normal;
  line-height: 1.3;
}

.svc-category-body .btn {
  margin-top: 0.75rem !important;
  align-self: flex-start;
}

@media (min-width: 1024px) {
  .svc-category-header,
  .svc-category-body {
    padding: 2rem;
  }
}

@media (max-width: 767px) {
  .svc-category-header,
  .svc-category-body {
    padding: 1.25rem;
  }

  .svc-category-header {
    gap: 0.75rem;
  }
}

/* ============================================================
   STAFFING TYPES — COMPARISON CARDS
   Per Diem · Contract · Long-Term
   ============================================================ */

.staffing-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

@media (max-width: 1023px) {
  .staffing-types-grid { grid-template-columns: 1fr; gap: var(--space-4); }
}

.staffing-type-card {
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.staffing-type-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.staffing-type-card-per-diem {
  background-color: var(--color-primary);
}

.staffing-type-card-contract {
  background-color: var(--color-secondary);
}

.staffing-type-card-longterm {
  background-color: var(--color-accent);
}

/* Decorative circle accent */
.staffing-type-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.staffing-type-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.875rem;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.18);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.90);
  align-self: flex-start;
}

.staffing-type-title {
  font-size: var(--text-2xl);
  font-weight: var(--fw-bold);
  color: var(--text-inverted);
  line-height: var(--lh-snug);
}

.staffing-type-desc {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.78);
  line-height: var(--lh-relaxed);
  flex: 1;
  max-width: none;
}

.staffing-type-best-for {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: var(--space-4);
}

.staffing-type-best-label {
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}

.staffing-type-best-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.staffing-type-best-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.80);
}

.staffing-type-best-list li::before {
  content: '→';
  color: rgba(255, 255, 255, 0.50);
  font-size: var(--text-xs);
  margin-top: 2px;
  flex-shrink: 0;
}

/* ============================================================
   ROLES WE PROVIDE — CATEGORIZED
   ============================================================ */

.roles-categories {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.roles-category {
  background-color: var(--color-bg);
  border: var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.roles-category-header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  background-color: var(--color-neutral-light);
  border-bottom: var(--border);
}

.roles-category-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--color-accent);
  flex-shrink: 0;
}

.roles-category-label {
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  color: var(--text-heading);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
}

.roles-category-count {
  margin-left: auto;
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-weight: var(--fw-medium);
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

@media (max-width: 1023px) {
  .roles-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 639px) {
  .roles-grid { grid-template-columns: 1fr; }
}

.role-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-6);
  border-right: var(--border);
  border-bottom: var(--border);
  text-decoration: none;
  transition: background-color var(--transition-base);
}

.role-item:hover {
  background-color: rgba(79, 163, 192, 0.04);
  text-decoration: none;
}

/* Remove right border on last column */
.roles-grid .role-item:nth-child(3n) {
  border-right: none;
}

@media (max-width: 1023px) {
  .roles-grid .role-item:nth-child(3n) { border-right: var(--border); }
  .roles-grid .role-item:nth-child(2n) { border-right: none; }
}

@media (max-width: 639px) {
  .roles-grid .role-item { border-right: none; }
}

.role-check {
  width: 22px;
  height: 22px;
  border-radius: var(--radius-sm);
  background-color: rgba(79, 163, 192, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-accent);
}

.role-check svg {
  width: 12px;
  height: 12px;
}

.role-name {
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--text-heading);
  line-height: var(--lh-snug);
}

.role-abbr {
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-weight: var(--fw-regular);
  margin-top: 1px;
}

/* ============================================================
   INDUSTRIES — VISUAL GRID
   ============================================================ */

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}

@media (max-width: 1023px) {
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 639px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
}

.industry-card {
  background-color: var(--color-bg);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-4);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  box-shadow: var(--shadow-xs);
  transition:
    box-shadow var(--transition-smooth),
    transform  var(--transition-smooth),
    border-color var(--transition-smooth);
  cursor: default;
}

.industry-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--color-accent-xlight);
}

.industry-icon {
  font-size: 2.25rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

.industry-icon svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.industry-name {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--text-heading);
  line-height: var(--lh-snug);
}

.industry-note {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: var(--lh-relaxed);
}

/* ============================================================
   HOW IT WORKS — CONNECTED TIMELINE
   ============================================================ */

.process-track {
  position: relative;
}

/* Horizontal connector line between steps */
.process-track::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(
    to right,
    var(--color-accent),
    var(--color-accent-light) 50%,
    rgba(79, 163, 192, 0.20)
  );
  z-index: 0;
}

@media (max-width: 767px) {
  .process-track::before { display: none; }
}

.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .process-steps-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-4);
}

@media (max-width: 767px) {
  .process-step {
    flex-direction: row;
    text-align: left;
    padding: var(--space-5) var(--space-4);
    border-bottom: var(--border);
    gap: var(--space-5);
  }

  .process-step:last-child { border-bottom: none; }
}

.process-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--color-accent);
  color: var(--text-inverted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  font-weight: var(--fw-extrabold);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 6px rgba(79, 163, 192, 0.15);
}

.process-step-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.process-step-title {
  font-size: var(--text-md);
  font-weight: var(--fw-bold);
  color: var(--text-inverted);
}

.process-step-desc {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.70);
  line-height: var(--lh-relaxed);
  max-width: 220px;
  margin-inline: auto;
}

@media (max-width: 767px) {
  .process-step-desc { margin-inline: 0; max-width: none; }
}

/* ============================================================
   WHY CHOOSE AZZUR — ICON GRID
   ============================================================ */

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-5);
}

@media (max-width: 1199px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}

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

@media (max-width: 479px) {
  .why-grid { grid-template-columns: 1fr; }
}

.why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-3);
  padding: var(--space-6);
  background-color: var(--color-bg);
  border: var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--transition-smooth), transform var(--transition-smooth);
}

.why-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background-color: rgba(79, 163, 192, 0.10);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.why-title {
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  color: var(--text-heading);
  line-height: var(--lh-snug);
}

.why-desc {
  font-size: var(--text-xs);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  max-width: none;
}

/* ============================================================
   STRONG CTA BAND — SERVICES PAGE
   ============================================================ */

.svc-cta-band {
  background-color: var(--color-primary);
  position: relative;
  overflow: hidden;
  padding-block: var(--space-20);
}

.svc-cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 10% 50%, rgba(79,163,192,0.14) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 50%, rgba(79,163,192,0.08) 0%, transparent 55%);
  pointer-events: none;
}

/* Decorative large circle */
.svc-cta-band::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 2px solid rgba(79, 163, 192, 0.12);
  pointer-events: none;
}

.svc-cta-inner {
  position: relative;
  z-index: 1;
}

.svc-cta-split {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--space-12);
}

@media (max-width: 1023px) {
  .svc-cta-split {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-8);
  }

  .svc-cta-split .btn-group { justify-content: center; }
}

.svc-cta-headline {
  font-size: clamp(1.875rem, 3vw, 2.75rem);
  font-weight: var(--fw-extrabold);
  color: var(--text-inverted);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  margin-bottom: var(--space-3);
}

.svc-cta-headline em {
  font-style: normal;
  color: var(--color-accent);
}

.svc-cta-sub {
  font-size: var(--text-md);
  color: rgba(255, 255, 255, 0.72);
  line-height: var(--lh-relaxed);
  max-width: 520px;
  max-width: none;
}

/* ============================================================
   CONTACT STRIP — SERVICES PAGE
   ============================================================ */

.svc-contact-strip {
  background-color: var(--color-neutral-light);
  border-top: var(--border);
  padding-block: var(--space-8);
}

.svc-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

@media (max-width: 767px) {
  .svc-contact-grid { grid-template-columns: 1fr; }
}

.svc-contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  padding: var(--space-6);
  background-color: var(--color-bg);
  border: var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition:
    box-shadow var(--transition-smooth),
    transform  var(--transition-smooth),
    border-color var(--transition-smooth);
}

.svc-contact-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--color-accent-xlight);
  text-decoration: none;
}

.svc-contact-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background-color: rgba(79, 163, 192, 0.10);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.svc-contact-icon svg { width: 24px; height: 24px; }

.svc-contact-label {
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--text-muted);
  margin-bottom: 4px;
}

.svc-contact-value {
  font-size: var(--text-md);
  font-weight: var(--fw-bold);
  color: var(--text-heading);
  line-height: 1.2;
}

.svc-contact-note {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: 2px;
}


/* ===== css/positions.css ===== */
/* ============================================================
   AZZUR WORKFORCE SOLUTIONS — POSITIONS PAGE STYLES
   Applicant-focused layout components
   ============================================================ */


/* ============================================================
   PAGE HERO — POSITIONS
   Split layout: content left, image right
   ============================================================ */

.pos-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  overflow: hidden;
}

.pos-hero-content {
  background-color: var(--color-primary);
  padding: 5rem 4rem 5rem
           max(3rem, calc((100vw - 1280px) / 2 + 3rem));
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background-image:
    radial-gradient(ellipse at 0% 50%,  rgba(79, 163, 192, 0.09) 0%, transparent 65%),
    radial-gradient(ellipse at 100% 10%, rgba(79, 163, 192, 0.04) 0%, transparent 50%);
}

.pos-hero-content::after {
  content: '';
  position: absolute;
  right: 0;
  top: 12%;
  height: 76%;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--color-accent) 40%, transparent);
  border-radius: var(--radius-full);
}

.pos-hero-heading {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: var(--fw-extrabold);
  color: var(--text-inverted);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-5);
}

.pos-hero-heading em {
  font-style: normal;
  color: var(--color-accent);
}

.pos-hero-sub {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.78);
  line-height: var(--lh-relaxed);
  max-width: 640px;
  margin-bottom: var(--space-8);
}

.pos-hero-image {
  position: relative;
  overflow: hidden;
}

.pos-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.pos-hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--color-primary) 0%,
    rgba(13, 59, 92, 0.30) 30%,
    transparent 60%
  );
  z-index: 1;
  pointer-events: none;
}

.pos-hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-6);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color var(--transition-base);
}

.pos-hero-scroll:hover {
  color: rgba(255, 255, 255, 0.80);
  text-decoration: none;
}

.pos-hero-scroll svg {
  width: 18px;
  height: 18px;
  animation: bounce 1.8s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(4px); }
}

@media (max-width: 1023px) {
  .pos-hero { grid-template-columns: 1fr; min-height: auto; }
  .pos-hero-content { padding: 3.5rem var(--container-px-md); }
  .pos-hero-content::after { display: none; }
  .pos-hero-image { min-height: 280px; order: -1; }
  .pos-hero-image::before {
    background: linear-gradient(to bottom, transparent 30%, rgba(13, 59, 92, 0.55) 100%);
  }
}

@media (max-width: 767px) {
  .pos-hero-content { padding: 2.5rem var(--container-px); }
  .pos-hero-image   { min-height: 220px; }
}

/* ============================================================
   POSITIONS GRID — ROLE CARDS
   ============================================================ */

.pos-category-group + .pos-category-group {
  margin-top: var(--space-12);
}

.pos-category-label {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.pos-category-label-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.pos-category-label-dot-healthcare { background-color: var(--color-accent); }
.pos-category-label-dot-therapy    { background-color: var(--color-secondary); }
.pos-category-label-dot-support    { background-color: var(--color-primary); }

.pos-category-label-text {
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--text-heading);
  white-space: nowrap;
}

.pos-category-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background-color: var(--color-neutral);
}

.pos-roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

@media (max-width: 1023px) {
  .pos-roles-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 639px) {
  .pos-roles-grid { grid-template-columns: 1fr; }
}

.pos-role-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  background-color: var(--color-bg);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-xs);
  transition:
    box-shadow     var(--transition-smooth),
    transform      var(--transition-smooth),
    border-color   var(--transition-smooth);
}

.pos-role-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
  border-color: var(--color-accent-xlight);
  text-decoration: none;
  color: inherit;
}

.pos-role-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pos-role-icon svg { width: 22px; height: 22px; }

.pos-role-icon-healthcare {
  background-color: rgba(79, 163, 192, 0.12);
  color: var(--color-accent);
}

.pos-role-icon-therapy {
  background-color: rgba(31, 78, 107, 0.10);
  color: var(--color-secondary);
}

.pos-role-icon-support {
  background-color: rgba(13, 59, 92, 0.08);
  color: var(--color-primary);
}

.pos-role-title {
  font-size: var(--text-md);
  font-weight: var(--fw-bold);
  color: var(--text-heading);
  line-height: var(--lh-snug);
}

.pos-role-abbr {
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  color: var(--text-muted);
  margin-top: 1px;
}

.pos-role-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  flex: 1;
  max-width: none;
}

.pos-role-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-accent-dark);
  margin-top: var(--space-1);
}

.pos-role-cta-arrow {
  display: inline-block;
  transition: transform var(--transition-fast);
}

.pos-role-card:hover .pos-role-cta-arrow {
  transform: translateX(4px);
}

/* ============================================================
   QUICK APPLY CTA STRIP
   ============================================================ */

.pos-quick-apply {
  background-color: var(--color-secondary);
  padding-block: var(--space-16);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pos-quick-apply::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse at 50% 50%, rgba(79, 163, 192, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.pos-quick-apply-inner {
  position: relative;
  z-index: 1;
}

.pos-quick-apply-headline {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: var(--fw-extrabold);
  color: var(--text-inverted);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-tight);
  margin-bottom: var(--space-3);
}

.pos-quick-apply-sub {
  font-size: var(--text-md);
  color: rgba(255, 255, 255, 0.72);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-7);
  max-width: 480px;
  margin-inline: auto;
  margin-block-end: var(--space-7);
}

/* ============================================================
   WHY WORK WITH AZZUR — 4-POINT GRID
   ============================================================ */

.pos-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

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

@media (max-width: 479px) {
  .pos-why-grid { grid-template-columns: 1fr; }
}

.pos-why-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-6);
  background-color: var(--color-bg);
  border: var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--transition-smooth), transform var(--transition-smooth);
}

.pos-why-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.pos-why-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: rgba(79, 163, 192, 0.10);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pos-why-icon svg { width: 22px; height: 22px; }

.pos-why-title {
  font-size: var(--text-base);
  font-weight: var(--fw-bold);
  color: var(--text-heading);
  line-height: var(--lh-snug);
}

.pos-why-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  max-width: none;
}

/* ============================================================
   FINAL CTA BAND
   ============================================================ */

.pos-final-cta {
  background-color: var(--color-primary);
  position: relative;
  overflow: hidden;
  padding-block: var(--space-20);
  text-align: center;
}

.pos-final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(79, 163, 192, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 50%, rgba(79, 163, 192, 0.08) 0%, transparent 55%);
  pointer-events: none;
}

.pos-final-cta::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 2px solid rgba(79, 163, 192, 0.10);
  pointer-events: none;
}

.pos-final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin-inline: auto;
}

.pos-final-cta-headline {
  font-size: clamp(1.875rem, 3vw, 2.75rem);
  font-weight: var(--fw-extrabold);
  color: var(--text-inverted);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  margin-bottom: var(--space-4);
}

.pos-final-cta-headline em {
  font-style: normal;
  color: var(--color-accent);
}

.pos-final-cta-sub {
  font-size: var(--text-md);
  color: rgba(255, 255, 255, 0.72);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-8);
  max-width: none;
}


/* ===== css/position.css ===== */
/* ============================================================
   AZZUR WORKFORCE SOLUTIONS — POSITION DETAIL PAGE STYLES
   Reusable for all 10 individual role pages
   ============================================================ */


/* ============================================================
   BREADCRUMB NAV
   ============================================================ */

.pos-breadcrumb {
  background-color: var(--color-neutral-light);
  border-bottom: var(--border);
  padding-block: var(--space-3);
}

.pos-breadcrumb-list {
  list-style: none;
  padding: 0;
  display: flex;
  gap: var(--space-2);
  align-items: center;
  flex-wrap: wrap;
  font-size: var(--text-sm);
}

.pos-breadcrumb-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition-base);
}

.pos-breadcrumb-link:hover { color: var(--color-accent); }

.pos-breadcrumb-sep { color: var(--color-neutral-dark); }

.pos-breadcrumb-current {
  color: var(--text-primary);
  font-weight: var(--fw-medium);
}

/* ============================================================
   POSITION DETAIL HERO
   Split 55/45, shorter than hub hero
   ============================================================ */

.pos-detail-hero {
  display: grid;
  grid-template-columns: 55fr 45fr;
  min-height: 420px;
  overflow: hidden;
}

.pos-detail-hero-content {
  background-color: var(--color-primary);
  padding: 4rem max(3rem, calc((100vw - 1280px) / 2 + 3rem)) 4rem
           max(3rem, calc((100vw - 1280px) / 2 + 3rem));
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background-image:
    radial-gradient(ellipse at 0% 50%,  rgba(79, 163, 192, 0.09) 0%, transparent 65%),
    radial-gradient(ellipse at 100% 10%, rgba(79, 163, 192, 0.04) 0%, transparent 50%);
}

.pos-detail-hero-content::after {
  content: '';
  position: absolute;
  right: 0;
  top: 12%;
  height: 76%;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--color-accent) 40%, transparent);
  border-radius: var(--radius-full);
}

.pos-detail-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.pos-detail-hero-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.20);
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.85);
}

.pos-detail-hero-tag-accent {
  background-color: rgba(79, 163, 192, 0.20);
  border-color: rgba(79, 163, 192, 0.40);
  color: var(--color-accent);
}

.pos-detail-hero-title {
  font-size: clamp(1.875rem, 3vw, 2.75rem);
  font-weight: var(--fw-extrabold);
  color: var(--text-inverted);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-4);
}

.pos-detail-hero-sub {
  font-size: var(--text-md);
  color: rgba(255, 255, 255, 0.78);
  line-height: var(--lh-relaxed);
  max-width: 460px;
  margin-bottom: var(--space-7);
}

.pos-detail-hero-image {
  position: relative;
  overflow: hidden;
}

.pos-detail-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.pos-detail-hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--color-primary) 0%,
    rgba(13, 59, 92, 0.30) 30%,
    transparent 60%
  );
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 1023px) {
  .pos-detail-hero { grid-template-columns: 1fr; min-height: auto; }
  .pos-detail-hero-content { padding: 3rem var(--container-px-md); }
  .pos-detail-hero-content::after { display: none; }
  .pos-detail-hero-image { min-height: 240px; order: -1; }
  .pos-detail-hero-image::before {
    background: linear-gradient(to bottom, transparent 30%, rgba(13, 59, 92, 0.55) 100%);
  }
}

@media (max-width: 767px) {
  .pos-detail-hero-content { padding: 2.5rem var(--container-px); }
  .pos-detail-hero-image   { min-height: 200px; }
}

.position-page .pos-detail-hero-content {
  padding-right: 4rem;
}

.position-page .pos-detail-hero-sub {
  max-width: 640px;
}

@media (max-width: 1023px) {
  .position-page .pos-detail-hero-content {
    padding-right: var(--container-px-md);
  }

  .position-page .pos-detail-hero-sub {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .position-page .pos-detail-hero-content {
    padding-right: var(--container-px);
  }
}

/* ============================================================
   TWO-COLUMN DETAIL LAYOUT
   Main content + sticky apply sidebar
   ============================================================ */

.pos-detail-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--space-12);
  align-items: start;
}

@media (max-width: 1199px) {
  .pos-detail-layout {
    grid-template-columns: 1fr 310px;
    gap: var(--space-8);
  }
}

@media (max-width: 1023px) {
  .pos-detail-layout {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .pos-detail-sidebar { order: -1; }
}

.pos-detail-main { min-width: 0; }

/* ============================================================
   CONTENT SECTIONS (within main column)
   ============================================================ */

.pos-section {
  padding-bottom: var(--space-8);
  margin-bottom: var(--space-8);
  border-bottom: var(--border);
}

.pos-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.pos-section-title {
  font-size: var(--text-xl);
  font-weight: var(--fw-bold);
  color: var(--text-heading);
  margin-bottom: var(--space-4);
}

.pos-section-intro {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  max-width: none;
}

/* ============================================================
   CHECKLIST — RESPONSIBILITIES & REQUIREMENTS
   ============================================================ */

.pos-checklist {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.pos-checklist-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.pos-check-icon {
  width: 20px;
  height: 20px;
  border-radius: var(--radius-sm);
  background-color: rgba(79, 163, 192, 0.10);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.pos-check-icon svg { width: 11px; height: 11px; }

.pos-checklist-text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
}

/* ============================================================
   WORK ENVIRONMENTS — CHIP ROW
   ============================================================ */

.pos-env-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.pos-env-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background-color: var(--color-neutral-light);
  border: var(--border);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--text-secondary);
  transition: border-color var(--transition-base), background-color var(--transition-base);
}

.pos-env-chip:hover {
  border-color: var(--color-accent-xlight);
  background-color: rgba(79, 163, 192, 0.04);
}

.pos-env-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-accent);
  flex-shrink: 0;
}

/* ============================================================
   STICKY APPLY SIDEBAR CARD
   ============================================================ */

.pos-apply-card {
  position: sticky;
  top: calc(72px + var(--space-6));
  background-color: var(--color-bg);
  border: var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 1023px) {
  .pos-apply-card { position: static; }
}

.pos-apply-card-header {
  background-color: var(--color-primary);
  padding: var(--space-6) var(--space-7);
  position: relative;
  overflow: hidden;
}

.pos-apply-card-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 50%, rgba(79, 163, 192, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.pos-apply-card-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  background-color: rgba(79, 163, 192, 0.20);
  border: 1px solid rgba(79, 163, 192, 0.40);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  color: var(--color-accent);
  margin-bottom: var(--space-3);
  position: relative;
  z-index: 1;
}

.pos-apply-card-title {
  font-size: var(--text-xl);
  font-weight: var(--fw-bold);
  color: var(--text-inverted);
  line-height: var(--lh-snug);
  position: relative;
  z-index: 1;
}

.pos-apply-card-abbr {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.55);
  font-weight: var(--fw-medium);
  margin-top: var(--space-1);
  position: relative;
  z-index: 1;
}

.pos-apply-card-body {
  padding: var(--space-6) var(--space-7);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.pos-apply-meta {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.pos-apply-meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.pos-apply-meta-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background-color: rgba(79, 163, 192, 0.08);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pos-apply-meta-icon svg { width: 16px; height: 16px; }

.pos-apply-meta-label {
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--text-muted);
  margin-bottom: 2px;
}

.pos-apply-meta-value {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--text-heading);
  line-height: var(--lh-snug);
}

.pos-apply-card-divider {
  height: 1px;
  background-color: var(--color-neutral);
}

.pos-apply-card-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.pos-apply-card-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition-base);
}

.pos-apply-card-phone:hover { color: var(--color-accent); }

.pos-apply-card-phone svg { width: 14px; height: 14px; }

.pos-apply-card-trust {
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-align: center;
  font-weight: var(--fw-medium);
  padding-top: var(--space-1);
}

.position-page .pos-apply-card,
.position-page .pos-apply-card * {
  box-sizing: border-box;
}

.position-page .pos-apply-card-header {
  padding: 1.75rem;
}

.position-page .pos-apply-card-body {
  padding: 1.5rem 1.75rem 1.75rem;
  gap: 1.25rem;
}

.position-page .pos-apply-meta {
  gap: 1.125rem;
}

.position-page .pos-apply-meta-item {
  align-items: flex-start;
  gap: 0.75rem;
}

.position-page .pos-apply-meta-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 10px;
}

.position-page .pos-apply-meta-item > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.position-page .pos-apply-meta-label,
.position-page .pos-apply-meta-value,
.position-page .pos-apply-card-title,
.position-page .pos-apply-card-abbr,
.position-page .pos-apply-card-trust {
  margin: 0;
}

.position-page .pos-apply-card-divider {
  margin: 0.125rem 0;
}

.position-page .pos-apply-card-actions {
  gap: 0.75rem;
}

.position-page .pos-apply-card-phone {
  padding-top: 0.125rem;
}

@media (max-width: 767px) {
  .position-page .pos-apply-card-header,
  .position-page .pos-apply-card-body {
    padding-inline: 1.25rem;
  }
}

/* ============================================================
   APPLY CTA BAND (bottom of page)
   ============================================================ */

.pos-apply-band {
  background-color: var(--color-primary);
  position: relative;
  overflow: hidden;
  padding-block: var(--space-20);
  text-align: center;
}

.pos-apply-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(79, 163, 192, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 50%, rgba(79, 163, 192, 0.08) 0%, transparent 55%);
  pointer-events: none;
}

.pos-apply-band::after {
  content: '';
  position: absolute;
  left: -80px;
  top: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 2px solid rgba(79, 163, 192, 0.10);
  pointer-events: none;
}

.pos-apply-band-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin-inline: auto;
}

.pos-apply-band-heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: var(--fw-extrabold);
  color: var(--text-inverted);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  margin-bottom: var(--space-4);
}

.pos-apply-band-heading em {
  font-style: normal;
  color: var(--color-accent);
}

.pos-apply-band-sub {
  font-size: var(--text-md);
  color: rgba(255, 255, 255, 0.72);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-8);
  max-width: none;
}

/* ============================================================
   RELATED POSITIONS — 3-CARD GRID
   ============================================================ */

.pos-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

@media (max-width: 1023px) {
  .pos-related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 639px) {
  .pos-related-grid { grid-template-columns: 1fr; }
}

.pos-related-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  background-color: var(--color-bg);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-xs);
  transition:
    box-shadow    var(--transition-smooth),
    transform     var(--transition-smooth),
    border-color  var(--transition-smooth);
}

.pos-related-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
  border-color: var(--color-accent-xlight);
  text-decoration: none;
  color: inherit;
}

.pos-related-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.6rem;
  background-color: rgba(79, 163, 192, 0.08);
  border: 1px solid rgba(79, 163, 192, 0.20);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  color: var(--color-accent-dark);
  align-self: flex-start;
}

.pos-related-title {
  font-size: var(--text-md);
  font-weight: var(--fw-bold);
  color: var(--text-heading);
  line-height: var(--lh-snug);
}

.pos-related-abbr {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: 2px;
}

.pos-related-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  flex: 1;
  max-width: none;
}

.pos-related-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-accent-dark);
  margin-top: var(--space-1);
}

.pos-related-arrow {
  display: inline-block;
  transition: transform var(--transition-fast);
}

.pos-related-card:hover .pos-related-arrow { transform: translateX(4px); }


/* ===== css/about.css ===== */
/* ============================================================
   AZZUR WORKFORCE SOLUTIONS — ABOUT PAGE STYLES
   Trust + credibility layout components
   ============================================================ */


/* ============================================================
   PAGE HERO — ABOUT
   Split 55/45: content left, image right
   ============================================================ */

.abt-hero {
  display: grid;
  grid-template-columns: 55fr 45fr;
  min-height: 480px;
  overflow: hidden;
}

.abt-hero-content {
  background-color: var(--color-primary);
  padding: 5rem 4rem 5rem
           max(3rem, calc((100vw - 1280px) / 2 + 3rem));
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background-image:
    radial-gradient(ellipse at 0% 50%,  rgba(79, 163, 192, 0.09) 0%, transparent 65%),
    radial-gradient(ellipse at 100% 10%, rgba(79, 163, 192, 0.04) 0%, transparent 50%);
}

.abt-hero-content::after {
  content: '';
  position: absolute;
  right: 0;
  top: 12%;
  height: 76%;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--color-accent) 40%, transparent);
  border-radius: var(--radius-full);
}

.abt-hero-heading {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: var(--fw-extrabold);
  color: var(--text-inverted);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-5);
}

.abt-hero-heading em {
  font-style: normal;
  color: var(--color-accent);
}

.abt-hero-sub {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.78);
  line-height: var(--lh-relaxed);
  max-width: 640px;
  margin-bottom: var(--space-8);
}

.abt-hero-image {
  position: relative;
  overflow: hidden;
}

.abt-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.abt-hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--color-primary) 0%,
    rgba(13, 59, 92, 0.30) 30%,
    transparent 60%
  );
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 1023px) {
  .abt-hero { grid-template-columns: 1fr; min-height: auto; }
  .abt-hero-content { padding: 3.5rem var(--container-px-md); }
  .abt-hero-content::after { display: none; }
  .abt-hero-image { min-height: 260px; order: -1; }
  .abt-hero-image::before {
    background: linear-gradient(to bottom, transparent 30%, rgba(13, 59, 92, 0.55) 100%);
  }
}

@media (max-width: 767px) {
  .abt-hero-content { padding: 2.5rem var(--container-px); }
  .abt-hero-image   { min-height: 220px; }
}

/* ============================================================
   STATS STRIP — LIGHT TREATMENT
   White bg with bordered numbers for About credibility
   ============================================================ */

.abt-stats-strip {
  background-color: var(--color-bg);
  border-top: var(--border);
  border-bottom: var(--border);
  padding-block: var(--space-8);
}

.abt-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  text-align: center;
}

@media (max-width: 767px) {
  .abt-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

.abt-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-4);
}

.abt-stat-value {
  font-size: var(--text-3xl);
  font-weight: var(--fw-extrabold);
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: var(--ls-tight);
}

.abt-stat-label {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  font-weight: var(--fw-medium);
  line-height: var(--lh-snug);
}

/* ============================================================
   WHO WE ARE — INTRO SPLIT
   Text 60% left, image 40% right
   ============================================================ */

.abt-intro-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--space-12);
  align-items: center;
}

@media (max-width: 1023px) {
  .abt-intro-layout { grid-template-columns: 1fr; gap: var(--space-8); }
}

.abt-intro-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.abt-intro-body {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  max-width: none;
}

.abt-intro-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.abt-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1023px) {
  .abt-intro-image { aspect-ratio: 16 / 9; }
}

/* ============================================================
   WHAT WE DO — DUAL AUDIENCE PANELS
   Navy (employer) + Secondary (applicant)
   ============================================================ */

.abt-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}

@media (max-width: 767px) {
  .abt-dual-grid { grid-template-columns: 1fr; }
}

.abt-dual-card {
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  position: relative;
  overflow: hidden;
}

.abt-dual-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.abt-dual-card-employer { background-color: var(--color-primary); }
.abt-dual-card-applicant { background-color: var(--color-secondary); }

.abt-dual-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background-color: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.90);
  flex-shrink: 0;
}

.abt-dual-icon svg { width: 24px; height: 24px; }

.abt-dual-title {
  font-size: var(--text-xl);
  font-weight: var(--fw-bold);
  color: var(--text-inverted);
  line-height: var(--lh-snug);
}

.abt-dual-desc {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.78);
  line-height: var(--lh-relaxed);
  max-width: none;
}

.abt-dual-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  flex: 1;
}

.abt-dual-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.80);
  line-height: var(--lh-relaxed);
}

.abt-dual-list li::before {
  content: '→';
  color: rgba(255, 255, 255, 0.45);
  font-size: var(--text-xs);
  margin-top: 3px;
  flex-shrink: 0;
}

/* ============================================================
   WHO WE SERVE — 8-TILE GRID
   ============================================================ */

.abt-serve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}

@media (max-width: 1023px) {
  .abt-serve-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 639px) {
  .abt-serve-grid { grid-template-columns: repeat(2, 1fr); }
}

.abt-serve-item {
  background-color: var(--color-bg);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-4);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-3);
  box-shadow: var(--shadow-xs);
  transition:
    box-shadow var(--transition-smooth),
    transform  var(--transition-smooth),
    border-color var(--transition-smooth);
}

.abt-serve-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--color-accent-xlight);
}

.abt-serve-item-highlight {
  background-color: rgba(79, 163, 192, 0.05);
  border-color: rgba(79, 163, 192, 0.30);
}

.abt-serve-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: rgba(79, 163, 192, 0.10);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.abt-serve-icon svg { width: 22px; height: 22px; }

.abt-serve-name {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--text-heading);
  line-height: var(--lh-snug);
}

/* ============================================================
   CREDENTIALING STANDARDS — CHECKLIST SPLIT
   ============================================================ */

.abt-creds-layout {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: var(--space-12);
  align-items: center;
}

@media (max-width: 1023px) {
  .abt-creds-layout { grid-template-columns: 1fr; gap: var(--space-8); }
}

.abt-creds-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.abt-creds-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1023px) {
  .abt-creds-image { aspect-ratio: 16 / 9; }
}

.abt-creds-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.abt-creds-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.abt-creds-check {
  width: 22px;
  height: 22px;
  border-radius: var(--radius-sm);
  background-color: rgba(79, 163, 192, 0.10);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.abt-creds-check svg { width: 12px; height: 12px; }

.abt-creds-text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
}

/* ============================================================
   MISSION + VALUES
   ============================================================ */

.abt-mission-block {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
  padding: 0;
  background-color: transparent;
  border: none;
  box-shadow: none;
  margin-bottom: var(--space-12);
}

.abt-mission-eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: var(--ls-widest);
  color: var(--color-accent);
  text-align: center;
  margin-top: 0;
  margin-inline: auto;
  margin-bottom: var(--space-3);
}

.abt-mission-text {
  font-size: var(--text-lg);
  color: var(--text-heading);
  font-weight: var(--fw-medium);
  line-height: var(--lh-relaxed);
  font-style: italic;
  max-width: none;
  margin: 0;
}

.abt-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .abt-values-grid { grid-template-columns: 1fr; }
}

.abt-value-card {
  background-color: var(--color-bg);
  border: var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow var(--transition-smooth), transform var(--transition-smooth);
}

.abt-value-card,
.abt-value-card * {
  box-sizing: border-box;
}

.abt-value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.abt-value-card-top {
  height: 4px;
  background: linear-gradient(to right, var(--color-accent), var(--color-accent-light));
}

.abt-value-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  flex: 1;
}

.abt-value-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background-color: rgba(79, 163, 192, 0.10);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 0.5rem;
}

.abt-value-icon svg { width: 22px; height: 22px; }

.abt-value-name {
  font-size: var(--text-xl);
  font-weight: var(--fw-bold);
  color: var(--text-heading);
  line-height: var(--lh-snug);
  margin: 0;
}

.abt-value-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  max-width: none;
  margin: 0;
}

@media (min-width: 1024px) {
  .abt-value-card-body {
    padding: 2rem;
  }
}

@media (max-width: 767px) {
  .abt-value-card-body {
    padding: 1.25rem;
  }
}

/* ============================================================
   TESTIMONIALS — ABOUT PAGE
   On section-mid background
   ============================================================ */

/* Ensure heading and eyebrow are readable on dark bg */
.section-mid .section-title,
.section-mid .section-subtitle {
  color: var(--text-inverted);
}

.section-mid .eyebrow {
  color: var(--color-accent-light);
}

.abt-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

@media (max-width: 1023px) {
  .abt-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 639px) {
  .abt-testimonials-grid { grid-template-columns: 1fr; }
}

.abt-testimonial-card {
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: var(--space-7) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  backdrop-filter: blur(4px);
}

.abt-testimonial-mark {
  font-size: var(--text-4xl);
  color: var(--color-accent);
  line-height: 0.85;
  font-family: Georgia, serif;
  opacity: 0.70;
}

.abt-testimonial-quote {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.85);
  line-height: var(--lh-relaxed);
  font-style: italic;
  flex: 1;
  max-width: none;
}

.abt-testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: var(--space-4);
}

.abt-testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(79, 163, 192, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-base);
  font-weight: var(--fw-bold);
  color: var(--color-accent);
  flex-shrink: 0;
}

.abt-testimonial-name {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--text-inverted);
  line-height: var(--lh-snug);
}

.abt-testimonial-role {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}

/* ============================================================
   FINAL CTA BAND — DUAL AUDIENCE
   ============================================================ */

.abt-cta-band {
  background-color: var(--color-primary);
  position: relative;
  overflow: hidden;
  padding-block: var(--space-20);
  text-align: center;
}

.abt-cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(79, 163, 192, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 50%, rgba(79, 163, 192, 0.08) 0%, transparent 55%);
  pointer-events: none;
}

.abt-cta-band::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 2px solid rgba(79, 163, 192, 0.10);
  pointer-events: none;
}

.abt-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin-inline: auto;
}

.abt-cta-headline {
  font-size: clamp(1.875rem, 3vw, 2.75rem);
  font-weight: var(--fw-extrabold);
  color: var(--text-inverted);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  margin-bottom: var(--space-4);
}

.abt-cta-headline em {
  font-style: normal;
  color: var(--color-accent);
}

.abt-cta-sub {
  font-size: var(--text-md);
  color: rgba(255, 255, 255, 0.72);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-8);
  max-width: none;
}


/* ===== css/contact.css ===== */
/* ============================================================
   AZZUR WORKFORCE SOLUTIONS — CONTACT PAGE STYLES
   Simple, high-conversion layout for 3 user paths
   ============================================================ */


/* ============================================================
   PAGE HERO — CONTACT
   Compact centered navy, no split image needed
   ============================================================ */

.cnt-hero {
  background-color: var(--color-primary);
  padding-block: 4rem 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cnt-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 25% 50%, rgba(79, 163, 192, 0.11) 0%, transparent 60%),
    radial-gradient(ellipse at 75% 50%, rgba(79, 163, 192, 0.07) 0%, transparent 55%);
  pointer-events: none;
}

.cnt-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin-inline: auto;
}

.cnt-hero-heading {
  font-size: clamp(1.875rem, 3.2vw, 2.75rem);
  font-weight: var(--fw-extrabold);
  color: var(--text-inverted);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  margin-bottom: var(--space-4);
}

.cnt-hero-sub {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.75);
  line-height: var(--lh-relaxed);
  max-width: none;
  margin-bottom: 0;
}

/* ============================================================
   CONTACT OPTIONS — 3-PATH CARDS
   Employer / Applicant / General, each w/ top accent bar
   ============================================================ */

.cnt-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

@media (max-width: 1023px) {
  .cnt-options-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
    width: 100%;
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .cnt-options-grid {
    grid-template-columns: 1fr 1fr;
    max-width: none;
  }
}

.cnt-option-card {
  background-color: var(--color-bg);
  border: var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition-smooth), transform var(--transition-smooth);
}

.cnt-option-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--color-accent-xlight);
}

.cnt-option-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: 0;
}

.cnt-option-card-employer::before {
  background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
}

.cnt-option-card-applicant::before {
  background: linear-gradient(to right, var(--color-accent), var(--color-accent-light));
}

.cnt-option-card-general::before {
  background: linear-gradient(to right, var(--color-neutral), var(--color-neutral-dark));
}

/* Badge */
.cnt-option-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  width: fit-content;
}

.cnt-badge-employer {
  background-color: rgba(13, 59, 92, 0.08);
  color: var(--color-primary);
}

.cnt-badge-applicant {
  background-color: rgba(79, 163, 192, 0.12);
  color: var(--color-accent-dark);
}

.cnt-badge-general {
  background-color: var(--color-neutral-light);
  color: var(--text-secondary);
}

/* Icon */
.cnt-option-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cnt-option-icon svg { width: 24px; height: 24px; }

.cnt-icon-employer  { background-color: rgba(13, 59, 92, 0.08);  color: var(--color-primary); }
.cnt-icon-applicant { background-color: rgba(79, 163, 192, 0.12); color: var(--color-accent); }
.cnt-icon-general   { background-color: var(--color-neutral-light); color: var(--text-secondary); }

/* Card text */
.cnt-option-title {
  font-size: var(--text-xl);
  font-weight: var(--fw-bold);
  color: var(--text-heading);
  line-height: var(--lh-snug);
}

.cnt-option-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  flex: 1;
  max-width: none;
}

.cnt-option-email {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--color-accent-dark);
  text-decoration: none;
  padding-block: var(--space-1);
}

.cnt-option-email:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

.cnt-option-email svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ============================================================
   FORM + INFO — TWO-COLUMN LAYOUT
   Form 3fr left, info panel 2fr right (sticky)
   ============================================================ */

.cnt-form-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--space-12);
  align-items: start;
}

@media (max-width: 1023px) {
  .cnt-form-layout {
    grid-template-columns: 1fr;
  }
}

/* Form card */
.cnt-form-wrap {
  background-color: var(--color-bg);
  border: var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
}

.cnt-form-wrap-title {
  font-size: var(--text-xl);
  font-weight: var(--fw-bold);
  color: var(--text-heading);
  margin-bottom: var(--space-6);
  line-height: var(--lh-snug);
}

/* Form fields grid */
.cnt-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

@media (max-width: 639px) {
  .cnt-form-grid { grid-template-columns: 1fr; }
}

.cnt-form-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

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

.cnt-form-label {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--text-heading);
  line-height: var(--lh-snug);
}

.cnt-form-required {
  color: var(--text-error);
  margin-left: 2px;
}

.cnt-form-input,
.cnt-form-textarea {
  width: 100%;
  height: var(--input-height);
  padding: var(--input-padding-y) var(--input-padding-x);
  background-color: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: var(--input-radius);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-primary);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  -webkit-appearance: none;
  appearance: none;
}

.cnt-form-input::placeholder,
.cnt-form-textarea::placeholder {
  color: var(--input-placeholder);
}

.cnt-form-input:hover,
.cnt-form-textarea:hover {
  border-color: var(--color-neutral-dark);
}

.cnt-form-input:focus,
.cnt-form-textarea:focus {
  outline: none;
  border-color: var(--input-border-focus);
  box-shadow: var(--input-ring);
}

.cnt-form-input[aria-invalid="true"],
.cnt-form-textarea[aria-invalid="true"] {
  border-color: var(--text-error);
}

.cnt-form-input[aria-invalid="true"]:focus,
.cnt-form-textarea[aria-invalid="true"]:focus {
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.15);
}

.cnt-form-textarea {
  height: auto;
  min-height: 136px;
  resize: vertical;
  line-height: var(--lh-relaxed);
}

.cnt-form-helper {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: var(--lh-snug);
}

.cnt-field-error {
  font-size: var(--text-xs);
  color: var(--text-error);
  display: none;
  line-height: var(--lh-snug);
}

.cnt-field-error.is-visible { display: block; }

/* Submit row */
.cnt-form-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-6);
  flex-wrap: wrap;
}

.cnt-form-submit {
  flex-shrink: 0;
}

.cnt-form-privacy {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: var(--lh-relaxed);
  flex: 1;
  min-width: 200px;
  max-width: none;
}

/* Result banners */
.cnt-result-banner {
  display: none;
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  font-size: var(--text-sm);
  line-height: var(--lh-relaxed);
  margin-top: var(--space-5);
  align-items: flex-start;
  gap: var(--space-3);
}

.cnt-result-banner.is-visible { display: flex; }

.cnt-result-banner-success {
  background-color: rgba(30, 126, 90, 0.08);
  border: 1px solid rgba(30, 126, 90, 0.25);
  color: var(--text-success);
}

.cnt-result-banner-error {
  background-color: rgba(192, 57, 43, 0.08);
  border: 1px solid rgba(192, 57, 43, 0.25);
  color: var(--text-error);
}

.cnt-result-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   INFO PANEL — RIGHT COLUMN
   Sticky card with contact details
   ============================================================ */

.cnt-info-panel {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  position: sticky;
  top: calc(72px + var(--space-6));
}

@media (max-width: 1023px) {
  .cnt-info-panel { position: static; }
}

.cnt-info-card {
  background-color: var(--color-bg);
  border: var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.cnt-info-card-header {
  background-color: var(--color-primary);
  padding: var(--space-5) var(--space-6);
}

.cnt-info-card-header-title {
  font-size: var(--text-base);
  font-weight: var(--fw-bold);
  color: var(--text-inverted);
  line-height: var(--lh-snug);
}

.cnt-info-card-body {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.cnt-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.cnt-info-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background-color: rgba(79, 163, 192, 0.10);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cnt-info-icon svg { width: 18px; height: 18px; }

.cnt-info-label {
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  color: var(--text-muted);
  margin-bottom: var(--space-1);
}

.cnt-info-value {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cnt-info-value a,
.cnt-info-value span {
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--text-heading);
  text-decoration: none;
  line-height: var(--lh-snug);
  display: block;
}

.cnt-info-value a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

.cnt-info-divider {
  height: 1px;
  background-color: var(--color-neutral-light);
  margin: 0;
}

/* Response time note */
.cnt-response-note {
  background-color: rgba(79, 163, 192, 0.06);
  border: 1px solid rgba(79, 163, 192, 0.20);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.cnt-response-icon {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.cnt-response-text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  max-width: none;
}

.cnt-response-text strong {
  font-weight: var(--fw-semibold);
  color: var(--text-heading);
}

/* ============================================================
   FINAL CTA BAND
   ============================================================ */

.cnt-cta-band {
  background-color: var(--color-primary);
  position: relative;
  overflow: hidden;
  padding-block: var(--space-20);
  text-align: center;
}

.cnt-cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 25% 50%, rgba(79, 163, 192, 0.13) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 50%, rgba(79, 163, 192, 0.07) 0%, transparent 55%);
  pointer-events: none;
}

.cnt-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 580px;
  margin-inline: auto;
}

.cnt-cta-headline {
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  font-weight: var(--fw-extrabold);
  color: var(--text-inverted);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  margin-bottom: var(--space-4);
}

.cnt-cta-headline em {
  font-style: normal;
  color: var(--color-accent);
}

.cnt-cta-sub {
  font-size: var(--text-md);
  color: rgba(255, 255, 255, 0.72);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-8);
  max-width: none;
}


/* ===== css/faq.css ===== */
/* ============================================================
   AZZUR WORKFORCE SOLUTIONS — FAQ COMPONENT
   Used on Home, Services, Positions pages for SEO/AEO
   ============================================================ */


.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
}

@media (max-width: 1023px) {
  .faq-layout { grid-template-columns: 1fr; gap: var(--space-8); }
}

.faq-group-label {
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: var(--ls-widest);
  color: var(--color-accent);
  margin-bottom: var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.faq-group-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background-color: var(--color-neutral);
}

.faq-list {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}

/* ============================================================
   ACCORDION
   ============================================================ */

.faq-item {
  border-bottom: 1px solid var(--color-neutral-light);
}

.faq-item:first-child {
  border-top: 1px solid var(--color-neutral-light);
}

.faq-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  padding-block: var(--space-5);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  color: var(--text-heading);
  font-family: var(--font-body);
}

.faq-toggle:hover {
  color: var(--color-accent);
}

.faq-toggle-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-accent);
  transition: transform 0.2s ease;
}

.faq-item[data-open="true"] .faq-toggle-icon {
  transform: rotate(180deg);
}

.faq-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease, padding 0.2s ease;
}

.faq-item[data-open="true"] .faq-body {
  max-height: 500px;
}

.faq-answer {
  padding-bottom: var(--space-5);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: none;
  margin: 0;
}

.faq-answer a {
  color: var(--color-accent-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-answer a:hover { color: var(--color-accent); }

/* Single-column variant for services + positions pages */
.faq-single {
  max-width: 820px;
  margin-inline: auto;
}


/* ===== css/conversion.css ===== */
/* ============================================================
   CONVERSION.CSS — request-staff.html / apply.html / healthcare-staffing.html
   ============================================================ */

/* ── Shared conversion page hero ── */
.conv-hero {
  background-color: var(--color-primary);
  padding-block: var(--space-16) var(--space-12);
  text-align: center;
  color: var(--color-bg);
}
.conv-hero-eyebrow {
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: var(--ls-widest);
  color: var(--color-accent-light);
  margin-bottom: var(--space-3);
  text-align: center;
}

/* The global p { max-width: 70ch } rule constrains the eyebrow <p> to ~500px
   and left-aligns it, so text-align:center centers within that left box rather
   than the full container — making it appear left of the heading center axis.
   Override max-width so the eyebrow spans full container width, matching the h1. */
.apply-page .conv-hero-eyebrow,
.request-staff-page .conv-hero-eyebrow {
  max-width: none;
  width: 100%;
}

.conv-hero-title {
  font-size: var(--text-4xl);
  font-weight: var(--fw-extrabold);
  color: var(--color-bg);
  margin-bottom: var(--space-4);
  line-height: var(--lh-tight);
  text-align: center;
}
.conv-hero-sub {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin-inline: auto;
}
.conv-hero-trust {
  display: flex;
  justify-content: center;
  gap: var(--space-6);
  flex-wrap: wrap;
  margin-top: var(--space-6);
}
.conv-hero-trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.75);
}
.conv-hero-trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--color-accent-light);
  flex-shrink: 0;
}

/* ── Form + sidebar layout ── */
.conv-form-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-10);
  align-items: start;
}

/* ── Form card ── */
.conv-form-card {
  background-color: var(--color-bg);
  border: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

/* ── Form card visible heading ── */
.conv-form-card > h2 {
  padding: 32px 32px 0;
  margin: 0 0 4px;
  font-size: var(--text-2xl);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  line-height: var(--lh-tight);
}

/* ── Form section (grouped with numbered header) ── */
.conv-form-section {
  padding: var(--space-8);
  border-bottom: var(--border);
}
.conv-form-section:last-of-type {
  border-bottom: none;
}
.conv-form-section-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}
.conv-form-section-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-bg);
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.conv-form-section-title {
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  color: var(--text-heading);
  margin: 0;
}

/* ── Field grid ── */
.conv-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}

/* ── Individual field ── */
.conv-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.conv-field--span {
  grid-column: 1 / -1;
}
.conv-field label {
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--text-body);
}
.conv-optional {
  font-weight: var(--fw-regular);
  color: var(--text-muted);
  margin-left: var(--space-1);
}

/* ── Inputs ── */
.conv-input,
.conv-select,
.conv-textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--color-neutral);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--color-bg);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  line-height: var(--lh-normal);
}
.conv-input:focus,
.conv-select:focus,
.conv-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(10, 37, 64, 0.08);
}
.conv-input[aria-invalid="true"],
.conv-select[aria-invalid="true"],
.conv-textarea[aria-invalid="true"] {
  border-color: #b91c1c;
}
.conv-textarea {
  resize: vertical;
  min-height: 100px;
}
.conv-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-3) center;
  background-size: 16px;
  padding-right: var(--space-10);
}

/* ── Field error ── */
.conv-field-error {
  font-size: var(--text-xs);
  color: #b91c1c;
  display: none;
}
.conv-field-error.is-visible {
  display: block;
}

/* ── File upload ── */
.conv-file-wrap {
  position: relative;
}
.conv-file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
}
.conv-file-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  border: 1px dashed var(--color-neutral);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}
.conv-file-label:hover {
  border-color: var(--color-primary);
  background-color: rgba(10, 37, 64, 0.03);
  color: var(--color-primary);
}
.conv-file-label svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.conv-file-name {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: var(--space-1);
  text-align: center;
}

/* ── Submit area ── */
.conv-form-submit-area {
  padding: var(--space-8);
  background-color: #f8f9fb;
  border-top: var(--border);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.conv-submit-trust-row {
  display: flex;
  gap: var(--space-5);
  flex-wrap: wrap;
}
.conv-submit-trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--text-muted);
}
.conv-submit-trust-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--color-accent);
}

/* ── SMS Consent + Notice at Collection ── */
.conv-sms-consent {
  padding: var(--space-4) var(--space-8);
  border-top: 1px solid var(--color-border, #e2e8f0);
  background: #f8f9fb;
}
.conv-sms-consent-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  cursor: pointer;
  font-size: var(--text-xs);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
}
.conv-sms-consent-label input[type="checkbox"] {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--color-primary);
  cursor: pointer;
}
.conv-sms-consent-label a {
  color: var(--color-primary);
  text-decoration: underline;
}
.conv-notice-collection {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: var(--lh-relaxed);
  padding: var(--space-4) var(--space-8) var(--space-6);
  background: #f8f9fb;
  border-top: 1px solid var(--color-border, #e2e8f0);
}
.conv-notice-collection a {
  color: var(--color-primary);
  text-decoration: underline;
}

/* ── Result banners ── */
.conv-result-banner {
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  line-height: var(--lh-relaxed);
  display: none;
  margin-bottom: var(--space-5);
}
.conv-result-banner.is-visible {
  display: block;
}
.conv-result-banner-success {
  background-color: rgba(30, 126, 90, 0.08);
  border: 1px solid rgba(30, 126, 90, 0.25);
  color: #15643e;
}
.conv-result-banner-error {
  background-color: rgba(185, 28, 28, 0.06);
  border: 1px solid rgba(185, 28, 28, 0.2);
  color: #b91c1c;
}

/* ── Trust sidebar ── */
.conv-trust-sidebar {
  position: sticky;
  top: calc(72px + var(--space-6));
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.conv-sidebar-card {
  background-color: var(--color-bg);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-xs);
}
.conv-sidebar-card-title {
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: var(--ls-widest);
  color: var(--text-heading);
  margin-bottom: var(--space-4);
}
.conv-stat-row {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  padding-block: var(--space-3);
  border-bottom: 1px solid var(--color-neutral-light);
}
.conv-stat-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.conv-stat-value {
  font-size: var(--text-2xl);
  font-weight: var(--fw-extrabold);
  color: var(--color-primary);
  line-height: 1;
}
.conv-stat-label {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}
.conv-contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.conv-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}
.conv-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background-color: rgba(10, 37, 64, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.conv-contact-icon svg {
  width: 16px;
  height: 16px;
  color: var(--color-primary);
}
.conv-contact-label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  display: block;
  margin-bottom: var(--space-1);
}
.conv-contact-value {
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--text-body);
}
.conv-contact-value a {
  color: var(--color-primary);
  text-decoration: none;
}
.conv-contact-value a:hover {
  text-decoration: underline;
}

/* ============================================================
   LANDING PAGE — .lp-* (healthcare-staffing.html)
   ============================================================ */

/* ── LP hero ── */
.lp-hero {
  display: grid;
  grid-template-columns: 55fr 45fr;
  min-height: 520px;
}
.lp-hero-content {
  background-color: var(--color-primary);
  padding: var(--space-20) var(--space-16);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lp-hero-eyebrow {
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: var(--ls-widest);
  color: var(--color-accent-light);
  margin-bottom: var(--space-4);
}
.lp-hero-title {
  font-size: var(--text-5xl);
  font-weight: var(--fw-extrabold);
  color: var(--color-bg);
  line-height: var(--lh-tight);
  margin-bottom: var(--space-5);
}
.lp-hero-sub {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.8);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-8);
}
.lp-hero-ctas {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.lp-hero-image {
  position: relative;
  overflow: hidden;
}
.lp-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Trust bar ── */
.lp-trust-bar {
  background-color: var(--color-bg);
  border-bottom: var(--border);
  padding-block: var(--space-6);
}
.lp-trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}
.lp-trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.lp-trust-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background-color: rgba(10, 37, 64, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lp-trust-icon svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
}
.lp-trust-text strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--text-heading);
}
.lp-trust-text span {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* ── Roles badge grid ── */
.lp-roles-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-3);
}
.lp-role-badge {
  background-color: var(--color-bg);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-4);
  text-align: center;
  text-decoration: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.lp-role-badge:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.lp-role-badge-abbr {
  font-size: var(--text-xl);
  font-weight: var(--fw-extrabold);
  color: var(--color-primary);
  display: block;
  margin-bottom: var(--space-1);
}
.lp-role-badge-name {
  font-size: var(--text-xs);
  color: var(--text-secondary);
  line-height: var(--lh-snug);
}

/* ── Who we serve ── */
.lp-serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.lp-serve-card {
  background-color: var(--color-bg);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: box-shadow 0.15s ease;
}
.lp-serve-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--color-accent-xlight);
}
.lp-serve-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background-color: rgba(10, 37, 64, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}
.lp-serve-icon svg {
  width: 22px;
  height: 22px;
  color: var(--color-primary);
}
.lp-serve-title {
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  color: var(--text-heading);
  margin-bottom: var(--space-2);
}
.lp-serve-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
}

/* ── How it works ── */
.lp-hiw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  position: relative;
}
.lp-hiw-grid::before {
  content: '';
  position: absolute;
  top: 22px;
  left: calc(16.67% + var(--space-6));
  right: calc(16.67% + var(--space-6));
  height: 1px;
  background: linear-gradient(to right, var(--color-neutral), var(--color-neutral-light));
}
.lp-hiw-step {
  text-align: center;
  position: relative;
}
.lp-hiw-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-bg);
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  position: relative;
  z-index: 1;
}
.lp-hiw-title {
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  color: var(--text-heading);
  margin-bottom: var(--space-2);
}
.lp-hiw-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
}

/* Override step text colors when on the dark section-mid background */
.section-mid .lp-hiw-title {
  color: #ffffff;
}
.section-mid .lp-hiw-desc {
  color: rgba(255, 255, 255, 0.78);
}

/* ── LP CTA band ── */
.lp-cta-band {
  background-color: var(--color-primary);
  padding-block: var(--space-20);
  text-align: center;
}
.lp-cta-band-title {
  font-size: var(--text-4xl);
  font-weight: var(--fw-extrabold);
  color: var(--color-bg);
  margin-bottom: var(--space-4);
}
.lp-cta-band-sub {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-8);
  max-width: 560px;
  margin-inline: auto;
}
.lp-cta-band .btn {
  min-width: 220px;
}

/* ── LP embedded form anchor ── */
.lp-form-anchor {
  background-color: var(--color-bg-subtle, #f8f9fb);
  border-top: var(--border);
  border-bottom: var(--border);
  padding-block: var(--space-16);
}
.lp-form-inner {
  max-width: 780px;
  margin-inline: auto;
}
.lp-form-header {
  text-align: center;
  margin-bottom: var(--space-10);
}
.lp-form-header .section-subtitle {
  text-align: center;
  margin-inline: auto;
}
.lp-form-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-lg);
  font-weight: var(--fw-semibold);
  color: var(--color-accent);
  text-decoration: none;
  margin-top: var(--space-2);
}
.lp-form-phone-link:hover {
  color: var(--color-accent-dark);
  text-decoration: underline;
}
.lp-form-phone-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ============================================================
   POSITIONS PAGE — dual-CTA card restructure
   ============================================================ */
.pos-role-card-actions {
  display: flex;
  gap: var(--space-2);
  margin-top: auto;
  padding-top: var(--space-4);
}
.pos-role-card-actions .btn {
  flex: 1;
  text-align: center;
  font-size: var(--text-xs);
  padding: var(--space-2) var(--space-3);
  justify-content: center;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .conv-form-layout {
    grid-template-columns: 1fr;
  }
  .conv-trust-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .lp-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .lp-hero-content {
    padding: var(--space-14) var(--space-8);
  }
  .lp-hero-image {
    height: 320px;
    order: -1;
  }
  .lp-roles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .lp-serve-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lp-trust-bar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .conv-form-grid {
    grid-template-columns: 1fr;
  }
  .conv-trust-sidebar {
    grid-template-columns: 1fr;
  }
  .conv-form-card > h2 {
    padding: 22px 22px 0;
  }
  .conv-hero-title {
    font-size: var(--text-3xl);
  }
  .lp-hero-title {
    font-size: var(--text-3xl);
  }
  .lp-hero-content {
    padding: 32px 24px 40px;
    box-sizing: border-box;
  }
  .lp-roles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lp-serve-grid {
    grid-template-columns: 1fr;
  }
  .lp-hiw-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  .lp-hiw-grid::before {
    display: none;
  }
  .lp-trust-bar-grid {
    grid-template-columns: 1fr;
  }
  .pos-role-card-actions {
    flex-direction: column;
  }
}
@media (max-width: 640px) {
  .lp-cta-band-title {
    font-size: var(--text-3xl);
  }
}


/* ===== css/responsive.css ===== */
/* ============================================================
   AZZUR WORKFORCE SOLUTIONS — RESPONSIVE OVERRIDES
   Mobile-first breakpoint adjustments
   ============================================================ */


/* ----------------------------------------------------------
   TYPOGRAPHY — TABLET (768px+)
   ---------------------------------------------------------- */

@media (min-width: 768px) {
  h1 { font-size: var(--text-5xl); }
  h2 { font-size: var(--text-4xl); }
  h3 { font-size: var(--text-3xl); }
  h4 { font-size: var(--text-2xl); }

  .section-title    { font-size: var(--text-4xl); }
  .section-subtitle { font-size: var(--text-lg); }
}

/* ----------------------------------------------------------
   TYPOGRAPHY — MOBILE (<768px)
   ---------------------------------------------------------- */

@media (max-width: 767px) {
  h1 { font-size: var(--text-3xl); }
  h2 { font-size: var(--text-2xl); }
  h3 { font-size: var(--text-xl); }
  h4 { font-size: var(--text-lg); }

  .section-title    { font-size: var(--text-2xl); }
  .section-subtitle { font-size: var(--text-base); }
  .stat-number      { font-size: var(--text-3xl); }
}

/* ----------------------------------------------------------
   SECTIONS — MOBILE
   ---------------------------------------------------------- */

@media (max-width: 767px) {
  .section    { padding-block: var(--space-12); }
  .section-lg { padding-block: var(--space-16); }
  .section-sm { padding-block: var(--space-8);  }

  .section-header    { margin-bottom: var(--space-8); }
  .card-audience     { padding: var(--space-8) var(--space-6); }
}

/* ----------------------------------------------------------
   NAVBAR — MOBILE
   ---------------------------------------------------------- */

@media (max-width: 1023px) {
  .navbar { height: 64px; }
  .navbar-logo img { height: 34px; }
}

/* ----------------------------------------------------------
   BUTTONS — MOBILE
   Full-width CTAs in stacked contexts
   ---------------------------------------------------------- */

@media (max-width: 479px) {
  .btn-group {
    flex-direction: column;
    align-items: stretch;
  }

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

/* ----------------------------------------------------------
   CARDS — ENSURE NO OVERFLOW ON MOBILE
   ---------------------------------------------------------- */

@media (max-width: 767px) {
  .card-body   { padding: var(--space-5); }
  .card-footer { padding: var(--space-3) var(--space-5); }

  .card-service { padding: var(--space-6) var(--space-5); }
  .card-job     { padding: var(--space-5); }
  .card-testimonial { padding: var(--space-6) var(--space-5); }
}

/* ----------------------------------------------------------
   FOOTER — MOBILE SINGLE COLUMN
   ---------------------------------------------------------- */

@media (max-width: 639px) {
  .site-footer { padding-block: var(--space-12) var(--space-6); }
}

/* ----------------------------------------------------------
   PREVENT HORIZONTAL SCROLL
   ---------------------------------------------------------- */

html, body {
  overflow-x: hidden;
  width: 100%;
}

/* ----------------------------------------------------------
   TOUCH TARGET SAFETY
   Min 44×44px tap targets on mobile
   ---------------------------------------------------------- */

@media (max-width: 767px) {
  .btn     { min-height: 48px; }
  .btn-sm  { min-height: 44px; }
  a.tag, a.badge { min-height: 36px; }
}

/* ── Honeypot spam protection ── */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  tab-index: -1;
}
