/* JobOffice Kassa — Brand Overrides (client.css)
 * Overrides base theme tokens from main.css with JobOffice branding.
 * Load order: main.css → templates.css → client.css
 *
 * Reference: kassasystem.html clean-page + joboffice.se
 */

/* ─── BRAND TOKENS ─── */
:root {
  /* Colors */
  --navy: #16163f;
  --navy-light: #1e1e52;
  --navy-muted: #2c2c5e;
  --gold: #e8960c;
  --gold-light: #f5b740;
  --gold-hover: #d4850a;
  --off-white: #f5f5fa;
  --gray-50: #fafafc;
  --gray-100: #eeeff5;
  --gray-200: #d8d9e3;
  --gray-400: #8e8ea0;
  --gray-600: #555568;
  --text: #2a2a3a;
  --text-muted: #555568;

  /* Shadows (adjusted for navy hue) */
  --shadow-sm: 0 1px 3px rgba(22,22,63,0.06);
  --shadow-md: 0 4px 20px rgba(22,22,63,0.08);
  --shadow-lg: 0 8px 40px rgba(22,22,63,0.12);
  --shadow-card: 0 2px 12px rgba(22,22,63,0.06), 0 0 0 1px rgba(22,22,63,0.04);

  /* Typography */
  --font-display: 'Montserrat', system-ui, sans-serif;
}

/* Body font override */
body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  color: var(--text);
}

/* Button shadow override (match gold hue) */
.btn-primary {
  box-shadow: 0 2px 8px rgba(232,150,12,0.3);
}
.btn-primary:hover {
  box-shadow: 0 4px 16px rgba(232,150,12,0.4);
}

/* ─── HERO OVERRIDES (match kassasystem.html) ─── */
.hero {
  min-height: 420px;
}
.hero-bg img {
  object-position: center right;
}
.hero-content {
  background: rgba(22,22,63,0.82);
}

/* Hero grid — use container width, card width on hero-content */
.hero-grid {
  width: var(--container);
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}
.hero-content {
  max-width: 680px;
}

/* Navigation background (navy) */
.nav {
  background: var(--navy);
}

/* Footer background (deeper than nav) */
.footer {
  background: var(--navy);
}

/* ═══════════════ TESTIMONIALS COMPONENT ═══════════════ */
/* Single source CSS for reusable testimonials section */

.testimonials { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.testimonials::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(232,150,12,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.testimonials .section-eyebrow { color: var(--gold-light); }
.testimonials .section-eyebrow::before { background: var(--gold-light); }
.testimonials .section-title { color: #fff; }

.testimonial-intro {
  font-size: 1rem; color: rgba(255,255,255,0.6); margin-bottom: 2rem;
  max-width: 540px;
}

.testimonial-scroller {
  display: flex; gap: 1.25rem; overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; padding: 0.5rem 0 1.5rem;
  scrollbar-width: none; position: relative; z-index: 1;
}
.testimonial-scroller::-webkit-scrollbar { display: none; }

.testimonial-card {
  flex: 0 0 320px; scroll-snap-align: start;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md); padding: 1.75rem;
  transition: var(--transition); position: relative;
}
@media (min-width: 768px) { .testimonial-card { flex: 0 0 380px; } }
.testimonial-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.12); }
.testimonial-card::before {
  content: '\201C'; position: absolute; top: 12px; left: 20px;
  font-family: var(--font-display); font-size: 4rem; color: var(--gold);
  opacity: 0.2; line-height: 1;
}

.testimonial-text {
  font-size: 0.9rem; color: rgba(255,255,255,0.8); line-height: 1.65;
  margin-bottom: 1.25rem; font-style: italic; position: relative; z-index: 1;
}

