/* ============================================================
   DIREKSI THEME — MAIN CSS
   Fonts: Plus Jakarta Sans + DM Serif Display
   Design: Clean Professional, SEO-first, Core Web Vitals optimized
   ============================================================ */

/* ─── CSS Custom Properties ────────────────────────────────── */
:root {
  /* Colors */
  --color-primary:        #1a56db;
  --color-primary-dark:   #1242b4;
  --color-primary-light:  #e8f0fe;
  --color-accent:         #0e9f6e;
  --color-accent-dark:    #057a55;
  --color-warning:        #f59e0b;
  --color-danger:         #ef4444;
  --color-whatsapp:       #25d366;
  --color-whatsapp-dark:  #1da851;

  /* Neutrals */
  --color-text:           #111827;
  --color-text-muted:     #6b7280;
  --color-text-light:     #9ca3af;
  --color-bg:             #f8fafc;
  --color-bg-white:       #ffffff;
  --color-bg-subtle:      #f1f5f9;
  --color-border:         #e5e7eb;
  --color-border-dark:    #d1d5db;

  /* Typography */
  --font-body:            'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-display:         'DM Serif Display', Georgia, serif;

  /* Sizes */
  --text-xs:    0.75rem;
  --text-sm:    0.875rem;
  --text-base:  1rem;
  --text-lg:    1.125rem;
  --text-xl:    1.25rem;
  --text-2xl:   1.5rem;
  --text-3xl:   1.875rem;
  --text-4xl:   2.25rem;
  --text-5xl:   3rem;

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Layout */
  --container-max: 1200px;
  --container-pad: 1.5rem;
  --radius-sm:  0.25rem;
  --radius:     0.5rem;
  --radius-lg:  0.75rem;
  --radius-xl:  1rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 2px rgba(0,0,0,.05);
  --shadow:     0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg:  0 10px 15px rgba(0,0,0,.07), 0 4px 6px rgba(0,0,0,.05);
  --shadow-xl:  0 20px 25px rgba(0,0,0,.07), 0 10px 10px rgba(0,0,0,.04);

  /* Transitions */
  --transition: 200ms ease;
  --transition-slow: 350ms ease;

  /* Z-index */
  --z-header: 100;
  --z-overlay: 200;
  --z-modal: 300;
}

/* ─── Reset & Base ─────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: var(--color-primary-dark);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: var(--text-base);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.25;
  font-weight: 400;
  color: var(--color-text);
}

p {
  line-height: 1.7;
}

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--color-primary);
  color: #fff;
  padding: var(--space-3) var(--space-4);
  z-index: var(--z-modal);
  transition: top var(--transition);
}

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

/* ─── Container ─────────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ─── Section Defaults ──────────────────────────────────────── */
.section {
  padding: var(--space-16) 0;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-10);
  gap: var(--space-4);
}

.section-header--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-label {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.section-title {
  font-size: var(--text-3xl);
  font-family: var(--font-display);
  color: var(--color-text);
  line-height: 1.2;
  margin-bottom: var(--space-3);
}

.section-desc {
  color: var(--color-text-muted);
  font-size: var(--text-lg);
  max-width: 52ch;
}

.section-link {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-primary);
  white-space: nowrap;
  flex-shrink: 0;
}

.section-link:hover {
  text-decoration: underline;
}

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  line-height: 1;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid transparent;
}

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

.btn--primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.btn--primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  color: var(--color-text-muted);
  border-color: var(--color-border-dark);
}

.btn--ghost:hover {
  background: var(--color-bg-subtle);
  color: var(--color-text);
  border-color: var(--color-border-dark);
}

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

.btn--outline:hover {
  background: var(--color-primary);
  color: #fff;
}

.btn--whatsapp {
  background: var(--color-whatsapp);
  color: #fff;
  border-color: var(--color-whatsapp);
}

.btn--whatsapp:hover {
  background: var(--color-whatsapp-dark);
  border-color: var(--color-whatsapp-dark);
  color: #fff;
}

.btn--sm {
  padding: 0.5rem 0.875rem;
  font-size: var(--text-xs);
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: var(--text-base);
}

.btn--full {
  width: 100%;
}

.btn--search {
  padding: 0.875rem 1.75rem;
  font-size: var(--text-base);
}

