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

/* ============================================
   Work Mere â€” Landing Page Styles
   ============================================ */

:root {
  --primary-dark: #071B49;
  --hero-bg: #03153D;
  --accent-yellow: #F5B400;
  --button-yellow: #FFBE0B;
  --light-bg: #F5F5F7;
  --card-white: #FFFFFF;
  --text-primary: #111111;
  --text-secondary: #6B7280;
  --light-border: #E5E7EB;
  --tag-bg: #EEF2FF;
  --footer-dark: #02112F;

  --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-circle: 0 10px 30px rgba(0, 0, 0, 0.15);
  --shadow-button: 0 4px 12px rgba(0, 0, 0, 0.1);

  --radius-standard: 12px;
  --radius-large: 18px;
  --radius-button: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-primary);
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-button);
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all 200ms ease;
  box-shadow: var(--shadow-button);
}

.btn-yellow {
  background: var(--button-yellow);
  color: var(--primary-dark);
}
.btn-yellow:hover {
  background: #ffc933;
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--primary-dark);
  color: #fff;
}
.btn-dark:hover {
  background: #0a2466;
  transform: translateY(-1px);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  box-shadow: none;
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary-dark);
  border: 1.5px solid var(--primary-dark);
  box-shadow: none;
  padding: 13px 24px;
  font-size: 14px;
}
.btn-outline-dark:hover {
  background: var(--primary-dark);
  color: #fff;
}
.btn-outline-dark svg {
  transition: transform 200ms ease;
}
.btn-outline-dark:hover svg {
  transform: translateX(3px);
}

.btn-pill {
  border-radius: 999px;
}

.btn-small {
  padding: 10px 20px;
  font-size: 14px;
}

.btn-search {
  height: 52px;
  padding: 0 26px;
  border-radius: 10px;
  font-size: 14px;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--hero-bg);
  height: 80px;
}

.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  max-width: 1200px;
  width: 100%;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.logo {
  color: var(--accent-yellow);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.3px;
  font-variant: small-caps;
  text-transform: lowercase;
  flex-shrink: 0;
}

/* desktop: nav fills the space between logo and actions */
.nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav ul {
  display: flex;
  gap: 36px;
}

.nav a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 0;
  position: relative;
  transition: color 200ms ease;
}

.nav a:hover {
  color: var(--accent-yellow);
}

.nav a.active {
  color: var(--accent-yellow);
}

.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--accent-yellow);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  margin-left: auto;
}

.login-link {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
.login-link:hover {
  color: var(--accent-yellow);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: pointer;
  padding: 10px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 200ms ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Drawer-only chrome (hidden on desktop) */
.nav-header,
.nav-close,
.nav-cta {
  display: none;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 21, 61, 0.55);
  backdrop-filter: blur(4px);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease;
}

.nav-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}

body.nav-open {
  overflow: hidden;
}


/* ============================================
   HERO
   ============================================ */
.hero {
  background: var(--hero-bg);
  color: #fff;
  padding: 50px 0 50px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-search {
  margin-top: 28px;
  position: relative;
  z-index: 3;
  max-width: 560px;
}

.hero-title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.highlight {
  display: inline-block;
  background: var(--accent-yellow);
  color: var(--primary-dark);
  padding: 2px 22px;
  border-radius: 999px;
  font-weight: 700;
}

.hero-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin-bottom: 0;
}

/* HERO RIGHT â€” placeholder column reserving grid space for the slants overlay */
.hero-right {
  position: relative;
  min-height: 432px;
}

/* Full-height slanted images positioned absolutely over the right half of the hero */
.hero-slants {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 46%;
  z-index: 1;
  pointer-events: none;
}

/*
   Each slant is a parallelogram clipped from a rectangle wider than 1/3 of the
   container, then absolutely positioned so consecutive slanted edges align with
   a tiny 2px visible gap. Clip horizontal offset (80px) â‰ˆ slant overlap (78px).
*/
.slant {
  position: absolute;
  top: 0;
  bottom: 0;
  width: calc((100% + 156px) / 3);
  overflow: hidden;
  clip-path: polygon(80px 0, 100% 0, calc(100% - 80px) 100%, 0 100%);
}

/* Glass sheen + inner highlight overlay */
.slant::before,
.slant::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.slant::before {
  background:
    linear-gradient(125deg,
      rgba(255, 255, 255, 0.22) 0%,
      rgba(255, 255, 255, 0.06) 28%,
      rgba(255, 255, 255, 0) 55%,
      rgba(255, 255, 255, 0.04) 78%,
      rgba(255, 255, 255, 0.14) 100%);
  mix-blend-mode: overlay;
}