.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-hover));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700; color: var(--navy);
}
.testimonial-name { font-size: 0.85rem; font-weight: 600; color: #fff; }
.testimonial-company { font-size: 0.75rem; color: rgba(255,255,255,0.45); }
.testimonial-branch {
  display: inline-block; font-size: 0.68rem; font-weight: 600;
  color: var(--gold-light); background: rgba(232,150,12,0.1);
  padding: 2px 10px; border-radius: 100px; margin-top: 4px;
  text-transform: uppercase; letter-spacing: 0.04em;
}

.testimonial-cta {
  margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.06);
  position: relative; z-index: 1;
}
.testimonial-cta p {
  font-size: 1.05rem; color: rgba(255,255,255,0.7); margin-bottom: 1rem;
}
.testimonial-cta strong { color: #fff; }


/* ═══════════════ DROPDOWN OVERRIDES ═══════════════ */
/* Lighter navy-based dropdown (override base --dd-bg near-black) */
:root {
  --dd-bg: rgba(22, 22, 63, 0.97);
  --dd-border: rgba(255, 255, 255, 0.12);
  --dd-item-color: rgba(255, 255, 255, 0.72);
  --dd-divider: rgba(255, 255, 255, 0.1);
}

/* Visible hover highlight on dropdown items */
.nav-dd-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Brighter sliding highlight */
.nav-dd-hlight {
  background: rgba(255, 255, 255, 0.08) !important;
}

/* Sub-panel items: brighter hover */
.nav-dd-sub a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

/* Remove gold accent line under hero */
.hero-section::after {
  display: none;
}

/* Auto full-width for content-blocks with only one child */
@media (min-width: 768px) {
  .content-block > :only-child {
    grid-column: 1 / -1;
  }
}

/* ─── ACCENT STRIP CHECKLIST (2-col layout) ─── */
.accent-strip-checklist {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .accent-strip-checklist {
    grid-template-columns: 1fr 1fr;
    gap: 0 3rem;
  }
}
.accent-strip-checklist .check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.accent-strip-checklist .check-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.95rem;
}
.accent-strip-checklist .check-list li:last-child {
  border-bottom: none;
}

/* ─── BIGGER ICON RINGS (50-60% scale up) ─── */
.visual-icon-ring {
  width: clamp(260px, 30vw, 360px);
  height: clamp(260px, 30vw, 360px);
}
.visual-icon-ring svg {
  width: 92%;
  height: 92%;
}

/* ─── BREADCRUMB: Remove duplicate slash separators ─── */
.breadcrumb-list li:not(:last-child)::after,
nav.breadcrumb-nav ol li:not(:last-child)::after {
  content: none;
}

/* ─── NAV + BREADCRUMB: Consistent navy (#16163f) ─── */
nav.breadcrumb,
nav.breadcrumb-nav {
  background: var(--navy-light);
}

/* ═══ PAYMENT CARDS — premium 3-col grid ═══ */
.payment-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .payment-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
.payment-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.payment-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.payment-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.payment-card:hover::before {
  opacity: 1;
}
.payment-card-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--gray-100);
}
.payment-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.payment-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}
.payment-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 1.25rem;
  padding: 0.6rem 1.25rem;
  background: var(--navy);
  color: #fff;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: background 0.2s ease;
}
.payment-card:hover .payment-card-cta {
  background: var(--gold);
}

/* Accent strip content-block needs white text overrides */
.accent-strip .content-block {
  gap: clamp(2rem, 5vw, 4rem);
}

/* ═══ ACCENT STRIP — content-block inside accent strips ═══ */
.accent-strip .content-block h2 {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
}
.accent-strip .content-block p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.65;
}
.accent-strip .content-block .check-list li {
  color: rgba(255,255,255,0.85);
}
.accent-strip .content-block .check-list svg {
  color: var(--gold-light);
}
.accent-strip .btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.accent-strip .btn-primary:hover {
  background: var(--gold-light);
}




/* ═══════════════════════════════════════════════════════════
   HIRO DESIGN LIFT — JobOffice (2026-04-30)
   Appended to client.css. Fixes sparse layouts, adds visual
   density, feature grids, stats strips, section rhythm.
   ═══════════════════════════════════════════════════════════ */


/* ─── STATS STRIP — social proof numbers after hero ─── */
.stats-strip {
  background: var(--navy);
  color: #fff;
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,150,12,0.04) 0%, transparent 40%, rgba(232,150,12,0.02) 100%);
  pointer-events: none;
}
.stats-strip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin-inline: auto;
  padding: 0 clamp(1.25rem, 5vw, 3.75rem);
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .stats-strip-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}
.stat-item {
  text-align: center;
}
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  letter-spacing: 0.02em;
}


/* ─── FEATURE MINI-CARDS — replace sparse checklists ─── */
.feature-grid-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (min-width: 600px) {
  .feature-grid-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1000px) {
  .feature-grid-cards.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-mini-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}
.feature-mini-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.feature-mini-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--gray-200);
}
.feature-mini-card:hover::before {
  transform: scaleX(1);
}
/* On off-white backgrounds */
.section-pad[style*="off-white"] .feature-mini-card,
.off-white-bg .feature-mini-card {
  background: #fff;
}
.feature-mini-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(22,22,63,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-mini-icon svg {
  width: 22px;
  height: 22px;
  color: var(--navy);
  stroke-width: 1.8;
}
.feature-mini-text h4 {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.25rem;
  line-height: 1.3;
}
.feature-mini-text p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}