.btn--load-more {
  min-width: 200px;
}

/* ─── Badges ────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 0.2em 0.6em;
  border-radius: var(--radius-full);
  line-height: 1.5;
}

.badge--verified {
  background: #d1fae5;
  color: #065f46;
}

.badge--featured {
  background: #fef3c7;
  color: #92400e;
}

.badge--sponsored {
  background: #ede9fe;
  color: #5b21b6;
}

.badge--category {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.badge--premium {
  background: #fef3c7;
  color: #92400e;
}

.badge--enterprise {
  background: #f3e8ff;
  color: #6b21a8;
}

.badge--basic {
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
}

/* ─── Stars ─────────────────────────────────────────────────── */
.stars {
  display: inline-flex;
  gap: 1px;
  color: var(--color-warning);
  font-size: 1em;
  line-height: 1;
}

.star--empty {
  color: var(--color-border-dark);
}

/* ─── Count Badge ───────────────────────────────────────────── */
.count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.5em;
  height: 1.5em;
  padding: 0 0.4em;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  font-family: var(--font-body);
  margin-left: var(--space-2);
  vertical-align: middle;
}

/* ─── Header ────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  height: 64px;
}

.site-header__logo {
  flex-shrink: 0;
}

.site-header__logo a,
.site-header__logo img {
  display: block;
  max-height: 40px;
  width: auto;
}

.site-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-text);
  font-weight: 400;
}

/* Primary Nav */
.site-nav {
  flex: 1;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.nav-menu li a {
  display: block;
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item > a {
  color: var(--color-primary);
  background: var(--color-primary-light);
}

/* Header Actions */
.site-header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

/* Mobile Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── Hero ──────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  padding: var(--space-20) 0 var(--space-16);
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #1a56db 100%);
  overflow: hidden;
}

.hero-section__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(59,130,246,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(14,165,105,0.2) 0%, transparent 50%);
  pointer-events: none;
}

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

.hero-section__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--space-6);
  backdrop-filter: blur(4px);
}

.hero-section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: var(--space-5);
  letter-spacing: -0.02em;
}

.text-gradient {
  background: linear-gradient(135deg, #7dd3fc, #a5f3fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-section__subtitle {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.8);
  max-width: 56ch;
  margin: 0 auto var(--space-10);
  line-height: 1.6;
}

/* Search Form */
.hero-search-form {
  margin-bottom: var(--space-5);
}

.hero-search-form__inner {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}

.hero-search-form__field {
  display: flex;
  align-items: center;
  position: relative;
  flex: 1;
  border-right: 1px solid var(--color-border);
}

.hero-search-form__field:last-of-type {
  border-right: none;
}

.search-icon {
  position: absolute;
  left: var(--space-4);
  font-size: 1rem;
  pointer-events: none;
  z-index: 1;
}

.hero-search-form__field input,
.hero-search-form__field select {
  width: 100%;
  padding: 1rem 1rem 1rem 2.75rem;
  border: none;
  outline: none;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
}

.hero-search-form__field select {
  cursor: pointer;
}

.hero-search-form__inner .btn--search {
  margin: var(--space-2);
  flex-shrink: 0;
  border-radius: var(--radius);
}

/* Quick Tags */
.hero-quick-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  flex-wrap: wrap;
  color: rgba(255,255,255,0.7);
  font-size: var(--text-sm);
}

.quick-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  color: rgba(255,255,255,0.9);
  font-size: var(--text-sm);
  font-weight: 500;
  transition: all var(--transition);
}

.quick-tag:hover {
  background: rgba(255,255,255,0.22);
  color: #fff;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-12);
  margin-top: var(--space-12);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255,255,255,0.15);
}

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

.hero-stat strong {
  display: block;
  font-size: var(--text-3xl);
  font-family: var(--font-display);
  color: #fff;
  line-height: 1;
  margin-bottom: var(--space-1);
}

.hero-stat span {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

/* ─── Popular Categories ─────────────────────────────────────── */
.popular-categories {
  background: var(--color-bg-white);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: var(--space-4);
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-6) var(--space-4);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  cursor: pointer;
  color: var(--color-text);
}

.category-card:hover {
  background: var(--color-primary-light);
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--color-primary);
}

.category-card__icon {
  font-size: 2rem;
  margin-bottom: var(--space-3);
  line-height: 1;
}