.slant::after {
  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.10) 0%,
      rgba(255, 255, 255, 0) 35%,
      rgba(3, 21, 61, 0.15) 100%),
    linear-gradient(90deg,
      rgba(255, 255, 255, 0.12) 0%,
      rgba(255, 255, 255, 0) 8%,
      rgba(255, 255, 255, 0) 92%,
      rgba(255, 255, 255, 0.12) 100%);
}

.slant img {
  filter: saturate(1.05) brightness(0.96);
}

.slant-1 { left: 0; }
.slant-2 { left: calc((100% - 78px) / 3); }
.slant-3 { left: calc((100% - 78px) * 2 / 3); }

.slant img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: inset(0 0 100% 0);
  opacity: 0;
  animation: slant-paint-down 1100ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.slant-1 img { animation-delay: 120ms; }

.slant-2 img {
  clip-path: inset(100% 0 0 0);
  animation-name: slant-paint-up;
  animation-delay: 320ms;
}

.slant-3 img { animation-delay: 520ms; }

@keyframes slant-paint-down {
  0% {
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  6% { opacity: 1; }
  100% {
    clip-path: inset(0);
    opacity: 1;
  }
}

@keyframes slant-paint-up {
  0% {
    clip-path: inset(100% 0 0 0);
    opacity: 0;
  }
  6% { opacity: 1; }
  100% {
    clip-path: inset(0);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .slant img {
    animation: none;
    clip-path: inset(0);
    opacity: 1;
  }
}

/* ============================================
   SEARCH SECTION
   ============================================ */
.search-section {
  background: var(--light-bg);
  padding: 40px 0 60px;
}

.section-heading {
  max-width: 640px;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-dark);
  background: rgba(255, 190, 11, 0.18);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -1.2px;
  line-height: 1.15;
  color: var(--primary-dark);
}

.title-accent {
  color: var(--accent-yellow);
  font-style: italic;
  font-weight: 700;
}

.section-sub {
  font-size: 15.5px;
  color: var(--text-secondary);
  margin-top: 14px;
  max-width: 560px;
  line-height: 1.6;
}

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

.search-card {
  background: var(--card-white);
  border-radius: var(--radius-standard);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  padding: 10px;
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 6px;
  align-items: center;
}

.search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-right: 1px solid var(--light-border);
  min-width: 0;
}

.search-card .search-field:nth-last-of-type(1) {
  border-right: none;
}

.field-icon {
  color: var(--text-secondary);
  flex-shrink: 0;
}

.search-field input,
.search-field select {
  border: none;
  outline: none;
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  background: transparent;
  min-width: 0;
}

.search-field input::placeholder {
  color: var(--text-secondary);
}

.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.tag {
  background: var(--tag-bg);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 200ms ease;
}

.tag:hover {
  background: var(--accent-yellow);
  color: var(--primary-dark);
}

/* ============================================
   JOBS SECTION
   ============================================ */
.jobs-section {
  padding: 60px 0 100px;
  background: #fff;
}

.jobs-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 32px;
}

.tab-toggle {
  display: inline-flex;
  background: var(--light-bg);
  padding: 6px;
  border-radius: 999px;
}

.tab {
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 10px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 200ms ease;
}

.tab.active {
  background: var(--primary-dark);
  color: #fff;
}

.job-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Shared card base (job, insight, value, team) */
.job-card,
.insight-card,
.value-card,
.team-card {
  background: #fff;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-standard);
  transition: all 200ms ease;
}

.job-card:hover,
.insight-card:hover,
.value-card:hover,
.team-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
  border-color: transparent;
}

.job-card {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.job-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.company-block {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.company-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.company-meta {
  min-width: 0;
}

.company-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.posted {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 2px;
}

.bookmark-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--light-border);
  background: #fff;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 200ms ease;
}

.bookmark-btn:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--accent-yellow);
}

.job-title {
  font-size: 19px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  margin-top: 2px;
}

.job-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--light-bg);
  color: var(--text-secondary);
}

.chip-yellow {
  background: rgba(255, 190, 11, 0.15);
  color: #8a5a00;
}

.job-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.job-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed var(--light-border);
}

.salary {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
}

.salary span {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
}

.show-more-row {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

/* ============================================
   INSIGHTS SECTION
   ============================================ */
.insights-section {
  padding: 80px 0 100px;
  background: var(--light-bg);
}

.insights-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 48px;
}