/* ─── BRANSCH LINK-CARDS — horizontal scroll or grid ─── */
.bransch-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1.25rem;
}
@media (min-width: 768px) {
  .bransch-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1000px) {
  .bransch-cards {
    grid-template-columns: repeat(5, 1fr);
  }
}
.bransch-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 0.75rem;
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  text-align: center;
}
.bransch-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.bransch-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(22,22,63,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bransch-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--navy);
}
.bransch-card span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}


/* ─── INTEGRATION TAGS — better visual weight ─── */
.integration-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}
.integration-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.5rem 1rem;
  background: rgba(22,22,63,0.06);
  border: 1px solid rgba(22,22,63,0.08);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.integration-tag:hover {
  background: rgba(22,22,63,0.1);
  border-color: var(--gold);
}


/* ─── SECTION VISUAL — better SVG diagram sizing ─── */
.section-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}


/* ─── GLOBAL: content-block image improvements ─── */
.content-block .img-fade {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.content-block .img-fade img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.content-block .img-fade:hover img {
  transform: scale(1.03);
}


/* ─── PROCESS STEPS — horizontal numbered steps ─── */
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
  counter-reset: step;
}
@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}
.process-step {
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
  counter-increment: step;
}
.process-step::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
}
.process-step h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.process-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}
/* Connector line between steps on desktop */
@media (min-width: 768px) {
  .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 3.5rem;
    right: -0.75rem;
    width: calc(1.5rem);
    height: 2px;
    background: var(--gray-200);
  }
}


/* ─── GLOBAL: Section spacing tightening ─── */
.content-section.section-pad {
  padding-top: clamp(3rem, 6vw, 4.5rem);
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
}


/* ─── GLOBAL: Wider content-blocks for 2-col text layouts ─── */
@media (min-width: 768px) {
  .content-block {
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
  }
}


/* ─── Certifiering badge component ─── */
.cert-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 1rem 1.25rem;
  background: rgba(22,22,63,0.04);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold);
  margin-top: 1.5rem;
}
.cert-badge svg {
  flex-shrink: 0;
}
.cert-badge-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.cert-badge-text strong {
  color: var(--text);
  display: block;
}


/* ─── HIRO SLIDER — horizontal scroll with snap ─── */
.hiro-slider {
  position: relative;
  overflow: hidden;
  margin-top: 1.5rem;
}
.hiro-slider-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem 0.25rem 1.5rem;
  scrollbar-width: none;
}
.hiro-slider-track::-webkit-scrollbar {
  display: none;
}
.hiro-slider-track > * {
  flex: 0 0 auto;
  scroll-snap-align: start;
}
/* Fade edges — hint that more content is scrollable */
.hiro-slider::before,
.hiro-slider::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2.5rem;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.hiro-slider::before {
  left: 0;
  background: linear-gradient(to right, var(--slider-bg, #fff), transparent);
  opacity: 0;
}
.hiro-slider::after {
  right: 0;
  background: linear-gradient(to left, var(--slider-bg, #fff), transparent);
}
.hiro-slider.scrolled::before { opacity: 1; }
.hiro-slider.scrolled-end::after { opacity: 0; }
/* On off-white sections */
.section-pad[style*="off-white"] .hiro-slider { --slider-bg: var(--off-white); }

/* Card sizing inside slider — bransch only (feature-mini + guide use responsive sizes below) */
.hiro-slider .bransch-card {
  width: 150px;
  min-width: 150px;
}

/* ─── GUIDE CARD — article link card for guide hubs ─── */
.guide-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}
.guide-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--navy));
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.guide-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gray-200);
}
.guide-card:hover::before {
  transform: scaleX(1);
}
.guide-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(22,22,63,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.guide-card-icon svg {
  width: 20px;
  height: 20px;
  color: var(--navy);
  stroke-width: 1.8;
}
.guide-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.35rem;
  line-height: 1.3;
}
.guide-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.guide-card-cta {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 0.75rem;
}

/* ─── SLIDER SCROLL-INDICATOR DOTS ─── */
.hiro-slider-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding-top: 0.25rem;
}
.hiro-slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gray-200);
  transition: background 0.3s ease, transform 0.3s ease;
}
.hiro-slider-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}