.category-card__name {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  margin-bottom: var(--space-1);
  color: inherit;
  line-height: 1.3;
}

.category-card__count {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.category-card:hover .category-card__count {
  color: var(--color-primary);
}

.categories-footer {
  text-align: center;
  margin-top: var(--space-10);
}

/* ─── Companies Grid ─────────────────────────────────────────── */
.companies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-6);
}

.companies-grid--featured {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

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

/* ─── Load More ─────────────────────────────────────────────── */
.load-more-wrap {
  text-align: center;
  margin-top: var(--space-10);
}

/* ─── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: #111827;
  color: rgba(255,255,255,0.75);
  padding: var(--space-16) 0 0;
  margin-top: var(--space-20);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-10);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col--brand .custom-logo-link img,
.footer-col--brand img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
  max-height: 36px;
  margin-bottom: var(--space-4);
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: #fff;
  display: block;
  margin-bottom: var(--space-4);
}

.footer-tagline {
  font-size: var(--text-sm);
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-3);
}

.footer-desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-5);
}

.footer-nav li {
  margin-bottom: var(--space-3);
}

.footer-nav a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: #fff;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-6) 0;
  gap: var(--space-4);
}

.copyright {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.4);
}

.copyright a {
  color: rgba(255,255,255,0.6);
}

.footer-legal {
  display: flex;
  gap: var(--space-5);
}

.footer-legal a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}

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

/* ─── No Results ─────────────────────────────────────────────── */
.no-results-found {
  grid-column: 1 / -1;
  text-align: center;
  padding: var(--space-20) 0;
}

.no-results-icon {
  font-size: 3rem;
  margin-bottom: var(--space-4);
}

.no-results-found h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-3);
}

.no-results-found p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

/* ─── 404 Page ──────────────────────────────────────────────── */
.page-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-20) 0;
}

.page-404__inner {
  text-align: center;
  max-width: 480px;
}

.page-404__code {
  font-size: 8rem;
  font-family: var(--font-display);
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-4);
  opacity: 0.15;
}

.page-404__title {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
}

.page-404__desc {
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
}

.page-404__actions {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Testimonials ──────────────────────────────────────────── */
.testimonials-section {
  background: var(--color-bg-subtle);
}

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

.testimonial-card {
  background: var(--color-bg-white);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.testimonial-card__stars {
  margin-bottom: var(--space-4);
}

.testimonial-card__text {
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: var(--space-6);
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-card__avatar img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.avatar-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-lg);
  flex-shrink: 0;
}

.testimonial-card__info strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  font-family: var(--font-body);
}

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

/* ─── CTA Register ──────────────────────────────────────────── */
.cta-register {
  background: linear-gradient(135deg, #1e3a8a, #1a56db);
  padding: var(--space-20) 0;
}

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

.cta-register__title {
  font-size: var(--text-4xl);
  color: #fff;
  margin-bottom: var(--space-4);
}

.cta-register__desc {
  color: rgba(255,255,255,0.8);
  font-size: var(--text-lg);
  margin-bottom: var(--space-6);
}

.cta-benefits {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.cta-benefits li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: rgba(255,255,255,0.85);
  font-size: var(--text-base);
}

.cta-benefits li span {
  width: 20px;
  height: 20px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
}

.cta-register__actions {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.cta-visual-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-12) var(--space-10);
  text-align: center;
  backdrop-filter: blur(4px);
  min-width: 180px;
}

.cta-visual-badge {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 900;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-5);
}

.cta-visual-icon {
  font-size: 3rem;
  margin-bottom: var(--space-4);
}

.cta-visual-text {
  color: rgba(255,255,255,0.85);
  font-size: var(--text-sm);
  font-weight: 600;
}

/* ─── Featured Companies section bg ─────────────────────────── */
.featured-companies {
  background: var(--color-bg-subtle);
}

/* ─── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb {
  padding: var(--space-3) 0;
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-1);
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.breadcrumb__link {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.breadcrumb__link:hover {
  color: var(--color-primary);
}

.breadcrumb__current {
  font-size: var(--text-sm);
  color: var(--color-text);
  font-weight: 500;
}

.breadcrumb__sep {
  color: var(--color-text-light);
  font-size: var(--text-sm);
}