.show-all-btn {
  flex-shrink: 0;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.insight-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.insight-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.insight-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.insight-card:hover .insight-thumb img {
  transform: scale(1.04);
}

.insight-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(3, 21, 61, 0.85);
  color: var(--accent-yellow);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.insight-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.insight-meta {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.3px;
}

.insight-title {
  font-size: 19px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--primary-dark);
}

.insight-title a {
  color: inherit;
  transition: color 200ms ease;
}

.insight-title a:hover {
  color: var(--accent-yellow);
}

.insight-excerpt {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================
   COMPANIES SECTION
   ============================================ */
.companies-section {
  padding: 60px 0;
  background: #fff;
  border-top: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
}

.companies-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.companies-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  align-items: center;
}

.company-name-item {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: #B7BBC4;
  cursor: pointer;
  transition: color 200ms ease, transform 200ms ease;
}

.company-name-item:hover {
  color: var(--primary-dark);
  transform: translateY(-2px);
}

/* ============================================
   STATEMENT SECTION (reusable)
   ============================================ */
.statement-section {
  padding: 100px 0;
  background: #fff;
  text-align: center;
}

.statement-section .container {
  max-width: 900px;
}

.statement-section .eyebrow {
  margin-bottom: 24px;
}

.statement-text {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -1.2px;
  color: var(--primary-dark);
}

.statement-accent {
  color: var(--accent-yellow);
  font-style: italic;
}

/* Variants for reuse on other pages */
.statement-section.is-dark {
  background: var(--primary-dark);
}
.statement-section.is-dark .statement-text {
  color: #fff;
}
.statement-section.is-dark .eyebrow {
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent-yellow);
}

.statement-section.is-muted {
  background: var(--light-bg);
}

.statement-section.is-compact {
  padding: 60px 0;
}
.statement-section.is-compact .statement-text {
  font-size: 32px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 60px 0 100px;
}

.cta-card {
  background: var(--primary-dark);
  border-radius: 18px;
  padding: 70px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-image {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-circle);
}

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

.cta-title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.cta-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  margin-bottom: 32px;
  max-width: 480px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  gap: 24px;
}

.cta-link {
  color: var(--accent-yellow);
  font-weight: 600;
  font-size: 14px;
  transition: opacity 200ms ease;
}

.cta-link:hover {
  opacity: 0.8;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--footer-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 18px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  transition: color 200ms ease;
}

.footer-col ul a:hover {
  color: var(--accent-yellow);
}

.footer-desc {
  margin-top: 18px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 280px;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 13px;
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 200ms ease;
}

.social-icons a:hover {
  background: var(--accent-yellow);
}

/* ============================================
   JOBS SEARCH PAGE
   ============================================ */
.page-jobs {
  background: var(--light-bg);
}

.jobs-page-header {
  background: #fff;
  padding: 48px 0 36px;
  border-bottom: 1px solid var(--light-border);
}

.page-crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.page-crumbs a {
  color: var(--primary-dark);
  font-weight: 500;
}
.page-crumbs a:hover {
  color: var(--accent-yellow);
}

.page-title {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--primary-dark);
}

.page-sub {
  color: var(--text-secondary);
  margin-top: 8px;
  font-size: 15px;
}

.jobs-search-bar {
  max-width: none;
  margin-top: 28px;
}

.results-section {
  padding: 48px 0 90px;
}

.results-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}

/* Filters */
.filters {
  background: #fff;
  border-radius: var(--radius-standard);
  border: 1px solid var(--light-border);
  padding: 24px;
  position: sticky;
  top: 100px;
}

.filters-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--light-border);
}

.filters-head h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--primary-dark);
}

.filters-clear {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: color 200ms ease;
}
.filters-clear:hover {
  color: var(--accent-yellow);
}

.filter-group {
  padding: 18px 0;
  border-bottom: 1px solid var(--light-border);
}
.filter-group:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.filter-group h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 12px;
  letter-spacing: 0.2px;
}

.filter-check,
.filter-radio {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: 14px;
  color: var(--text-primary);
  cursor: pointer;
  transition: color 200ms ease;
}

.filter-check em,
.filter-radio em {
  margin-left: auto;
  font-style: normal;
  color: var(--text-secondary);
  font-size: 12px;
}

.filter-check input,
.filter-radio input {
  accent-color: var(--primary-dark);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.filter-check:hover,
.filter-radio:hover {
  color: var(--accent-yellow);
}

.salary-range {
  width: 100%;
  accent-color: var(--primary-dark);
}

.salary-values {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 6px;
}

/* Results main */
.results-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 16px;
  flex-wrap: wrap;
}