/* ─── DARK CARD button fix — white text on dark bg ─── */
.content-card.dark .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.content-card.dark .btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.content-card.dark .btn-outline svg {
  color: inherit;
}

/* ─── SLIDER PARTIAL PEEK — show next card edge on mobile ─── */
.hiro-slider .feature-mini-card {
  width: 65vw;
  min-width: 65vw;
}
@media (min-width: 600px) {
  .hiro-slider .feature-mini-card {
    width: 280px;
    min-width: 280px;
  }
}
.hiro-slider .guide-card {
  width: 70vw;
  min-width: 70vw;
}
@media (min-width: 600px) {
  .hiro-slider .guide-card {
    width: 280px;
    min-width: 280px;
  }
}
@media (min-width: 768px) {
  .hiro-slider .guide-card {
    width: 320px;
    min-width: 320px;
  }
}

/* ─── SLIDER HINT TEXT — centered ─── */
.slider-hint {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

/* ─── SLIDER AUTO-SCROLL pause indicator ─── */
.hiro-slider-track.auto-scrolling {
  scroll-behavior: smooth;
}

/* ─── SPECS-COLUMNS — 2-col specs/tillval layout for product pages ─── */
.specs-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-100);
}
@media (min-width: 600px) {
  .specs-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}
.specs-columns h3 {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.specs-columns .check-list li {
  font-size: 0.88rem;
}

/* ─── PRODUCT-CTA — button group for product sections ─── */
.product-cta {
  margin-top: 1.5rem;
}

/* ─── IMAGE-CTA — button below product image ─── */
.image-cta {
  text-align: center;
}

/* ─── ACCENT-STRIP — full component styling ─── */
.accent-strip {
  background: var(--navy);
  color: #fff;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  position: relative;
  overflow: hidden;
}
.accent-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,150,12,0.06) 0%, transparent 50%, rgba(232,150,12,0.03) 100%);
  pointer-events: none;
}
.accent-strip .container {
  position: relative;
  z-index: 1;
}
.accent-strip .section-eyebrow {
  color: var(--gold);
}
.accent-strip .section-eyebrow::before {
  background: var(--gold);
}
.accent-strip h2,
.accent-strip h3 {
  color: #fff;
}
.accent-strip-checklist {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .accent-strip-checklist {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
.accent-strip .check-list li {
  color: rgba(255,255,255,0.85);
}
.accent-strip .check-list li svg {
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════
   MOBILE NAVIGATION — Visual styling for slide-out panel
   Structural layout is in main.css; this file owns look & feel.
   ═══════════════════════════════════════════════════════════ */

/* Override backdrop — no blur, just a dark overlay */
.aiwp-nav-backdrop {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background: rgba(0,0,0,0.6) !important;
}

@media (max-width: 960px) {

  /* ── Z-index fix: .nav creates stacking context at z-index 110 (main.css).
     nav-links (child) at z-index 9998 is effectively 110 globally.
     Backdrop at 9997 ends up ABOVE the panel → blur covers menu.
     Fix: bump .nav above backdrop on mobile so children win. ── */
  .nav {
    z-index: 10000 !important;
  }

  /* ── Panel ── */
  .nav-links {
    width: 86vw;
    max-width: 380px;
    background: #0d0d2b !important;
    padding: 2rem 1.5rem 2rem;
    gap: 0;
    box-shadow: 4px 0 32px rgba(0,0,0,0.5);
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    isolation: isolate;
  }

  /* ── Force vertical stacking + allow items to grow when dropdown opens ── */
  .nav-links {
    align-items: stretch !important;
  }
  .nav-links > .nav-item {
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    height: auto !important;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links > .nav-item > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.01em;
  }
  .nav-links > .nav-item > a:hover,
  .nav-links > .nav-item > a:focus-visible {
    color: var(--gold-light);
  }
  .nav-links > .nav-item > a .nav-chevron {
    width: 18px;
    height: 18px;
    opacity: 0.4;
    transition: transform 0.3s ease, opacity 0.3s ease;
    flex-shrink: 0;
  }
  .nav-links > .nav-item.mob-open > a .nav-chevron {
    transform: rotate(180deg);
    opacity: 0.8;
  }

  /* ── Level 2 dropdown accordion ── */
  .nav-links .nav-dropdown {
    padding: 0 0 0 0.5rem;
    border-left: 2px solid rgba(232,150,12,0.15);
    margin-left: 0.25rem;
  }
  .nav-links .nav-dd-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 0 11px 8px;
    font-size: 0.93rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    border-radius: 0;
    transition: color 0.2s;
  }
  .nav-links .nav-dd-item:hover,
  .nav-links .nav-dd-item:focus-visible {
    color: var(--gold-light);
  }

  /* ── Level 3 sub-panel accordion ── */
  .nav-dd-sub.nav-dd-sub-mobile {
    border-left: 2px solid rgba(232,150,12,0.1);
    margin-left: 8px;
    padding-left: 12px;
  }
  .nav-dd-sub.nav-dd-sub-mobile a {
    display: block;
    padding: 9px 0;
    font-size: 0.86rem;
    font-weight: 400;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-dd-sub.nav-dd-sub-mobile a:hover,
  .nav-dd-sub.nav-dd-sub-mobile a:focus-visible {
    color: var(--gold-light);
  }

  /* ── Parent chevron (level 2 → 3) ── */
  .nav-dd-parent::after {
    border-top-color: rgba(255,255,255,0.35);
  }
  .nav-dd-parent.mob-open-sub::after {
    border-top-color: var(--gold-light);
  }

  /* ── Divider ── */
  .nav-links .nav-dd-divider {
    border-top: 1px solid rgba(255,255,255,0.06);
    margin: 4px 0 4px 8px;
  }

  /* ── CTA button in mobile nav ── */
  .nav-links ~ .nav-item .nav-cta,
  .nav-links + .nav-item .nav-cta {
    display: none;
  }
  .nav-links .nav-cta,
  .nav-inner > .nav-item:last-of-type .nav-cta {
    display: none;
  }

  /* ── Gold accent line at top of panel ── */
  .nav-links::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-hover) 100%);
    border-radius: 0 0 2px 2px;
  }

  /* ── Subtle glow in corner ── */
  .nav-links::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 200px; height: 200px;
    background: radial-gradient(circle at 0% 100%, rgba(232,150,12,0.06) 0%, transparent 70%);
    pointer-events: none;
  }
}


/* ═══════════════════════════════════════════════════════════
   GUIDE ARTICLE — Layout, TOC sidebar, article typography
   Added: 2026-05-07 by /hiro
   ═══════════════════════════════════════════════════════════ */

/* ─── Two-column layout: article + sidebar ─── */
.guide-layout-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1000px) {
  .guide-layout-inner {
    grid-template-columns: 1fr 260px;
    gap: 3.5rem;
  }
}

/* ─── TOC sidebar — sticky on desktop, hidden on mobile ─── */
.guide-sidebar {
  display: none;
}
@media (min-width: 1000px) {
  .guide-sidebar {
    display: block;
  }
}
.guide-toc {
  position: sticky;
  top: 90px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--gray-100);
}
.guide-toc h3 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin: 0 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold);
}
.guide-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.guide-toc li {
  margin-bottom: 0;
}
.guide-toc a {
  display: block;
  padding: 0.4rem 0 0.4rem 0.75rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
  line-height: 1.4;
}
.guide-toc a:hover,
.guide-toc a.active {
  color: var(--navy);
  border-left-color: var(--gold);
}

/* ─── Article body typography ─── */
.guide-body {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text);
  max-width: 720px;
}
.guide-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--navy);
  margin: 2.5rem 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold);
}
.guide-body h2::after {
  display: none;
}
.guide-body h2:first-child {
  margin-top: 0;
}
.guide-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin: 1.75rem 0 0.5rem;
}
.guide-body p {
  margin-bottom: 1rem;
  line-height: 1.85;
}
.guide-body > ul,
.guide-body > ol {
  margin: 1rem 0 1.5rem;
  padding-left: 0;
  list-style: none;
}
.guide-body > ul li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.5rem;
  line-height: 1.65;
}
.guide-body > ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--gold);
  transform: rotate(45deg);
}
.guide-body a:not(.btn) {
  color: var(--gold-hover);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(232, 150, 12, 0.3);
  transition: text-decoration-color 0.2s ease;
}
.guide-body a:not(.btn):hover {
  text-decoration-color: var(--gold);
}

/* FAQ list inside guide body inherits existing faq styling */
.guide-body .faq-list {
  margin-top: 1.5rem;
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--gray-100);
}


/* ─── HERO OVERLAY — JobOffice brand circles ─── */
.hero::after,
.hero-section::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  height: auto;
  background: url('/wp-content/uploads/2026/05/cirklaroverlay.webp') center / cover no-repeat;
  pointer-events: none;
  z-index: 0;
}