.results-meta {
  font-size: 14px;
  color: var(--text-secondary);
}
.results-meta strong {
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 15px;
}

.results-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.filters-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--light-border);
  color: var(--primary-dark);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 10px;
  cursor: pointer;
}

.sort-control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--light-border);
  border-radius: 10px;
  padding: 0 14px;
  height: 40px;
  font-size: 14px;
  color: var(--text-secondary);
}
.sort-control select {
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-dark);
  cursor: pointer;
}

.job-grid-results {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.page-btn {
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  background: #fff;
  border: 1px solid var(--light-border);
  color: var(--primary-dark);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  border-radius: 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 200ms ease;
}

.page-btn:hover {
  border-color: var(--primary-dark);
}

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

.page-ellipsis {
  color: var(--text-secondary);
  padding: 0 6px;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.page-about {
  background: #fff;
}

.about-hero {
  background: var(--hero-bg);
  color: #fff;
  padding: 90px 0 110px;
  position: relative;
  overflow: hidden;
}

.about-hero::before,
.about-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
}
.about-hero::before {
  width: 360px;
  height: 360px;
  background: var(--accent-yellow);
  top: -120px;
  right: -80px;
}
.about-hero::after {
  width: 280px;
  height: 280px;
  background: #4F46E5;
  bottom: -100px;
  left: -60px;
  opacity: 0.25;
}

.about-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
}

.eyebrow-on-dark {
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent-yellow);
}

.about-hero-title {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 22px;
}

.about-hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto;
}

.about-hero-floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.float-portrait {
  position: absolute;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--hero-bg);
  box-shadow: var(--shadow-circle), 0 0 0 5px rgba(255, 255, 255, 0.05);
}

.float-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.float-portrait.f1 { top: 18%; left: 8%; }
.float-portrait.f2 { top: 14%; right: 10%; width: 96px; height: 96px; }
.float-portrait.f3 { bottom: 12%; left: 14%; width: 70px; height: 70px; }

/* About stats */
.about-stats {
  background: #fff;
  padding: 0;
  position: relative;
  z-index: 3;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #fff;
  border-radius: var(--radius-standard);
  border: 1px solid var(--light-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  padding: 32px 16px;
  margin-top: -56px;
}

.about-stat {
  text-align: center;
  padding: 4px 16px;
  border-right: 1px solid var(--light-border);
}
.about-stat:last-child {
  border-right: none;
}

.about-stat-num {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -1.2px;
  color: var(--primary-dark);
  line-height: 1;
}

.about-stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 8px;
}

/* Story */
.story-section {
  padding: 110px 0 90px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.story-image {
  position: relative;
  border-radius: var(--radius-large);
  overflow: hidden;
  aspect-ratio: 5 / 6;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

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

.story-image-badge {
  position: absolute;
  bottom: 22px;
  left: 22px;
  background: #fff;
  border-radius: 14px;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
}
.story-image-badge span {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: 600;
}
.story-image-badge strong {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: -0.5px;
}

.story-text {
  font-size: 15.5px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-top: 18px;
}

.story-content .btn {
  margin-top: 28px;
}

/* Values */
.values-section {
  padding: 90px 0;
  background: var(--light-bg);
}

.center-heading {
  text-align: center;
  margin: 0 auto 56px;
}
.center-heading .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.value-card {
  padding: 28px;
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.value-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Team */
.team-section {
  padding: 100px 0;
  background: #fff;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.team-card {
  text-align: center;
  padding: 28px 20px 26px;
}

.team-avatar {
  width: 110px;
  height: 110px;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--light-bg);
}
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-size: 17px;
  font-weight: 600;
  color: var(--primary-dark);
}

.team-role {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* ============================================
   JOB DETAILS PAGE
   ============================================ */
.page-job-details {
  background: var(--light-bg);
}

.job-header-section {
  background: #fff;
  padding: 36px 0 0;
}

.job-header-card {
  background: #fff;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-standard);
  padding: 28px;
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.job-header-left {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  min-width: 0;
}

.job-header-logo {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 700;
  flex-shrink: 0;
}

.job-header-company {
  font-size: 13.5px;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.job-header-company span {
  color: var(--text-secondary);
}

.job-header-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: -0.6px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.job-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.bookmark-lg {
  width: 48px;
  height: 48px;
}

.job-body-section {
  padding: 48px 0 80px;
}

.job-body-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

/* Main content */
.job-content {
  background: #fff;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-standard);
  padding: 36px 40px;
}

.job-block {
  padding: 26px 0;
  border-bottom: 1px solid var(--light-border);
}
.job-block:first-child {
  padding-top: 4px;
}
.job-block:last-of-type {
  border-bottom: none;
  padding-bottom: 4px;
}

.job-block h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.job-block p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}
.job-block p:last-child {
  margin-bottom: 0;
}

.job-list {
  list-style: none;
  padding: 0;
}

.job-list li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 10px;
}

.job-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 190, 11, 0.2);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23B07900' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}

.perks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 4px;
}

.perk-card {
  background: var(--light-bg);
  border-radius: 14px;
  padding: 18px 18px 16px;
}

.perk-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 12px;
}

.perk-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.perk-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.apply-cta {
  margin-top: 32px;
  padding: 26px 28px;
  background: var(--primary-dark);
  border-radius: var(--radius-standard);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: #fff;
}

.apply-cta h3 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 4px;
}

.apply-cta p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* Sidebar */
.job-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.job-overview,
.job-company-card,
.job-share-card {
  background: #fff;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-standard);
  padding: 24px;
}

.job-overview h3,
.job-share-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: 0.2px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--light-border);
}

.overview-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 13.5px;
}

.overview-label {
  color: var(--text-secondary);
}

.overview-val {
  color: var(--primary-dark);
  font-weight: 500;
}

.overview-val strong {
  font-size: 16px;
  font-weight: 700;
}

.sidebar-apply {
  width: 100%;
  margin-top: 16px;
}

.company-blurb {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 14px 0 14px;
}

.company-website {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
  transition: color 200ms ease;
}
.company-website:hover {
  color: var(--accent-yellow);
}

.share-row {
  display: flex;
  gap: 8px;
}

.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--light-bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 14px;
  transition: all 200ms ease;
}

.share-btn:hover {
  background: var(--primary-dark);
  color: var(--accent-yellow);
}

/* Similar jobs */
.similar-jobs-section {
  background: #fff;
  padding: 80px 0 100px;
  border-top: 1px solid var(--light-border);
}
.similar-jobs-section .section-heading {
  margin-bottom: 36px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
  /* Compact hero on tablet & mobile */
  .hero {
    padding: 40px 0 70px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .hero-title {
    font-size: 36px;
  }
  .hero-sub {
    font-size: 15px;
    margin: 0 auto 28px;
  }
  .hero-right,
  .hero-slants {
    display: none;
  }

  .hero-search {
    margin: 32px auto 0;
    max-width: 560px;
  }
  .search-section {
    padding: 28px 0 60px;
  }

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

  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .insights-grid .insight-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }

  /* About page â€” tablet */
  .about-hero {
    padding: 70px 0 90px;
  }
  .about-hero-title {
    font-size: 44px;
  }
  .float-portrait {
    display: none;
  }
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .about-stat {
    padding: 16px;
    border-bottom: 1px solid var(--light-border);
  }
  .about-stat:nth-child(2) {
    border-right: none;
  }
  .about-stat:nth-child(3),
  .about-stat:nth-child(4) {
    border-bottom: none;
  }
  .story-section {
    padding: 80px 0 60px;
  }
  .story-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .story-image {
    aspect-ratio: 4 / 3;
    max-width: 540px;
  }
  .values-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Job details â€” tablet */
  .job-body-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .job-sidebar {
    position: static;
  }
  .job-header-title {
    font-size: 26px;
  }
  .cta-card {
    grid-template-columns: 1fr;
    padding: 50px;
    text-align: center;
  }
  .cta-image {
    margin: 0 auto;
    width: 240px;
    height: 240px;
  }
  .cta-text {
    margin-left: auto;
    margin-right: auto;
  }
  .cta-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  /* Header mobile: [hamburger] [logo]     [button] */
  .site-header {
    height: 70px;
  }
  .header-inner {
    gap: 12px;
    justify-content: flex-start;
    margin-left: 0;
  }
  .hamburger {
    display: flex;
    flex-shrink: 0;
    /* no order needed — hamburger is first in DOM */
  }
  .logo {
    font-size: 19px;
    position: static;
    transform: none;
    flex-shrink: 0;
    flex: 0 0 auto;
    margin-right: auto; /* pushes header-actions to the right */
  }
  /* nav is position:fixed on mobile — remove it from flex flow */
  .nav {
    flex: none;
    position: fixed;
  }
  .header-actions {
    flex-shrink: 0;
    gap: 10px;
    margin-left: 0;
  }
  .header-actions .login-link {
    display: none;
  }
  .header-actions .btn {
    padding: 10px 18px;
    font-size: 13px;
  }

  /* Nav drawer */
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 82%;
    max-width: 320px;
    background: var(--hero-bg);
    padding: 0;
    border-top: none;
    transform: translateX(-105%);
    transition: transform 280ms ease;
    z-index: 100;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.3);
  }
  .nav.open {
    transform: translateX(0);
  }
  .nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav-close {
    display: block;
    background: rgba(255, 255, 255, 0.06);
    border: none;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
  }
  .nav ul {
    flex-direction: column;
    gap: 4px;
    padding: 20px 16px;
    flex: 1;
  }
  .nav ul li a {
    display: block;
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 15px;
  }
  .nav ul li a:hover {
    background: rgba(255, 255, 255, 0.05);
  }
  .nav ul li a.active {
    background: rgba(245, 180, 0, 0.12);
  }
  .nav ul li a.active::after {
    display: none;
  }
  .nav-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav-cta .login-link {
    display: block;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
  }
  .nav-cta .btn {
    width: 100%;
  }


  /* Hero — mobile */
  .hero {
    padding: 48px 0 64px;
  }
  .hero-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.2px;
    margin-bottom: 16px;
  }
  .highlight {
    padding: 0 14px;
  }
  .hero-sub {
    display: block;
    font-size: 14px;
    max-width: 100%;
    margin: 0 auto 24px;
    text-align: center;
  }
  .hero-search {
    margin: 0 auto;
    max-width: 100%;
  }

  /* Sections */
  .jobs-section {
    padding: 40px 0 60px;
  }
  .section-title,
  .cta-title {
    font-size: 30px;
  }

  /* Search â€” stacked on mobile */
  .search-card {
    grid-template-columns: 1fr;
    padding: 10px;
    gap: 6px;
  }
  .search-field {
    border-right: none;
    border-bottom: 1px solid var(--light-border);
    padding: 14px 14px;
  }
  .search-card .search-field:nth-last-of-type(1) {
    border-bottom: none;
  }
  .btn-search {
    width: 100%;
    height: 52px;
    margin-top: 4px;
  }
  .category-tags {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }
  .tag {
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* Jobs */
  .jobs-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .job-grid {
    grid-template-columns: 1fr;
  }
  .show-more-row {
    margin-top: 32px;
  }
  .show-more-row .btn {
    width: 100%;
  }

  /* Statement section */
  .statement-section {
    padding: 60px 0;
  }
  .statement-text {
    font-size: 26px;
    letter-spacing: -0.6px;
  }
  .statement-section.is-compact .statement-text {
    font-size: 22px;
  }

  /* Companies â€” 3 Ã— 2 on mobile */
  .companies-section {
    padding: 40px 0;
  }
  .companies-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 16px;
  }
  .company-name-item {
    font-size: 18px;
  }

  /* Insights */
  .insights-section {
    padding: 60px 0 70px;
  }
  .insights-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 32px;
  }
  .insights-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .insights-grid .insight-card:nth-child(3) {
    max-width: none;
  }
  .show-all-btn {
    width: 100%;
  }

  /* CTA */
  .cta-card {
    padding: 40px 24px;
  }
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  .cta-buttons .btn {
    width: 100%;
  }

  /* Footer â€” 2x2 on mobile */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }
  .footer-col:first-child {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  /* About page â€” phone */
  .about-hero {
    padding: 50px 0 70px;
  }
  .about-hero-title {
    font-size: 34px;
    letter-spacing: -1.2px;
  }
  .about-hero-sub {
    font-size: 15px;
  }
  .about-stats-grid {
    padding: 20px 8px;
    margin-top: -40px;
  }
  .about-stat-num {
    font-size: 26px;
  }
  .about-stat-label {
    font-size: 12px;
  }
  .story-section,
  .values-section,
  .team-section {
    padding: 60px 0;
  }
  .center-heading {
    margin-bottom: 36px;
  }
  .values-grid,
  .team-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .team-avatar {
    width: 96px;
    height: 96px;
  }

  /* Job details â€” phone */
  .job-header-section {
    padding: 20px 0 0;
  }
  .job-header-card {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 18px;
  }
  .job-header-left {
    gap: 14px;
  }
  .job-header-logo {
    width: 56px;
    height: 56px;
    font-size: 24px;
    border-radius: 12px;
  }
  .job-header-title {
    font-size: 22px;
  }
  .job-header-actions {
    width: 100%;
  }
  .job-header-actions .btn {
    flex: 1;
  }
  .job-body-section {
    padding: 28px 0 60px;
  }
  .job-content {
    padding: 24px 22px;
  }
  .job-block h2 {
    font-size: 18px;
  }
  .perks-grid {
    grid-template-columns: 1fr;
  }
  .apply-cta {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    padding: 22px;
  }
  .apply-cta .btn {
    width: 100%;
  }
  .similar-jobs-section {
    padding: 60px 0 70px;
  }

  /* Jobs page */
  .jobs-page-header {
    padding: 36px 0 28px;
  }
  .page-title {
    font-size: 32px;
  }
  .results-section {
    padding: 28px 0 70px;
  }
  .results-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .filters {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 110;
    background: #fff;
    padding: 24px;
    overflow-y: auto;
    border-radius: 0;
  }
  .filters.open {
    display: block;
  }
  .filters-toggle {
    display: inline-flex;
  }
  .job-grid-results {
    grid-template-columns: 1fr;
  }
}



/* Phase 13 Component Classes */

/* Process steps */
.step-flow { display: flex; flex-direction: column; gap: 0; }
.step-item { display: flex; gap: 20px; padding-bottom: 32px; position: relative; }
.step-item:not(:last-child)::before { content:""; position:absolute; left:18px; top:40px; bottom:0; width:2px; background: repeating-linear-gradient(to bottom, var(--accent-yellow) 0, var(--accent-yellow) 6px, transparent 6px, transparent 12px); }
.step-num { width:38px; height:38px; border-radius:50%; background:rgba(245,180,0,0.15); color:var(--primary-dark); font-weight:700; font-size:15px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.step-body h4 { font-size:16px; font-weight:600; color:var(--primary-dark); margin-bottom:6px; }
.step-body p { font-size:14px; color:var(--text-secondary); line-height:1.65; }

/* Timeline strip */
.timeline-strip { display:flex; align-items:flex-start; gap:0; position:relative; padding:48px 0; overflow-x: auto; }
.timeline-item { flex:1; text-align:center; position:relative; min-width: 100px; }
.timeline-item::before { content:""; position:absolute; top:10px; left:50%; width:100%; height:2px; background:var(--light-border); z-index:0; }
.timeline-item:last-child::before { display:none; }
.timeline-dot { width:22px; height:22px; border-radius:50%; background:var(--accent-yellow); margin:0 auto 12px; position:relative; z-index:1; }
.timeline-year { font-size:13px; font-weight:700; color:var(--primary-dark); }
.timeline-label { font-size:12px; color:var(--text-secondary); margin-top:4px; line-height:1.4; }

/* Callout boxes */
.callout { border-radius:10px; padding:20px 24px; display:flex; gap:14px; align-items:flex-start; }
.callout-yellow { background:rgba(245,180,0,0.08); border-left:4px solid var(--accent-yellow); }
.callout-icon { flex-shrink:0; color:var(--accent-yellow); margin-top:2px; }
.callout p { font-size:14px; color:var(--text-secondary); line-height:1.65; margin:0; }
.callout strong { color:var(--primary-dark); }

/* Pricing grid */
.pricing-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.pricing-card { background:#fff; border-radius:var(--radius-standard); border:2px solid var(--light-border); padding:36px 28px; text-align:center; }
.pricing-card.is-featured { border-color:var(--accent-yellow); position:relative; }
.pricing-tier { font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:1px; color:var(--accent-yellow); margin-bottom:12px; }
.pricing-quota { font-size:40px; font-weight:800; color:var(--primary-dark); line-height:1; }
.pricing-quota-label { font-size:13px; color:var(--text-secondary); margin-top:4px; margin-bottom:20px; }
.pricing-features { list-style:none; text-align:left; display:flex; flex-direction:column; gap:10px; margin-bottom:28px; padding:0; }
.pricing-features li { font-size:14px; color:var(--text-secondary); display:flex; align-items:center; gap:8px; }
.pricing-features li::before { content:"check"; font-family:"Material Symbols Outlined"; font-size:16px; color:var(--accent-yellow); font-weight:700; flex-shrink:0; }

/* Testimonial cards */
.testimonial-card { background:#fff; border-radius:var(--radius-standard); border:1px solid var(--light-border); padding:32px; display:flex; flex-direction:column; gap:20px; transition: box-shadow 200ms ease; }
.testimonial-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.testimonial-quote { font-size:15px; font-style:italic; color:var(--text-secondary); line-height:1.8; flex:1; position:relative; padding-top:32px; }
.testimonial-quote::before { content:"\201C"; font-size:60px; line-height:0; position:absolute; top:24px; left:-4px; color:var(--accent-yellow); opacity:0.5; font-style:normal; font-weight:700; }
.testimonial-author { display:flex; align-items:center; gap:12px; }
.testimonial-avatar { width:40px; height:40px; border-radius:50%; background:var(--primary-dark); color:var(--accent-yellow); display:flex; align-items:center; justify-content:center; font-weight:700; font-size:15px; flex-shrink:0; }
.testimonial-name { font-weight:600; color:var(--primary-dark); font-size:14px; line-height:1.2; }
.testimonial-role { font-size:12px; color:var(--text-secondary); }

/* Help category cards */
.help-card { background:#fff; border:1px solid var(--light-border); border-radius:var(--radius-standard); padding:28px 24px; display:flex; flex-direction:column; gap:12px; text-decoration:none; transition: all 200ms ease; }
.help-card:hover { border-color:var(--accent-yellow); box-shadow:0 4px 20px rgba(0,0,0,0.08); transform:translateY(-2px); }
.help-icon { width:48px; height:48px; border-radius:12px; background:var(--tag-bg); display:flex; align-items:center; justify-content:center; color:var(--primary-dark); }
.help-card-title { font-weight:600; color:var(--primary-dark); font-size:16px; }
.help-card-desc { font-size:14px; color:var(--text-secondary); line-height:1.55; }

/* Guide steps */
.guide-step { display:flex; gap:16px; padding:20px 0; border-bottom:1px solid var(--light-border); }
.guide-step:last-child { border-bottom:none; }
.guide-step-num { width:28px; height:28px; border-radius:50%; background:var(--accent-yellow); color:var(--primary-dark); font-weight:700; font-size:13px; flex-shrink:0; display:flex; align-items:center; justify-content:center; margin-top:2px; }
.guide-step-body h4 { font-size:15px; font-weight:600; color:var(--primary-dark); margin-bottom:6px; }
.guide-step-body p { font-size:14px; color:var(--text-secondary); line-height:1.6; }

/* Status cards */
.status-card { background:#fff; border:1px solid var(--light-border); border-radius:10px; padding:18px 24px; display:flex; align-items:center; justify-content:space-between; }
.status-dot { width:10px; height:10px; border-radius:50%; background:#22c55e; flex-shrink:0; }
.status-label { display:flex; align-items:center; gap:8px; font-size:14px; color:#16a34a; font-weight:500; }
.status-service { font-size:15px; font-weight:500; color:var(--primary-dark); }

/* Legal layout & TOC */
.legal-layout { display:grid; grid-template-columns:220px 1fr; gap:60px; align-items:start; }
.legal-toc { position:sticky; top:100px; }
.legal-toc-title { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:1px; color:var(--text-secondary); margin-bottom:12px; }
.legal-toc a { display:block; font-size:13px; color:var(--text-secondary); padding:7px 0 7px 14px; border-left:2px solid var(--light-border); transition:all 150ms ease; line-height:1.3; text-decoration:none; }
.legal-toc a:hover { color:var(--primary-dark); border-left-color:var(--accent-yellow); }
.prose-legal h2 { border-top:1px solid var(--light-border); padding-top:32px; margin-top:40px; font-size:20px; font-weight:700; color:var(--primary-dark); }
.prose-legal h2:first-of-type { border-top:none; padding-top:0; margin-top:0; }
.prose-legal h3 { font-size:16px; font-weight:600; color:var(--primary-dark); margin-top:24px; margin-bottom:8px; }
.prose-legal p, .prose-legal li { font-size:15px; color:var(--text-secondary); line-height:1.8; }
.prose-legal ul, .prose-legal ol { padding-left:22px; }
.prose-legal ul { list-style:disc; }
.prose-legal ol { list-style:decimal; }
.prose-legal a { color:var(--primary-dark); text-decoration:underline; text-decoration-color:var(--accent-yellow); }
.prose-legal strong { color:var(--primary-dark); }
@media(max-width:968px){ .legal-layout{ grid-template-columns:1fr; } .legal-toc{ display:none; } }

/* About stat hover accent */
.about-stat { transition: border-bottom 150ms ease; border-bottom: 3px solid transparent; }
.about-stat:hover { border-bottom:3px solid var(--accent-yellow); cursor:default; }

/* Statement section variants */
.statement-section.is-compact { padding:40px 0; }
.statement-section.is-muted { background:var(--light-bg); }
.statement-section.is-muted .statement-title { color:var(--primary-dark); }
.statement-section.is-muted .statement-sub { color:var(--text-secondary); }

/* Pricing features checkmark override */
.pricing-features li::before { content:"✓"; font-family:inherit; color:var(--accent-yellow); font-weight:700; flex-shrink:0; }
