/* =====================================================================
   HOSN · Solutions Page
   Strict alignment to the HOSN site design system (style.css + css/*.css)
   - Gold #f3ce34 primary accent · #0a0a0a / #151515 / #202020 / #262626 panels
   - Outfit (display + body), Inter (badge + small button labels)
   - Pill buttons (.btn-primary gold / .btn-outline ghost / .btn-dark)
   - Cards: gold-border or thin-grey cards with gold-fill hover swap
   ===================================================================== */

/* ----------- Brand variables (mirror site tokens) ----------- */
:root {
  --gold:        #f3ce34;
  --gold-2:      #f4d03f;
  --gold-3:      #e8c547;
  --cream:       #ffefad;
  --dark:        #151515;
  --bg:          #0d0d0d;
  --panel:       #202020;
  --panel-2:     #262626;
  --panel-3:     #1a1a1a;
  --text:        #ffffff;
  --text-soft:   #f5f5f5;
  --text-mute:   rgba(255, 255, 255, 0.7);
  --text-dim:    rgba(255, 255, 255, 0.6);
  --border:      rgba(255, 255, 255, 0.1);
  --border-gold: rgba(243, 206, 52, 0.3);
  --gold-soft:   rgba(243, 206, 52, 0.1);
  --grad-gold:   linear-gradient(180deg, #F4D03F 0%, #E8C547 100%);
  --section-bg:
    radial-gradient(circle at 10% 20%, rgba(243,206,52,0.1) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(243,206,52,0.05) 0%, transparent 40%),
    var(--bg);
  --ease-soft:   cubic-bezier(0.22, 1, 0.36, 1);
  --ease-snap:   cubic-bezier(0.16, 1, 0.3, 1);
  --maxw:        1280px;
  --maxw-wide:   1920px;
}

/* ----------- Reset (matches site) ----------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; background: var(--bg); }
body.sol-body {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  font-weight: 300;
  /* Continuous ambient gradient — fixed so it never breaks at section seams */
  background:
    radial-gradient(circle at 12% 8%, rgba(243,206,52,0.10) 0%, transparent 38%),
    radial-gradient(circle at 88% 22%, rgba(243,206,52,0.06) 0%, transparent 38%),
    radial-gradient(circle at 8% 48%, rgba(243,206,52,0.08) 0%, transparent 38%),
    radial-gradient(circle at 92% 65%, rgba(243,206,52,0.07) 0%, transparent 38%),
    radial-gradient(circle at 18% 88%, rgba(243,206,52,0.06) 0%, transparent 38%),
    var(--bg);
  background-attachment: fixed;
}

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; cursor: pointer; }
button { cursor: pointer; font-family: 'Outfit', sans-serif; border: none; outline: none; }
ul { list-style: none; }

/* ----------- A11y ----------- */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--panel); color: var(--text);
  padding: 10px 16px; border-radius: 8px; z-index: 9999;
}
.skip-link:focus { left: 16px; top: 16px; outline: 2px solid var(--gold); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 6px;
}

::selection { background: rgba(243,206,52,0.3); color: var(--text); }

/* =====================================================================
   NAV (matches site nav exactly)
 * ===================================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  max-width: var(--maxw-wide);
  margin: 0 auto;
  transition: background .35s var(--ease-soft), border-color .35s var(--ease-soft);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10, 10, 10, 0.78);
  border-bottom-color: rgba(255,255,255,0.06);
}

.nav-logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 48px;
  align-items: center;
  background: rgba(97, 97, 97, 0.15);
  padding: 12px 40px;
  border-radius: 25px;
}
.nav-links ul {
  display: flex; gap: 48px; align-items: center;
  list-style: none; margin: 0; padding: 0;
}
.nav-links ul li a {
  font-size: 14px; font-weight: 300; color: #fff;
  transition: color .3s;
}
.nav-links ul li.current-menu-item a,
.nav-links ul li a:hover { color: var(--gold); }
.nav-links ul li.current-menu-item a { font-weight: 500; }

.nav-btns { display: flex; gap: 12px; align-items: center; }
.btn-login {
  border: 1px solid #fff;
  border-radius: 25px;
  padding: 10px 28px;
  font-size: 14px; font-weight: 500;
  background: none; color: #fff;
  transition: all .3s;
  display: inline-flex; align-items: center;
}
.btn-login:hover { background: #fff; color: var(--dark); }

.btn-started {
  background: var(--gold);
  border-radius: 25px;
  padding: 10px 28px;
  font-size: 14px; font-weight: 500;
  color: var(--dark); border: none;
  transition: transform .3s;
  display: inline-flex; align-items: center;
}
.btn-started:hover { transform: scale(1.05); }

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none; border: none; cursor: pointer;
  padding: 10px; z-index: 1001;
}
.hamburger { display: flex; flex-direction: column; gap: 5px; }
.hamburger span {
  width: 25px; height: 3px; background: #fff;
  transition: all .3s; border-radius: 2px;
}
.mobile-menu-toggle[aria-expanded="true"] .hamburger span:nth-child(1) { transform: rotate(45deg) translate(8px,8px); }
.mobile-menu-toggle[aria-expanded="true"] .hamburger span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle[aria-expanded="true"] .hamburger span:nth-child(3) { transform: rotate(-45deg) translate(7px,-7px); }

@media (max-width: 1024px) {
  .nav { padding: 16px 24px; }
  .mobile-menu-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--panel-3);
    flex-direction: column;
    padding: 20px;
    border-top: 1px solid #333;
    z-index: 1000;
    border-radius: 0;
    gap: 0;
  }
  .nav-links.active { display: flex; }
  .nav-links ul {
    flex-direction: column;
    gap: 0; width: 100%;
  }
  .nav-links ul li { width: 100%; border-bottom: 1px solid #333; }
  .nav-links ul li:last-child { border-bottom: 0; }
  .nav-links ul li a { display: block; padding: 14px 0; }
  .nav-btns .btn-login { display: none; }
}

/* =====================================================================
   DECORATIVE 3D POLYHEDRON IMAGES — exact mirror of css/ai-automation.css
   .top-left-image holds Group-35763 (left)
   .top-right-ai-image holds Group-35764 (right)
 * ===================================================================== */
.top-left-image {
  position: absolute;
  left: 0;
  top: 30%;
  z-index: 1;
  pointer-events: none;
  animation: orbDrift 14s ease-in-out infinite;
}
.top-right-ai-image {
  position: absolute;
  right: 5%;
  top: 40%;
  left: unset;
  z-index: 1;
  pointer-events: none;
  animation: orbDrift 16s ease-in-out infinite -3s;
}
.top-left-image img,
.top-right-ai-image img {
  display: block;
  height: auto;
  max-width: 100%;
}

@keyframes orbDrift {
  0%,100% { transform: translateY(0) rotate(0); }
  50%     { transform: translateY(-12px) rotate(1.5deg); }
}

@media (max-width: 1200px) {
  .top-left-image img,
  .top-right-ai-image img { max-width: 220px; }
}
@media (max-width: 1024px) {
  .top-left-image,
  .top-right-ai-image { opacity: 0.55; }
  .top-left-image img,
  .top-right-ai-image img { max-width: 170px; }
}
@media (max-width: 640px) {
  .top-left-image,
  .top-right-ai-image { display: none; }
}

/* Sections host absolute decorations but stay transparent so the body's
   continuous ambient gradient flows through with no visible seam. */
.hero, .why-hosn, .deliver-section, .outcomes-section,
.industries-section, .stay-section {
  position: relative;
  overflow: hidden;
  background: transparent;
}
.cta-section { position: relative; overflow: hidden; }

/* =====================================================================
   GLOBAL TYPE / BUTTONS / BADGES (mirror site tokens)
 * ===================================================================== */
.section-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 6px 20px;
  font-size: 12px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  margin-bottom: 24px;
  letter-spacing: 1px;
  color: #fff;
}

/* Section title — exact match to seo.css .section-header h2 */
.section-title {
  font-size: 48px;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 16px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.section-title .gold { color: var(--gold); font-weight: 600; }

/* Section subtitle — exact match to seo.css .section-header p */
.section-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  margin-bottom: 60px;
  font-weight: 400;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.section-head {
  text-align: center;
  margin: 0 auto 64px;
  max-width: 900px;
  position: relative;
  z-index: 3;
}

/* Hero badge (gold pill, matches seo.css) */
.hero-badge {
  border: 1px solid var(--gold);
  border-radius: 25px;
  display: inline-block;
  padding: 8px 24px;
  margin-bottom: 32px;
  background: rgba(243, 206, 52, 0.06);
}
.hero-badge span {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.18em;
  font-family: 'Arimo', 'Inter', sans-serif;
  font-weight: 500;
}

/* Buttons — match graphic-design page (.gd-btn-outline / .gd-btn-primary) */
.btn-primary {
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 25px;
  padding: 16px 40px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform .3s, box-shadow .3s;
  font-family: 'Inter', sans-serif;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(243,206,52,0.45);
}
.btn-primary .material-symbols-outlined { font-size: 18px; }

.btn-outline {
  background: transparent;
  border: 0.5px solid #6d6d6d;
  border-radius: 25px;
  padding: 16px 40px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  display: inline-flex; align-items: center; gap: 10px;
  transition: border-color .3s, background .3s, transform .3s;
  font-family: 'Inter', sans-serif;
}
.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(243,206,52,0.05);
  transform: translateY(-2px);
  color: var(--gold);
}
.btn-outline .material-symbols-outlined { font-size: 18px; color: var(--gold); }

/* btn-dark / btn-outline-chat — exact match to seo.css / ui-ux CTA buttons */
.btn-dark {
  background: var(--dark);
  color: #fff;
  border-radius: 999px;
  padding: 16px 36px;
  font-size: 15px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  transition: transform .3s, box-shadow .3s;
  border: 1px solid var(--dark);
  white-space: nowrap;
}
.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(0,0,0,0.5);
}
.btn-dark .material-symbols-outlined { font-size: 18px; }

.btn-outline-chat {
  background: rgba(21, 21, 21, 0.08);
  border: 1px solid rgba(21, 21, 21, 0.2);
  color: var(--dark);
  border-radius: 999px;
  padding: 16px 36px;
  font-size: 15px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  transition: background .3s, transform .3s, border-color .3s;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  white-space: nowrap;
}
.btn-outline-chat:hover {
  background: rgba(21, 21, 21, 0.18);
  border-color: rgba(21, 21, 21, 0.45);
  transform: translateY(-2px);
}
.btn-outline-chat .material-symbols-outlined { font-size: 18px; }

/* Legacy alias — keep btn-cta-outline working but match the new chat button */
.btn-cta-outline {
  background: rgba(21, 21, 21, 0.08);
  border: 1px solid rgba(21, 21, 21, 0.2);
  color: var(--dark);
  border-radius: 999px;
  padding: 16px 36px;
  font-size: 15px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  transition: background .3s, transform .3s, border-color .3s;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  white-space: nowrap;
}
.btn-cta-outline:hover {
  background: rgba(21, 21, 21, 0.18);
  border-color: rgba(21, 21, 21, 0.45);
  transform: translateY(-2px);
}

/* =====================================================================
   REVEAL animations (driven by JS)
 * ===================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  filter: blur(8px);
  transition:
    opacity 900ms var(--ease-soft),
    transform 1100ms var(--ease-snap),
    filter 900ms var(--ease-soft);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: transform, opacity, filter;
}
[data-reveal].is-in {
  opacity: 1;
  transform: translate3d(0,0,0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; filter: none; }
}

/* =====================================================================
   HERO  (mirrors site hero pattern)
 * ===================================================================== */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 100px 100px 80px;
  overflow: hidden;
  max-width: var(--maxw-wide);
  margin: 0 auto;
}

/* Hero dots removed — ambient body gradient + decorative orbs handle accents now */
.hero-dot1, .hero-dot2, .hero-dot3 { display: none; }

@keyframes dotPulse {
  0%,100% { transform: scale(1); opacity: 0.55; }
  50%     { transform: scale(1.4); opacity: 0.9; }
}

.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  flex: 1;
}
.hero-left {
  flex: 1;
  max-width: 700px;
  z-index: 2;
  margin-top: 50px;
}

/* Hero h1 — exact match to seo.css .hero h1 */
.hero-left h1 {
  font-size: 80px;
  line-height: 1.1;
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  color: #fff;
}
.hero-left h1 .gold { color: var(--gold); font-weight: 600; }

/* Hero description — exact match to seo.css .hero-desc */
.hero-desc {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  max-width: 560px;
}
.hero-desc strong { color: var(--gold); font-weight: 600; }

.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Hero perks — clean 3-column stat blocks (number above, label below) */
.hero-perks {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: start;
  column-gap: 48px;
  row-gap: 20px;
  padding-top: 36px;
  margin-top: 12px;
  border-top: 1px solid var(--border);
  max-width: 600px;
}
.hero-perks li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  position: relative;
  padding-left: 14px;
}
.hero-perks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(243, 206, 52, 0.16);
}
.hero-perks li span {
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  letter-spacing: -0.01em;
}
.hero-perks li i {
  font-style: normal;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

/* Hero right — dashboard mockup */
.hero-right {
  flex: 1;
  max-width: 600px;
  position: relative;
  z-index: 2;
}
.hero-rocket-glow {
  position: absolute;
  inset: -60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243,206,52,0.25) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

/* Dashboard frame (gold-bordered, on-brand) */
.dashboard {
  position: relative;
  border-radius: 20px;
  background: linear-gradient(180deg, #1a1a1a 0%, #131313 100%);
  border: 1px solid var(--border-gold);
  box-shadow:
    0 20px 60px -20px rgba(0,0,0,0.7),
    0 0 0 1px rgba(243,206,52,0.08),
    inset 0 1px 0 rgba(255,255,255,0.04);
  overflow: hidden;
  isolation: isolate;
  animation: dashFloat 8s ease-in-out infinite;
}
@keyframes dashFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}

.dashboard-chrome {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.4);
}
.d-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.18);
}
.d-dot:nth-child(1) { background: #ff5f57; }
.d-dot:nth-child(2) { background: var(--gold); }
.d-dot:nth-child(3) { background: #28c940; }
.dashboard-url {
  margin: 0 auto;
  display: inline-flex; align-items: center; gap: 6px;
  font: 500 12px/1 'Inter', sans-serif;
  color: var(--text-mute);
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}
.dashboard-url .material-symbols-outlined { font-size: 12px; color: var(--gold); }
.dashboard-live {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; color: #28c940;
  padding: 4px 10px;
  border: 1px solid rgba(40,201,64,0.3);
  background: rgba(40,201,64,0.08);
  border-radius: 999px;
}
.dashboard-live i {
  width: 6px; height: 6px;
  background: #28c940;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(40,201,64,0.18);
  animation: dotPulse 1.6s infinite;
}

.dashboard-body {
  display: grid;
  grid-template-columns: 150px 1fr;
  min-height: 380px;
}
.dashboard-side {
  border-right: 1px solid rgba(255,255,255,0.06);
  padding: 16px 12px;
  font-size: 12px;
  background: rgba(255,255,255,0.015);
}
.dashboard-side-head {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.4);
  margin: 4px 6px 12px;
  font-family: 'Inter', sans-serif;
}
.dashboard-side ul { display: flex; flex-direction: column; gap: 2px; }
.dashboard-side li {
  padding: 9px 10px;
  border-radius: 8px;
  color: var(--text-dim);
  font-size: 12.5px;
}
.dashboard-side li.is-active {
  background: rgba(243,206,52,0.08);
  color: #fff;
  box-shadow: inset 2px 0 0 var(--gold);
}

.dashboard-main { padding: 18px; display: flex; flex-direction: column; gap: 16px; }
.dashboard-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.kpi {
  padding: 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "label delta"
    "value value";
  align-items: center;
  gap: 6px 8px;
  position: relative;
  min-width: 0;
}
.kpi-label {
  grid-area: label;
  font-size: 10px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.kpi-value {
  grid-area: value;
  font: 600 22px/1 'Outfit', sans-serif;
  font-variant-numeric: tabular-nums;
  color: var(--gold);
}
.kpi-delta {
  grid-area: delta;
  justify-self: end;
  font-size: 10px;
  font-weight: 500;
  padding: 2px 7px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}
.kpi-delta.up   { color: #28c940; background: rgba(40,201,64,0.1); border: 1px solid rgba(40,201,64,0.25); }
.kpi-delta.down { color: var(--gold); background: rgba(243,206,52,0.1); border: 1px solid var(--border-gold); }

.dashboard-chart {
  padding: 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
}
.dashboard-chart-head {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11.5px; color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}
.legend { display: inline-flex; gap: 12px; align-items: center; }
.lg-gold, .lg-cream { width: 8px; height: 8px; border-radius: 2px; display: inline-block; margin-right: 4px; vertical-align: middle; }
.lg-gold  { background: var(--gold); }
.lg-cream { background: var(--cream); }

.dashboard-svg { width: 100%; height: 110px; display: block; }
.d-line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}
.is-in-view .d-line { animation: drawChart 2.4s var(--ease-soft) 0.3s forwards; }
.d-area { opacity: 0; }
.is-in-view .d-area { animation: fadeIn 1.2s ease 1.4s forwards; }
@keyframes drawChart { to { stroke-dashoffset: 0; } }
@keyframes fadeIn { to { opacity: 1; } }

.dashboard-pipeline { display: flex; flex-wrap: wrap; gap: 6px; }
.pipe {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.025);
  color: var(--text-dim);
  font-family: 'Inter', sans-serif;
}
.pipe i {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.3);
}
.pipe-done { color: #28c940; border-color: rgba(40,201,64,0.25); }
.pipe-done i { background: #28c940; }
.pipe-run  { color: var(--gold); border-color: var(--border-gold); }
.pipe-run i { background: var(--gold); animation: dotPulse 1.4s infinite; }
.pipe-queue { opacity: 0.6; }

/* Floating feature tags — mirror site .feature-tag pattern */
.feature-tag {
  position: absolute;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
  z-index: 4;
  border-radius: 12px;
  border: 0.667px solid var(--border-gold);
  background: rgba(21, 21, 21, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.3);
  white-space: nowrap;
  color: #fff;
  font-weight: 400;
}
.feature-tag .icon-box {
  width: 32px; height: 32px;
  background: rgba(244,208,63,0.2);
  color: var(--gold);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.feature-tag .icon-box .material-symbols-outlined { font-size: 18px; color: var(--gold); }

@keyframes floatUpDown {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-12px); }
}

/* SOC 2 · ISO 27001 — middle-left, slightly outside the dashboard */
.ft2 {
  top: 67%;
  left: -30px;
  right: auto;
  animation: floatUpDown 3.5s ease-in-out infinite 0.5s;
}

/* 0 critical bugs — bottom-left, below SOC 2 */
.ft1 {
  top: auto;
  bottom: 1%;
  left: -30px;
  animation: floatUpDown 3s ease-in-out infinite;
}

/* 3.4× faster releases — bottom-right corner */
.ft4 {
  top: auto;
  bottom: -2%;
  right: -30px;
  animation: floatUpDown 3.2s ease-in-out infinite 0.3s;
}

/* Tablet — pull chips closer to the dashboard so they don't get clipped */
@media (max-width: 1080px) {
  .ft2 { left: -10px; top: 65%; }
  .ft1 { left: -10px; bottom: 1%; }
  .ft4 { right: -10px; bottom: -1%; }
}

/* Small tablet — anchor inside dashboard frame so they don't get clipped */
@media (max-width: 760px) {
  .ft2 { left: 8px; top: 62%; }
  .ft1 { left: 8px; bottom: 4%; }
  .ft4 { right: 8px; bottom: 2%; }
  .feature-tag { padding: 8px 12px; font-size: 12px; }
  .feature-tag .icon-box { width: 26px; height: 26px; }
  .feature-tag .icon-box .material-symbols-outlined { font-size: 15px; }
}

/* Dashboard responsive */
@media (max-width: 1080px) {
  .hero { padding: 130px 40px 60px; min-height: 0; }
  .hero-wrapper { flex-direction: column; gap: 64px; }
  .hero-left { max-width: 100%; }
  .hero-right { max-width: 100%; width: 100%; }
  .hero-left h1 { font-size: 56px; }
}
@media (max-width: 760px) {
  .dashboard-body { grid-template-columns: 110px 1fr; }
  .dashboard-side { padding: 14px 8px; }
  .dashboard-side li { font-size: 11.5px; padding: 8px; }
  .dashboard-side-head { margin: 4px 4px 10px; }
  .dashboard-main { padding: 14px; gap: 14px; }
  .kpi-value { font-size: 18px; }
  .kpi-label { font-size: 9.5px; letter-spacing: 0.04em; }
}
@media (max-width: 640px) {
  .hero { padding: 90px 20px 50px; }
  .hero-left h1 { font-size: 44px; line-height: 1.05; }
  .hero-desc { font-size: 17px; }
  .hero-perks {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 16px;
    row-gap: 14px;
    padding-top: 24px;
  }
  .hero-perks li span { font-size: 22px; }
  .hero-perks li i { font-size: 11.5px; }
  .ft1, .ft2, .ft4 { display: none; }

  /* Dashboard chrome */
  .dashboard-chrome { padding: 10px 12px; gap: 6px; }
  .dashboard-url {
    font-size: 10.5px;
    padding: 5px 10px;
    max-width: 60%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .dashboard-live { font-size: 10px; padding: 3px 8px; }

  /* Hide sidebar — claim full width for charts/KPIs */
  .dashboard-body { grid-template-columns: 1fr; min-height: 0; }
  .dashboard-side { display: none; }
  .dashboard-main { padding: 12px; gap: 12px; }

  /* KPI cards stack delta below value, no absolute overlap */
  .dashboard-row { gap: 8px; }
  .kpi {
    padding: 10px 11px;
    gap: 2px;
  }
  .kpi-label {
    font-size: 9px;
    letter-spacing: 0.02em;
  }
  .kpi-value { font-size: 17px; }
  .kpi-delta {
    position: static;
    align-self: flex-start;
    margin-top: 3px;
    font-size: 9.5px;
    padding: 2px 7px;
  }

  /* Chart */
  .dashboard-chart { padding: 12px; }
  .dashboard-chart-head { font-size: 10.5px; gap: 8px; flex-wrap: wrap; }
  .dashboard-svg { height: 90px; }

  /* Pipeline pills — let them wrap and shrink */
  .dashboard-pipeline { gap: 5px; }
  .pipe {
    font-size: 10.5px;
    padding: 4px 9px;
  }
}

/* =====================================================================
   WHY HOSN EXISTS
 * ===================================================================== */
.why-hosn {
  padding: 80px 100px;
}
.why-hosn-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

/* Left-aligned section title — exact match to seo.css .why-seo-right h2 (60px / 500 wt) */
.section-title-left {
  font-size: 60px;
  line-height: 1.1;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.section-title-left .gold { color: var(--gold); font-weight: 600; }
.section-subtitle-left {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  margin-bottom: 48px;
  max-width: 56ch;
  line-height: 1.5;
}

/* Why list — mirrors .why-list pattern in seo.css */
.why-list {
  display: flex; flex-direction: column;
  gap: 24px;
  position: relative;
}
.why-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(32,32,32,0.4);
  border: 1px solid var(--border);
  transition: border-color .35s var(--ease-soft), background .35s, transform .35s var(--ease-soft);
}
.why-item:hover {
  border-color: var(--border-gold);
  background: rgba(243,206,52,0.04);
  transform: translateX(4px);
}
.why-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-icon-x {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
}
.why-icon-check {
  background: rgba(243,206,52,0.18);
  border: 1px solid var(--border-gold);
  color: var(--gold);
}
.why-icon .material-symbols-outlined { font-size: 22px; }

/* Why-item h3 — match seo.css .why-item h3 (24px / 700) but tightened */
.why-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #fff;
  line-height: 1.3;
}
.why-item h3.gold { color: var(--gold); font-weight: 700; }
.why-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  font-weight: 400;
}

/* Compare cards (right column) */
.why-hosn-right {
  display: flex; flex-direction: column;
  gap: 18px;
  position: sticky;
  top: 110px;
}
.compare-card {
  padding: 28px;
  border-radius: 20px;
  background: var(--panel);
  border: 1px solid var(--border);
  transition: transform .35s var(--ease-soft), border-color .35s;
}
.compare-card:hover { transform: translateY(-3px); }
.compare-before { border-color: rgba(255,255,255,0.08); }
.compare-after  {
  border-color: var(--gold);
  background:
    radial-gradient(80% 100% at 0% 0%, rgba(243,206,52,0.08), transparent 60%),
    var(--panel);
  box-shadow: 0 6px 20px rgba(243,206,52,0.05);
}
.compare-card header { margin-bottom: 16px; }
.compare-card h3 {
  font-size: 22px;
  font-weight: 500;
  color: #fff;
}
.compare-tag {
  display: inline-block;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
}
.tag-bad  { color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); }
.tag-good { color: var(--gold); background: var(--gold-soft); border: 1px solid var(--border-gold); }

.compare-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.compare-chips span {
  font: 500 12px/1 'Inter', sans-serif;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text-mute);
}

.compare-stack {
  display: flex; flex-direction: column; gap: 10px;
}
.compare-stack li {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(243,206,52,0.06);
  border: 1px solid var(--border-gold);
  font-size: 14.5px;
  color: #fff;
  transition: transform .3s var(--ease-soft), background .3s;
}
.compare-stack li:hover {
  transform: translateX(4px);
  background: rgba(243,206,52,0.1);
}
.compare-stack li .material-symbols-outlined {
  font-size: 22px;
  color: var(--gold);
}

.compare-note {
  margin-top: 16px;
  padding-top: 14px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  border-top: 1px dashed rgba(255,255,255,0.1);
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.04em;
}
.compare-note-good { color: var(--gold); border-top-color: var(--border-gold); }

.compare-connector {
  position: relative;
  height: 32px;
  display: flex; align-items: center; justify-content: center;
}
.compare-connector svg { width: 100%; height: 100%; }
.compare-path { stroke-dasharray: 6 4; }
.compare-arrow {
  position: absolute;
  width: 36px; height: 36px;
  background: var(--bg);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--gold);
}
.compare-arrow .material-symbols-outlined { font-size: 18px; color: var(--gold); }

@media (max-width: 1024px) {
  .why-hosn { padding: 80px 40px; }
  .why-hosn-wrapper { grid-template-columns: 1fr; gap: 56px; }
  .why-hosn-right { position: static; }
  .section-title-left { font-size: 44px; }
}
@media (max-width: 640px) {
  .why-hosn { padding: 60px 20px; }
  .section-title-left { font-size: 32px; }
}

/* =====================================================================
   WHAT HOSN DELIVERS  (mirrors .services-grid + .service-card pattern)
 * ===================================================================== */
.deliver-section {
  padding: 80px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

/* Service card — exact match to css/seo.css .service-card pattern */
.service-card {
  position: relative;
  background: var(--panel-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  min-height: 260px;
  cursor: default;
  transition: transform 0.4s var(--ease-soft), border-color 0.4s, box-shadow 0.4s, background 0.4s;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(243, 206, 52, 0.4);
  background:
    radial-gradient(80% 100% at 0% 0%, rgba(243, 206, 52, 0.06), transparent 60%),
    var(--panel-2);
  box-shadow: 0 24px 48px -16px rgba(0, 0, 0, 0.6);
}

/* Explicit overrides — neutralise the global style.css service-card:hover rules
   that turn text/icons dark when the homepage card pattern bleeds onto this page */
.solutions-page .service-card:hover h4,
.sol-body .service-card:hover h4 { color: #fff; }
.solutions-page .service-card:hover p,
.sol-body .service-card:hover p { color: rgba(255, 255, 255, 0.6); }
.solutions-page .service-card:hover .icon-circle,
.sol-body .service-card:hover .icon-circle {
  background: rgba(243, 206, 52, 0.12);
}
.solutions-page .service-card:hover .icon-circle .material-symbols-outlined,
.sol-body .service-card:hover .icon-circle .material-symbols-outlined { color: var(--gold); }
.solutions-page .service-card-featured h4,
.sol-body .service-card-featured h4 { color: #fff; }
.solutions-page .service-card-featured p,
.sol-body .service-card-featured p { color: rgba(255, 255, 255, 0.6); }

.service-card .icon-circle {
  width: 64px; height: 64px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  transition: background .35s, border-color .35s, transform .35s var(--ease-soft);
}
.service-card:hover .icon-circle {
  background: rgba(243, 206, 52, 0.12);
  border-color: rgba(243, 206, 52, 0.35);
  transform: rotate(-4deg);
}
.service-card .icon-circle .material-symbols-outlined {
  font-size: 28px;
  color: var(--gold);
}

.service-card h4 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #fff;
  line-height: 1.3;
}
.service-card p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
  margin-bottom: 18px;
  flex: 1;
  font-weight: 400;
}

.card-tag {
  display: inline-block;
  font: 500 11px/1 'Inter', sans-serif;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(243, 206, 52, 0.08);
  color: var(--gold);
  border: 1px solid rgba(243, 206, 52, 0.22);
  align-self: flex-start;
  letter-spacing: 0.06em;
  transition: background .35s, border-color .35s;
}
.service-card:hover .card-tag {
  background: rgba(243, 206, 52, 0.14);
  border-color: rgba(243, 206, 52, 0.45);
}

/* Featured card — subtle gold gradient corner, NOT a full gold fill (consistent with service pages) */
.service-card-featured {
  background:
    radial-gradient(70% 90% at 0% 0%, rgba(243, 206, 52, 0.10), transparent 60%),
    var(--panel-2);
  border-color: rgba(243, 206, 52, 0.35);
}
.service-card-featured .icon-circle {
  background: rgba(243, 206, 52, 0.14);
  border-color: rgba(243, 206, 52, 0.4);
}

.card-badge {
  position: absolute;
  top: 20px; right: 20px;
  font: 500 10px/1 'Inter', sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--dark);
}

.service-card-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 56px minmax(280px, 0.9fr) 1.2fr;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 28px;
  row-gap: 10px;
  min-height: 0;
  padding: 28px 36px;
}
.service-card-wide .icon-circle {
  grid-column: 1;
  grid-row: 1 / 3;
  margin-bottom: 0;
  align-self: center;
}
.service-card-wide h4 {
  grid-column: 2;
  grid-row: 1;
  margin-bottom: 0;
  align-self: end;
}
.service-card-wide .card-tag {
  grid-column: 2;
  grid-row: 2;
  margin-bottom: 0;
  align-self: start;
  justify-self: start;
}
.service-card-wide p {
  grid-column: 3;
  grid-row: 1 / 3;
  margin-bottom: 0;
  align-self: center;
  max-width: 60ch;
}

@media (max-width: 1024px) {
  .deliver-section { padding: 80px 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card-wide {
    grid-template-columns: 56px 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 20px;
    row-gap: 8px;
    padding: 28px;
  }
  .service-card-wide .icon-circle { grid-row: 1; grid-column: 1; }
  .service-card-wide h4         { grid-row: 1; grid-column: 2; align-self: center; }
  .service-card-wide p          { grid-row: 2; grid-column: 1 / -1; }
  .service-card-wide .card-tag  { grid-row: 3; grid-column: 1 / -1; justify-self: start; }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card-wide {
    grid-column: 1;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .service-card-wide .icon-circle { margin-bottom: 22px; align-self: flex-start; }
  .service-card-wide h4 { margin-bottom: 12px; }
  .service-card-wide p { margin-bottom: 16px; }
  .service-card-wide .card-tag { margin-bottom: 20px; align-self: flex-start; }
}

/* =====================================================================
   BUSINESS OUTCOMES  (mirrors .ranking + .stat-card pattern in seo.css)
 * ===================================================================== */
.outcomes-section {
  padding: 80px 100px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto 40px;
}
.stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: transform .35s var(--ease-soft), border-color .35s, background .35s;
  position: relative;
  overflow: hidden;
}
.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  background: rgba(243,206,52,0.04);
}
.stat-card-lg {
  background:
    radial-gradient(60% 80% at 0% 0%, rgba(243,206,52,0.1), transparent 60%),
    rgba(255,255,255,0.05);
  text-align: left;
}
.stat-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  margin-bottom: 12px;
}
.stat-value {
  display: block;
  font-size: 56px;
  font-weight: 700;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  margin-bottom: 12px;
}
.stat-sub {
  display: block;
  font-size: 14px;
  color: var(--text-mute);
  font-weight: 300;
}
.stat-bar {
  margin-top: 20px;
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
}
.stat-bar-fill {
  display: block;
  height: 100%;
  width: 0;
  background: var(--grad-gold);
  border-radius: inherit;
  transition: width 1.4s var(--ease-soft);
}

@media (max-width: 1024px) {
  .outcomes-section { padding: 80px 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .outcomes-section { padding: 60px 20px; }
}
@media (max-width: 540px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-value { font-size: 44px; }
}

/* Posture mini-panel */
.posture-panel {
  max-width: 1280px;
  margin: 0 auto;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(32,32,32,0.4);
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.posture-head {
  padding: 16px 24px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.3);
  font-size: 13px;
  color: var(--text-mute);
  font-family: 'Inter', sans-serif;
}
.posture-tag {
  font: 500 10.5px/1 'Inter', sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--gold-soft);
  border: 1px solid var(--border-gold);
  color: var(--gold);
}
.posture-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.posture-cell {
  padding: 24px;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column; gap: 6px;
}
.posture-cell:last-child { border-right: 0; }
.posture-label {
  font-size: 11.5px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: 'Inter', sans-serif;
}
.posture-value {
  font: 700 30px/1 'Outfit', sans-serif;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
@media (max-width: 760px) {
  .posture-grid { grid-template-columns: repeat(2, 1fr); }
  .posture-cell:nth-child(2) { border-right: 0; }
  .posture-cell:nth-child(1), .posture-cell:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.06); }
}

/* =====================================================================
   INDUSTRIES
 * ===================================================================== */
.industries-section {
  padding: 80px 100px;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.industry-card {
  position: relative;
  background: var(--panel-2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 32px;
  transition: transform .4s var(--ease-soft), border-color .4s, background .4s;
  overflow: hidden;
}
.industry-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(80% 100% at 0% 0%, rgba(243,206,52,0.12), transparent 60%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.industry-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: 0 30px 60px -22px rgba(0,0,0,0.6),
              0 0 0 1px rgba(243,206,52,0.15);
}
.industry-card:hover::before { opacity: 1; }

.industry-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: grid; place-items: center;
  margin-bottom: 22px;
  transition: background .4s, border-color .4s, transform .4s var(--ease-soft);
}
.industry-card:hover .industry-icon {
  background: var(--gold);
  border-color: var(--gold);
  transform: rotate(-6deg) scale(1.05);
}
.industry-icon .material-symbols-outlined {
  font-size: 30px; color: var(--gold);
  transition: color .4s;
}
.industry-card:hover .industry-icon .material-symbols-outlined { color: var(--dark); }

.industry-card h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #fff;
  line-height: 1.3;
}
.industry-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
  font-weight: 400;
  line-height: 1.5;
}
.industry-tag {
  display: inline-block;
  font: 500 11px/1 'Inter', sans-serif;
  letter-spacing: 0.06em;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-mute);
}

@media (max-width: 1024px) {
  .industries-section { padding: 80px 40px; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) { .industries-grid { grid-template-columns: 1fr; } }

/* =====================================================================
   WHY TEAMS STAY
 * ===================================================================== */
.stay-section {
  padding: 80px 100px;
}
.stay-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}
/* Stay card — same DNA as service-card / industry-card (consistent service-page pattern) */
.stay-card {
  position: relative;
  padding: 32px;
  border-radius: 16px;
  background: var(--panel-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  isolation: isolate;
  transition: transform .4s var(--ease-soft), border-color .4s, box-shadow .4s;
}
.stay-card::before {
  content: "";
  position: absolute;
  width: 220px; height: 220px;
  top: -50px; right: -50px;
  background: radial-gradient(circle, rgba(243,206,52,0.18) 0%, transparent 70%);
  filter: blur(32px);
  opacity: 0;
  z-index: -1;
  border-radius: 50%;
  transition: opacity .4s, transform .6s var(--ease-soft);
}
.stay-card:hover {
  transform: translateY(-5px);
  border-color: rgba(243, 206, 52, 0.4);
  box-shadow: 0 24px 48px -16px rgba(0, 0, 0, 0.6);
}
.stay-card:hover::before { opacity: 0.7; transform: translate(-15px, 15px); }

.stay-card-lg {
  grid-row: span 2;
  background:
    radial-gradient(80% 100% at 0% 0%, rgba(243, 206, 52, 0.06), transparent 60%),
    var(--panel-2);
}

.stay-icon {
  width: 64px; height: 64px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(243, 206, 52, 0.12);
  border: 1px solid rgba(243, 206, 52, 0.3);
  margin-bottom: 24px;
}
.stay-icon .material-symbols-outlined { font-size: 30px; color: var(--gold); }

.stay-card h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #fff;
  line-height: 1.3;
}
.stay-card p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  line-height: 1.55;
}
.stay-badges {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 24px;
}
.stay-badges li {
  font: 500 12px/1 'Inter', sans-serif;
  letter-spacing: 0.06em;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--border-gold);
  color: var(--gold);
}

@media (max-width: 1024px) {
  .stay-section { padding: 80px 40px; }
  .stay-grid { grid-template-columns: 1fr 1fr; }
  .stay-card-lg { grid-row: span 1; grid-column: span 2; }
}
@media (max-width: 640px) {
  .stay-grid { grid-template-columns: 1fr; }
  .stay-card-lg { grid-column: span 1; }
}

/* =====================================================================
   FINAL CTA — exact match to seo.css .cta (gold bg · 80px 100px)
 * ===================================================================== */
.cta-section {
  background: var(--gold);
  padding: 80px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(255,255,255,0.18), transparent 60%);
  pointer-events: none;
  animation: ctaPulse 6s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.05); }
}

.cta-section::before {
  content: "";
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--dark);
  top: 60px; left: 12%;
  opacity: 0.3;
  animation: dotPulse 3s ease-in-out infinite;
}
.cta-section::after {
  content: "";
  position: absolute;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--dark);
  bottom: 80px; right: 14%;
  opacity: 0.25;
  animation: dotPulse 3.6s ease-in-out infinite -1.4s;
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
}
/* CTA title — exact match to seo.css .cta h2 (48px / 500 wt / dark text) */
.cta-title {
  font-size: 48px;
  line-height: 1.15;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.cta-title .dark { color: var(--dark); font-weight: 700; }

/* CTA paragraph */
.cta-sub {
  font-size: 17px;
  color: rgba(21, 21, 21, 0.78);
  font-weight: 400;
  line-height: 1.55;
  margin: 0 auto 32px;
  max-width: 640px;
}

/* CTA status row — green dot + bullet-separated trust indicators */
.cta-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
  color: #151515;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Outfit', sans-serif;
}
.cta-status .status-item {
  display: inline-flex;
  align-items: center;
}
.cta-status .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1f7a34;
  margin-right: 8px;
  vertical-align: middle;
  box-shadow: 0 0 0 3px rgba(31, 122, 52, 0.2);
  animation: dotPulseGreen 2s ease-in-out infinite;
}
@keyframes dotPulseGreen {
  0%, 100% { box-shadow: 0 0 0 3px rgba(31, 122, 52, 0.2); }
  50%      { box-shadow: 0 0 0 6px rgba(31, 122, 52, 0.05); }
}
.cta-status .status-sep {
  opacity: 0.5;
  user-select: none;
}
.cta-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 4px;
}
.cta-fineprint { display: none; }

@media (max-width: 760px) {
  .cta-section { padding: 80px 40px; }
  .cta-title { font-size: 38px; }
  .cta-sub { font-size: 17px; }
}

/* =====================================================================
   FOOTER (matches site footer composition)
 * ===================================================================== */
.sol-footer {
  background: #010101;
  padding: 80px 80px 32px;
  position: relative;
  z-index: 5;
}
.sol-footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 64px;
  margin: 0 auto 56px;
  max-width: 1280px;
}
.sol-footer-brand .logo {
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.sol-footer-brand p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.5;
  margin-bottom: 24px;
  max-width: 36ch;
  font-weight: 300;
}
.social-icons {
  display: flex; gap: 12px;
}
.social-icons a {
  width: 40px; height: 40px;
  background: var(--panel-3);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  transition: background .3s, transform .3s;
}
.social-icons a:hover { background: var(--gold); transform: translateY(-2px); }
.social-icons a:hover .material-symbols-outlined { color: var(--dark); }
.social-icons .material-symbols-outlined { font-size: 18px; color: var(--gold); transition: color .3s; }

.sol-footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.sol-footer-cols h4 {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}
.sol-footer-cols a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  padding: 6px 0;
  font-weight: 300;
  transition: color .25s, transform .25s;
}
.sol-footer-cols a:hover { color: var(--gold); transform: translateX(3px); }

.sol-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0 0;
  max-width: 1280px;
  margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap; gap: 12px;
  font-family: 'Inter', sans-serif;
}

@media (max-width: 760px) {
  .sol-footer { padding: 60px 24px 32px; }
  .sol-footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .sol-footer-cols { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* =====================================================================
   Section title responsive shrink
 * ===================================================================== */
@media (max-width: 1024px) {
  .section-title { font-size: 38px; }
  .section-title-left { font-size: 38px; }
  .section-subtitle { font-size: 16px; margin-bottom: 48px; }
  .section-head { margin-bottom: 48px; }
  .cta-title { font-size: 40px; }
}
@media (max-width: 640px) {
  .section-title { font-size: 30px; }
  .section-title-left { font-size: 30px; }
  .cta-title { font-size: 30px; }
  .cta-sub { font-size: 17px; }
}

/* =====================================================================
   CAREERS PAGE — distinct sections (different from solutions design)
 * ===================================================================== */

.cr-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 25px;
  border-radius: 35px;
  border: 1px solid #f3ce34;
  background: transparent;
  color: #f3ce34;
  font: 300 14px/1.6 'Outfit', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.cr-pill-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(243, 206, 52, 0.18);
  animation: dotPulseGold 2.4s ease-in-out infinite;
}
@keyframes dotPulseGold {
  0%, 100% { box-shadow: 0 0 0 4px rgba(243, 206, 52, 0.18); }
  50%      { box-shadow: 0 0 0 7px rgba(243, 206, 52, 0.04); }
}
.gold-link { color: var(--gold); border-bottom: 1px dashed rgba(243,206,52,0.5); }
.gold-link:hover { border-bottom-color: var(--gold); }

/* HERO */
/* =====================================================================
   HERO — split layout (content left · visual right) + role ticker
 * ===================================================================== */
.cr-hero {
  position: relative;
  padding: 130px 100px 0;
  overflow: hidden;
  max-width: var(--maxw-wide);
  margin: 0 auto;
}
.cr-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: center;
  min-height: 560px;
}

/* LEFT */
.cr-hero-left { position: relative; }
.cr-hero h1 {
  font-size: 83px;
  line-height: 96px;
  font-weight: 400;
  margin: 22px 0 22px;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.005em;
}
.cr-hero h1 .gold { color: var(--gold); font-weight: 700; }
.cr-hero-desc {
  font-size: 20px;
  line-height: 1.4;
  color: #fff;
  opacity: 0.9;
  max-width: 539px;
  margin: 0 0 50px;
  font-weight: 300;
  font-family: 'Outfit', sans-serif;
}

/* Search panel */
.cr-search {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 8px;
  max-width: 620px;
  backdrop-filter: blur(10px);
  margin-bottom: 22px;
  transition: border-color .25s var(--ease-soft), box-shadow .25s var(--ease-soft);
}
.cr-search:focus-within {
  border-color: var(--border-gold);
  box-shadow: 0 0 0 3px rgba(243,206,52,0.08);
}
.cr-search-field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  position: relative;
  min-width: 0;
}
.cr-search-loc { flex: 0 0 200px; max-width: 200px; }
.cr-search-field .material-symbols-outlined {
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
}
.cr-search-field input,
.cr-search-field select {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font: 400 15px/1 'Outfit', sans-serif;
  padding: 14px 0;
  appearance: none;
  -webkit-appearance: none;
}
.cr-search-field input::placeholder { color: rgba(255,255,255,0.5); }
.cr-search-field select { color: rgba(255,255,255,0.85); cursor: pointer; padding-right: 22px; }
.cr-search-field select option { background: var(--panel); color: #fff; }
.cr-search-caret {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  pointer-events: none; font-size: 18px !important; color: rgba(255,255,255,0.4) !important;
}
.cr-search-divider {
  width: 1px; align-self: stretch; margin: 6px 0;
  background: rgba(255,255,255,0.1);
}
.cr-search-btn {
  background: var(--gold);
  color: #0a0a0a;
  font: 600 15px/1 'Outfit', sans-serif;
  padding: 0 26px;
  border-radius: 10px;
  border: none;
  white-space: nowrap;
  transition: transform .2s var(--ease-soft), box-shadow .2s var(--ease-soft);
}
.cr-search-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(243,206,52,0.3);
}

/* Quick chips */
.cr-quick-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center;
}
.cr-chip {
  font: 500 14px/1 'Outfit', sans-serif;
  color: rgba(255,255,255,0.6);
  padding: 6px 0;
  border-bottom: 1.5px solid transparent;
  transition: color .2s var(--ease-soft), border-color .2s var(--ease-soft);
}
.cr-chip:hover { color: #fff; }
.cr-chip.is-active {
  color: #fff;
  border-bottom-color: var(--gold);
}

/* RIGHT — visual */
.cr-hero-right {
  position: relative;
  height: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cr-hero-visual {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1 / 1.05;
  margin: 0 auto;
}

/* Cream-outlined arc backdrop (matches screenshot) */
.cr-hero-arc {
  position: absolute;
  inset: 4% 4% 6% 4%;
  border-radius: 50% 50% 28px 28px / 58% 58% 28px 28px;
  background: transparent;
  border: 6px solid #fff1d4;
  box-shadow:
    inset 0 0 0 1px rgba(255,241,212,0.2),
    0 30px 80px rgba(243,206,52,0.08);
  opacity: 0.95;
}
.cr-hero-blob {
  position: absolute;
  width: 78%; height: 78%;
  left: 11%; top: 14%;
  background: radial-gradient(circle, rgba(243,206,52,0.18), transparent 65%);
  filter: blur(48px);
  pointer-events: none;
  z-index: 0;
}

/* Person image container (transparent PNG, no overlay) */
.cr-hero-img {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 0;
  top: 6%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 2;
}
.cr-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.45));
}

/* Floating elements */
.cr-float {
  position: absolute;
  z-index: 4;
  animation: crFloat 6s ease-in-out infinite;
}

/* "+480 Happy Candidates" white pill card */
.cr-float-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  padding: 8px 18px 8px 8px;
  border-radius: 999px;
  box-shadow:
    0 14px 36px rgba(0,0,0,0.18),
    0 2px 6px rgba(0,0,0,0.06);
}
.cr-float-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5d05a, #e8a93f);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  flex-shrink: 0;
  position: relative;
}
.cr-float-avatar .material-symbols-outlined { font-size: 24px; }
.cr-float-status {
  position: absolute;
  right: -1px; bottom: -1px;
  width: 12px; height: 12px;
  background: #2bd47d;
  border: 2px solid #fff;
  border-radius: 50%;
}
.cr-float-text { display: flex; flex-direction: column; gap: 3px; line-height: 1; }
.cr-float-text strong {
  font: 700 18px/1 'Outfit', sans-serif;
  color: #0f1d2b;
  letter-spacing: -0.01em;
}
.cr-float-text span {
  font: 500 11px/1 'Inter', sans-serif;
  color: rgba(15,29,43,0.55);
  letter-spacing: 0.01em;
}

/* Circular icon chips */
.cr-float-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}
.cr-float-icon .material-symbols-outlined { font-size: 24px; font-variation-settings: 'FILL' 1; }
.cr-float-icon.is-green {
  background: linear-gradient(135deg, #3fd99a, #2bbf80);
  box-shadow: 0 12px 28px rgba(43,191,128,0.4);
}
.cr-float-icon.is-blue {
  background: linear-gradient(135deg, #5db7ff, #3a8fde);
  box-shadow: 0 12px 28px rgba(58,143,222,0.4);
}

/* Positions matching the screenshot */
.cr-float-1 { top: 14%; left: -10%; animation-delay: -1s; }
.cr-float-2 { top: 6%; right: 2%; animation-delay: -3s; }
.cr-float-3 { bottom: 22%; left: 0%; animation-delay: -2s; }

/* Red ball (bottom-right) */
.cr-float-dot {
  width: 22px; height: 22px;
  background: linear-gradient(135deg, #ff6b6b, #e84545);
  border-radius: 50%;
  bottom: 14%; right: 4%;
  box-shadow: 0 8px 20px rgba(232,69,69,0.5);
  animation-delay: -4s;
}
@keyframes crFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* Role ticker (kept) */
.cr-ticker {
  margin-top: 70px;
  margin-left: -100px; margin-right: -100px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.3);
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.cr-ticker-track {
  display: flex; align-items: center; gap: 22px;
  white-space: nowrap;
  animation: crTicker 60s linear infinite;
  width: max-content;
}
.cr-ticker-track span {
  font: 600 17px/1 'Outfit', sans-serif;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.cr-ticker-track span:nth-child(2n+1) { color: var(--gold); }
@keyframes crTicker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 1024px) {
  .cr-hero { padding: 110px 40px 0; }
  .cr-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
    min-height: 0;
  }
  .cr-hero h1 { font-size: 60px; line-height: 70px; }
  .cr-roles-head h2 { font-size: 48px; }
  .cr-philosophy-intro h2 { font-size: 48px; }
  .cr-hero-right { min-height: 420px; }
  .cr-hero-visual { max-width: 420px; }
  .cr-search { max-width: 100%; }
  .cr-ticker { margin-left: -40px; margin-right: -40px; }
}
@media (max-width: 768px) {
  .cr-hero h1 { font-size: 50px; line-height: 60px; }
  .cr-roles-head h2 { font-size: 40px; }
  .cr-philosophy-intro h2 { font-size: 40px; }
}
@media (max-width: 640px) {
  .cr-hero { padding: 90px 20px 0; }
  .cr-hero-grid { gap: 28px; }
  .cr-hero h1 { font-size: 40px; line-height: 48px; }
  .cr-hero-desc { font-size: 16px; }
  .cr-roles-head h2 { font-size: 32px; }
  .cr-roles-head p { font-size: 16px; }
  .cr-philosophy-intro h2 { font-size: 32px; }
  .cr-philosophy-intro p { font-size: 16px; }
  .cr-cta-title { font-size: 32px; }
  .cr-cta-sub { font-size: 16px; }
  .cr-search { flex-direction: column; padding: 8px; gap: 6px; border-radius: 14px; }
  .cr-search-divider { display: none; }
  .cr-search-loc { flex: 1 1 auto; max-width: 100%; }
  .cr-search-field { padding: 4px 12px; }
  .cr-search-btn { padding: 14px; width: 100%; }
  .cr-hero-right { min-height: 360px; }
  .cr-hero-visual { max-width: 320px; aspect-ratio: 1 / 1.1; }
  .cr-float-1 { left: -4%; }
  .cr-float-card { padding: 8px 14px 8px 8px; }
  .cr-float-avatar { width: 30px; height: 30px; }
  .cr-float-text strong { font-size: 14px; }
  .cr-float-icon { width: 42px; height: 42px; }
  .cr-ticker { margin-left: -20px; margin-right: -20px; padding: 16px 0; }
  .cr-ticker-track { gap: 16px; }
  .cr-ticker-track span { font-size: 13px; }
}

/* =====================================================================
   TRUST BAND — companies marquee (dark stripe)
 * ===================================================================== */
.cr-trust {
  position: relative;
  background: linear-gradient(180deg, #0a0a0a, #0d0d0d);
  border-top: 1px solid rgba(243,206,52,0.12);
  border-bottom: 1px solid rgba(243,206,52,0.12);
  padding: 36px 0;
  max-width: var(--maxw-wide);
  margin: 0 auto;
  overflow: hidden;
}
.cr-trust-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 100px;
  text-align: center;
}
.cr-trust-title {
  font: 500 clamp(16px, 1.4vw, 20px)/1.4 'Outfit', sans-serif;
  color: rgba(255,255,255,0.85);
  margin-bottom: 26px;
  letter-spacing: -0.005em;
}
.cr-trust-title .gold { color: var(--gold); font-weight: 700; }

.cr-trust-marquee {
  position: relative;
  overflow: hidden;
  margin: 0 -100px;
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.cr-trust-track {
  display: flex;
  align-items: center;
  gap: 56px;
  animation: crTicker 45s linear infinite;
  width: max-content;
  padding: 4px 0;
}
.cr-trust-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font: 600 18px/1 'Outfit', sans-serif;
  color: rgba(255,255,255,0.5);
  letter-spacing: -0.01em;
  flex-shrink: 0;
  transition: color .25s var(--ease-soft);
}
.cr-trust-logo:hover { color: var(--gold); }
.cr-trust-logo .material-symbols-outlined {
  font-size: 22px;
  color: rgba(255,255,255,0.45);
}
.cr-trust-logo:hover .material-symbols-outlined { color: var(--gold); }

@media (max-width: 1024px) {
  .cr-trust-inner { padding: 0 40px; }
  .cr-trust-marquee { margin: 0 -40px; }
}
@media (max-width: 640px) {
  .cr-trust { padding: 28px 0; }
  .cr-trust-inner { padding: 0 20px; }
  .cr-trust-marquee { margin: 0 -20px; }
  .cr-trust-track { gap: 36px; }
  .cr-trust-logo { font-size: 15px; }
}

/* =====================================================================
   BROWSE BY CATEGORY — header + grid of department cards
 * ===================================================================== */
.cr-cats {
  position: relative;
  padding: 100px 100px 80px;
  max-width: var(--maxw-wide);
  margin: 0 auto;
  overflow: hidden;
}
.cr-cats-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 1280px;
  margin: 0 auto 48px;
  position: relative;
  z-index: 2;
}
.cr-cats-head-text h2 {
  font: 600 clamp(30px, 3.6vw, 48px)/1.1 'Outfit', sans-serif;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 8px;
}
.cr-cats-head-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin: 0;
}
.cr-cats-allink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 600 15px/1 'Outfit', sans-serif;
  color: var(--gold);
  padding: 10px 0;
  border-bottom: 1.5px solid transparent;
  transition: border-color .25s var(--ease-soft), transform .25s var(--ease-soft);
}
.cr-cats-allink:hover {
  border-bottom-color: var(--gold);
}
.cr-cats-allink .material-symbols-outlined {
  font-size: 18px;
  transition: transform .25s var(--ease-soft);
}
.cr-cats-allink:hover .material-symbols-outlined { transform: translateX(4px); }

.cr-cats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.cr-cat-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 22px;
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  transition:
    background .3s var(--ease-soft),
    border-color .3s var(--ease-soft),
    transform .3s var(--ease-soft);
  position: relative;
}
.cr-cat-card:hover {
  background: rgba(243,206,52,0.04);
  border-color: var(--border-gold);
  transform: translateY(-4px);
}
.cr-cat-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(243,206,52,0.1);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 6px;
}
.cr-cat-icon .material-symbols-outlined { font-size: 22px; }
.cr-cat-card h4 {
  font: 600 17px/1.25 'Outfit', sans-serif;
  color: #fff;
  letter-spacing: -0.005em;
  margin: 0;
}
.cr-cat-count {
  font: 400 13px/1.4 'Inter', sans-serif;
  color: rgba(255,255,255,0.5);
}
.cr-cat-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font: 600 13px/1 'Outfit', sans-serif;
  color: var(--gold);
  letter-spacing: 0.01em;
}
.cr-cat-link .material-symbols-outlined {
  font-size: 16px;
  transition: transform .2s var(--ease-soft);
}
.cr-cat-card:hover .cr-cat-link .material-symbols-outlined { transform: translateX(3px); }

/* Featured card variant (highlighted, like the Project Manager card) */
.cr-cat-card--feat {
  background: linear-gradient(180deg, rgba(243,206,52,0.08), rgba(243,206,52,0.02));
  border-color: var(--border-gold);
  box-shadow: 0 12px 40px rgba(243,206,52,0.06);
}
.cr-cat-card--feat .cr-cat-icon {
  background: var(--gold);
  color: #0a0a0a;
}

@media (max-width: 1280px) {
  .cr-cats-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1024px) {
  .cr-cats { padding: 80px 40px 60px; }
  .cr-cats-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .cr-cats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cr-cat-card { padding: 18px 16px; }
}
@media (max-width: 420px) {
  .cr-cats { padding: 60px 20px 40px; }
  .cr-cats-grid { grid-template-columns: 1fr; }
}

/* MISSION */
.cr-mission {
  position: relative;
  padding: 110px 100px;
  overflow: hidden;
  max-width: var(--maxw-wide);
  margin: 0 auto;
}
.cr-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: flex-start;
}
.cr-mission-left h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  font-weight: 500;
  margin: 12px 0 20px;
  color: #fff;
}
.cr-mission-left h2 .gold { color: var(--gold); font-weight: 600; }
.cr-mission-left p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 50ch;
}
.cr-arrow-link {
  display: inline-flex; align-items: center; gap: 6px;
  font: 600 14px/1 'Outfit', sans-serif;
  color: var(--gold);
  padding: 10px 0;
  border-bottom: 1px solid rgba(243, 206, 52, 0.5);
  transition: color .25s, border-color .25s, gap .25s;
}
.cr-arrow-link:hover { gap: 10px; border-bottom-color: var(--gold); }
.cr-arrow-link .material-symbols-outlined { font-size: 18px; }

.cr-mission-right h3 {
  font: 500 13px/1 'Inter', sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.cr-initiatives { list-style: none; display: flex; flex-direction: column; }
.cr-initiatives li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  align-items: flex-start;
  transition: padding-left .35s var(--ease-soft);
}
.cr-initiatives li:last-child { border-bottom: 0; }
.cr-initiatives li:hover { padding-left: 8px; }
.cr-init-num {
  font: 700 36px/1 'Outfit', sans-serif;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.cr-init-text h4 {
  font-size: 19px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.3;
}
.cr-init-text p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
}

@media (max-width: 1024px) {
  .cr-mission { padding: 80px 40px; }
  .cr-mission-grid { grid-template-columns: 1fr; gap: 56px; }
}
@media (max-width: 640px) {
  .cr-mission { padding: 60px 20px; }
  .cr-mission-grid { gap: 40px; }
  .cr-initiatives li { grid-template-columns: 44px 1fr; gap: 16px; }
  .cr-init-num { font-size: 26px; }
}

/* OPEN ROLES */
.cr-roles {
  position: relative;
  padding: 110px 100px;
  overflow: hidden;
  max-width: var(--maxw-wide);
  margin: 0 auto;
}
.cr-roles-head { text-align: center; margin: 0 auto 48px; max-width: 720px; }
.cr-roles-head h2 {
  font-size: 60px;
  line-height: 1.15;
  font-weight: 400;
  margin: 12px 0 16px;
  color: #fff;
  font-family: 'Outfit', sans-serif;
}
.cr-roles-head h2 .gold { color: var(--gold); font-weight: 600; }
.cr-roles-head p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
  font-weight: 300;
  font-family: 'Outfit', sans-serif;
}

.cr-roles-tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center;
  margin-bottom: 36px;
  padding-bottom: 8px;
}
.cr-tab {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  font: 500 13px/1 'Inter', sans-serif;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: background .25s, border-color .25s, color .25s, transform .25s;
}
.cr-tab span {
  display: inline-grid; place-items: center;
  min-width: 22px;
  padding: 0 6px; height: 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
}
.cr-tab:hover { color: #fff; border-color: rgba(255,255,255,0.18); transform: translateY(-1px); }
.cr-tab.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}
.cr-tab.is-active span { background: rgba(21, 21, 21, 0.2); color: var(--dark); }

.cr-roles-list {
  list-style: none;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.cr-role {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  transition: background .3s, padding-left .35s var(--ease-soft);
}
.cr-role::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--gold);
  opacity: 0;
  transition: opacity .3s;
}
.cr-role:hover {
  background: rgba(243, 206, 52, 0.04);
  padding-left: 32px;
}
.cr-role:hover::before { opacity: 1; }
.cr-role.is-hidden { display: none; }
.cr-role-num {
  font: 600 14px/1 'Inter', sans-serif;
  color: rgba(255, 255, 255, 0.4);
  font-variant-numeric: tabular-nums;
}
.cr-role-main h4 {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.3;
  font-family: 'Outfit', sans-serif;
}
.cr-role-tags {
  font: 300 14px/1.4 'Outfit', sans-serif;
  color: rgba(255, 255, 255, 0.6);
}
.cr-tag-dept { color: var(--gold); font-weight: 500; }
.cr-role-apply {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.85);
  font: 500 14px/1 'Inter', sans-serif;
  transition: background .25s, border-color .25s, color .25s, gap .25s;
  white-space: nowrap;
}
.cr-role-apply:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  gap: 10px;
}
.cr-role-apply .material-symbols-outlined { font-size: 16px; }

.cr-roles-empty { text-align: center; padding: 48px 24px; color: rgba(255, 255, 255, 0.6); }
.cr-roles-empty p { font-size: 16px; margin-bottom: 18px; }

@media (max-width: 1024px) { .cr-roles { padding: 80px 40px; } }
@media (max-width: 760px) {
  .cr-role {
    grid-template-columns: 36px 1fr;
    grid-template-rows: auto auto;
    gap: 6px 16px;
    padding: 18px 16px;
  }
  .cr-role-num { grid-row: 1 / 3; }
  .cr-role-main { grid-column: 2; }
  .cr-role-apply { grid-column: 2; justify-self: start; margin-top: 8px; }
  .cr-role:hover { padding-left: 22px; }
  .cr-role-main h4 { font-size: 16px; }
}
@media (max-width: 640px) {
  .cr-roles { padding: 60px 20px; }
  .cr-roles-tabs { gap: 6px; }
  .cr-tab { padding: 8px 14px; font-size: 12px; }
}

/* HIRING TIMELINE */
.cr-process {
  position: relative;
  padding: 110px 100px;
  overflow: hidden;
  max-width: var(--maxw-wide);
  margin: 0 auto;
}
.cr-process-head { text-align: center; margin: 0 auto 64px; max-width: 720px; }
.cr-process-head h2 {
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  font-weight: 500;
  margin: 12px 0 14px;
  color: #fff;
}
.cr-process-head h2 .gold { color: var(--gold); font-weight: 600; }
.cr-process-head p { font-size: 17px; color: rgba(255, 255, 255, 0.6); line-height: 1.55; }

.cr-timeline {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.cr-tl-step { position: relative; padding: 0 24px; text-align: center; }
.cr-tl-line {
  position: absolute;
  top: 32px;
  left: 50%;
  width: 100%;
  height: 2px;
  background-image: repeating-linear-gradient(to right, var(--gold) 0 6px, transparent 6px 12px);
  z-index: 0;
}
.cr-tl-marker {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--gold);
  display: grid; place-items: center;
  margin: 0 auto 22px;
  position: relative;
  z-index: 1;
  transition: transform .35s var(--ease-soft), box-shadow .35s;
}
.cr-tl-step:hover .cr-tl-marker {
  transform: scale(1.08);
  box-shadow: 0 0 0 8px rgba(243, 206, 52, 0.12);
}
.cr-tl-marker--final { background: var(--gold); border-color: var(--gold); }
.cr-tl-marker--final .cr-tl-num { color: var(--dark); }
.cr-tl-num {
  font: 700 22px/1 'Outfit', sans-serif;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.cr-tl-time {
  display: inline-block;
  font: 500 11px/1 'Inter', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 12px;
}
.cr-tl-content h4 {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}
.cr-tl-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
  max-width: 26ch;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .cr-process { padding: 80px 40px; }
  .cr-timeline { grid-template-columns: 1fr; gap: 40px; }
  .cr-tl-step { padding: 0; text-align: left; display: grid; grid-template-columns: 64px 1fr; gap: 20px; align-items: start; }
  .cr-tl-marker { margin: 0; }
  .cr-tl-line { top: 64px; left: 32px; width: 2px; height: 100%; background-image: repeating-linear-gradient(to bottom, var(--gold) 0 6px, transparent 6px 12px); }
  .cr-tl-content p { max-width: none; }
}
@media (max-width: 640px) { .cr-process { padding: 60px 20px; } }

/* BENTO */
.cr-bento {
  position: relative;
  padding: 110px 100px;
  overflow: hidden;
  max-width: var(--maxw-wide);
  margin: 0 auto;
}
.cr-bento-head { text-align: center; margin: 0 auto 56px; max-width: 720px; }
.cr-bento-head h2 {
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  font-weight: 500;
  color: #fff;
  margin-top: 12px;
}
.cr-bento-head h2 .gold { color: var(--gold); font-weight: 600; }

.cr-bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
}
.cr-bn {
  position: relative;
  padding: 28px;
  background: var(--panel-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .4s var(--ease-soft), border-color .4s, box-shadow .4s;
}
.cr-bn:hover {
  transform: translateY(-5px);
  border-color: rgba(243, 206, 52, 0.4);
  box-shadow: 0 24px 48px -16px rgba(0, 0, 0, 0.6);
}
.cr-bn-tag {
  position: absolute;
  top: 20px; right: 22px;
  font: 600 12px/1 'Inter', sans-serif;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.04em;
}
.cr-bn-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(243, 206, 52, 0.1);
  border: 1px solid rgba(243, 206, 52, 0.25);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.cr-bn-icon .material-symbols-outlined { font-size: 26px; color: var(--gold); }
.cr-bn h3 {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}
.cr-bn p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
}
.cr-bn-feat {
  background:
    radial-gradient(70% 90% at 0% 0%, rgba(243, 206, 52, 0.1), transparent 60%),
    var(--panel-2);
  border-color: rgba(243, 206, 52, 0.3);
  padding: 36px;
}
.cr-bn-feat h3 { font-size: 26px; }
.cr-bn-feat p { font-size: 16px; }
.cr-bn-feat .cr-bn-icon { width: 60px; height: 60px; }
.cr-bn-feat .cr-bn-icon .material-symbols-outlined { font-size: 30px; }

.cr-bn-1 { grid-column: span 7; min-height: 240px; }
.cr-bn-2 { grid-column: span 5; }
.cr-bn-3 { grid-column: span 4; }
.cr-bn-4 { grid-column: span 4; }
.cr-bn-5 { grid-column: span 4; }
.cr-bn-6 { grid-column: span 12; min-height: 180px; }

@media (max-width: 1024px) {
  .cr-bento { padding: 80px 40px; }
  .cr-bento-grid { grid-template-columns: repeat(6, 1fr); }
  .cr-bn-1 { grid-column: span 6; }
  .cr-bn-2 { grid-column: span 6; }
  .cr-bn-3, .cr-bn-4, .cr-bn-5 { grid-column: span 3; }
  .cr-bn-6 { grid-column: span 6; }
}
@media (max-width: 640px) {
  .cr-bento { padding: 60px 20px; }
  .cr-bento-grid { grid-template-columns: 1fr; gap: 14px; }
  .cr-bn, .cr-bn-1, .cr-bn-2, .cr-bn-3, .cr-bn-4, .cr-bn-5, .cr-bn-6 {
    grid-column: 1; min-height: 0;
  }
  .cr-bn-feat { padding: 28px; }
  .cr-bn-feat h3 { font-size: 22px; }
}

/* PERKS */
.cr-perks {
  position: relative;
  padding: 110px 100px;
  overflow: hidden;
  max-width: var(--maxw-wide);
  margin: 0 auto;
}
.cr-perks-head { text-align: center; margin: 0 auto 56px; max-width: 720px; }
.cr-perks-head h2 {
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  font-weight: 500;
  color: #fff;
  margin: 12px 0 14px;
}
.cr-perks-head h2 .gold { color: var(--gold); font-weight: 600; }
.cr-perks-head p { font-size: 17px; color: rgba(255, 255, 255, 0.6); line-height: 1.55; }

.cr-perks-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1280px;
  margin: 0 auto;
}
.cr-perk {
  padding: 22px 22px 24px;
  background: var(--panel-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  transition: transform .35s var(--ease-soft), border-color .35s, background .35s;
}
.cr-perk:hover {
  transform: translateY(-3px);
  border-color: rgba(243, 206, 52, 0.35);
  background:
    radial-gradient(80% 100% at 0% 0%, rgba(243, 206, 52, 0.05), transparent 60%),
    var(--panel-2);
}
.cr-perk-icon {
  display: inline-grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(243, 206, 52, 0.08);
  border: 1px solid rgba(243, 206, 52, 0.2);
  margin-bottom: 14px;
  transition: background .35s, border-color .35s;
}
.cr-perk-icon .material-symbols-outlined { font-size: 22px; color: var(--gold); }
.cr-perk:hover .cr-perk-icon {
  background: rgba(243, 206, 52, 0.16);
  border-color: rgba(243, 206, 52, 0.45);
}
.cr-perk h4 {
  font-size: 15.5px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.3;
}
.cr-perk p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.45;
}

@media (max-width: 1024px) {
  .cr-perks { padding: 80px 40px; }
  .cr-perks-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .cr-perks { padding: 60px 20px; }
  .cr-perks-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) { .cr-perks-grid { grid-template-columns: 1fr; } }

/* VALUES */
.cr-values {
  position: relative;
  padding: 110px 100px;
  overflow: hidden;
  max-width: var(--maxw-wide);
  margin: 0 auto;
}
.cr-values-head { text-align: center; margin: 0 auto 48px; max-width: 720px; }
.cr-values-head h2 {
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  font-weight: 500;
  color: #fff;
  margin: 12px 0 14px;
}
.cr-values-head h2 .gold { color: var(--gold); font-weight: 600; }
.cr-values-head p { font-size: 17px; color: rgba(255, 255, 255, 0.6); line-height: 1.55; }
.cr-values-list {
  list-style: none;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
}
.cr-values-list li {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font: 500 14.5px/1.3 'Outfit', sans-serif;
  color: rgba(255, 255, 255, 0.85);
  transition: background .3s, border-color .3s, transform .3s;
}
.cr-values-list li:hover {
  background: rgba(243, 206, 52, 0.05);
  border-color: rgba(243, 206, 52, 0.4);
  transform: translateY(-2px);
}
.cr-values-list li .material-symbols-outlined { font-size: 20px; color: var(--gold); }

@media (max-width: 1024px) { .cr-values { padding: 80px 40px; } }
@media (max-width: 640px) { .cr-values { padding: 60px 20px; } .cr-values-list li { font-size: 13px; padding: 12px 18px; } }

/* (Old dark .cr-cta block removed — replaced by gold .cr-cta-section below) */

/* ============================================================
   HERO ACTION BUTTONS — used in left column of split hero
   ============================================================ */
.cr-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
@media (max-width: 640px) {
  .cr-hero-actions { width: 100%; margin-top: 20px; }
  .cr-hero-actions > * { flex: 1 1 auto; justify-content: center; }
}

/* ============================================================
   HERO VISUAL FX — animated orbs, rotating rings, glowing dots
   ============================================================ */

/* Gradient orbs — pulsing color clouds */
.cr-fx-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(44px);
  pointer-events: none;
  z-index: 0;
  will-change: transform, opacity;
}
.cr-fx-orb-1 {
  width: 70%; height: 70%;
  top: 6%; left: 14%;
  background: radial-gradient(circle, rgba(243, 206, 52, 0.55), transparent 70%);
  animation: fxOrbFloat 9s ease-in-out infinite;
}
.cr-fx-orb-2 {
  width: 52%; height: 52%;
  bottom: 8%; right: 4%;
  background: radial-gradient(circle, rgba(244, 208, 63, 0.5), transparent 70%);
  animation: fxOrbFloat 11s ease-in-out infinite reverse;
}
.cr-fx-orb-3 {
  width: 42%; height: 42%;
  top: 18%; right: 10%;
  background: radial-gradient(circle, rgba(255, 230, 130, 0.4), transparent 70%);
  animation: fxOrbFloat 13s ease-in-out 2s infinite;
}
@keyframes fxOrbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.85; }
  50%      { transform: translate(18px, -28px) scale(1.12); opacity: 1; }
}

/* Rotating rings */
.cr-fx-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  will-change: transform;
}
.cr-fx-ring-1 {
  width: 84%; height: 84%;
  top: 6%; left: 8%;
  border: 1.5px dashed rgba(243,206,52,0.45);
  animation: fxRingSpin 32s linear infinite;
}
.cr-fx-ring-2 {
  width: 54%; height: 54%;
  top: 22%; left: 23%;
  border: 1px solid rgba(255,255,255,0.18);
  animation: fxRingSpin 24s linear infinite reverse;
}
@keyframes fxRingSpin {
  to { transform: rotate(360deg); }
}

/* Decorative floating shapes (+ and ✦) */
.cr-fx-shape {
  position: absolute;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  z-index: 3;
  pointer-events: none;
  user-select: none;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  will-change: transform;
}
.cr-fx-plus {
  top: 6%; right: 10%;
  font-size: 34px;
  color: var(--gold, #f3ce34);
  animation: fxBob 4.2s ease-in-out infinite;
}
.cr-fx-star {
  bottom: 16%; left: 4%;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.78);
  animation: fxBob 5.4s ease-in-out -1.5s infinite;
}
@keyframes fxBob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-12px) rotate(18deg); }
}

/* Glowing dots */
.cr-fx-dot {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
  will-change: transform, opacity;
}
.cr-fx-dot-1 {
  width: 12px; height: 12px;
  top: 16%; left: 6%;
  background: var(--gold, #f3ce34);
  box-shadow: 0 0 18px rgba(243, 206, 52, 0.85);
  animation: fxPulse 3.6s ease-in-out infinite;
}
.cr-fx-dot-2 {
  width: 8px; height: 8px;
  bottom: 26%; right: 6%;
  background: #f4d03f;
  box-shadow: 0 0 14px rgba(244, 208, 63, 0.75);
  animation: fxPulse 4.4s ease-in-out -2s infinite;
}
.cr-fx-dot-3 {
  width: 6px; height: 6px;
  top: 42%; right: 14%;
  background: #ffe066;
  box-shadow: 0 0 12px rgba(255, 224, 102, 0.75);
  animation: fxPulse 5s ease-in-out -1s infinite;
}
@keyframes fxPulse {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.85; }
  50%      { transform: translateY(-8px) scale(1.25); opacity: 1; }
}

/* Reduce motion — respect user preference */
@media (prefers-reduced-motion: reduce) {
  .cr-fx-orb, .cr-fx-ring, .cr-fx-shape, .cr-fx-dot {
    animation: none !important;
  }
}

/* Mobile tweaks — scale down decorative elements */
@media (max-width: 640px) {
  .cr-fx-plus { font-size: 26px; }
  .cr-fx-star { font-size: 18px; }
  .cr-fx-orb { filter: blur(32px); }
}

/* ============================================================
   PHILOSOPHY SECTION — split intro + numbered pillar cards
   ============================================================ */
.cr-philosophy {
  position: relative;
  padding: 130px 100px;
  max-width: var(--maxw-wide);
  margin: 0 auto;
  overflow: hidden;
}
.cr-philosophy-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: start;
}

/* LEFT — intro */
.cr-philosophy-intro {
  position: sticky;
  top: 100px;
}
.cr-philosophy-intro .section-badge {
  margin-bottom: 18px;
}
.cr-philosophy-intro h2 {
  font-size: 64px;
  line-height: 1.15;
  font-weight: 400;
  margin: 0 0 24px;
  color: #fff;
  font-family: 'Outfit', sans-serif;
}
.cr-philosophy-intro h2 .gold {
  color: var(--gold, #f3ce34);
  font-weight: 700;
}
.cr-philosophy-intro p {
  font-size: 20px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 32px;
  max-width: 540px;
  font-weight: 300;
  font-family: 'Outfit', sans-serif;
}

/* RIGHT — 2x2 staggered pillar cards */
.cr-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.cr-pillar {
  position: relative;
  padding: 36px 28px 30px;
  border: 1px solid rgba(243, 206, 52, 0.2);
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(243, 206, 52, 0.07), rgba(243, 206, 52, 0.015));
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}
.cr-pillar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(160deg, rgba(243, 206, 52, 0), rgba(243, 206, 52, 0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  transition: background 0.4s ease;
}
.cr-pillar:hover {
  transform: translateY(-6px);
  border-color: rgba(243, 206, 52, 0.45);
  background: linear-gradient(160deg, rgba(243, 206, 52, 0.16), rgba(243, 206, 52, 0.03));
  box-shadow: 0 18px 40px -16px rgba(243, 206, 52, 0.35);
}
.cr-pillar:hover::before {
  background: linear-gradient(160deg, rgba(244, 208, 63, 0.85), rgba(243, 206, 52, 0));
}
.cr-pillar--offset {
  margin-top: 36px; /* staggered zigzag in 2x2 */
}
.cr-pillar-num {
  display: inline-block;
  font-family: "Arimo", "JetBrains Mono", monospace;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold, #f3ce34);
  letter-spacing: 0.18em;
  margin-bottom: 18px;
}
.cr-pillar-icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(243, 206, 52, 0.18);
  border: 1px solid rgba(243, 206, 52, 0.3);
  color: var(--gold, #f3ce34);
  margin: 6px 0 18px;
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}
.cr-pillar-icon .material-symbols-outlined {
  font-size: 28px;
}
.cr-pillar:hover .cr-pillar-icon {
  background: var(--gold, #f3ce34);
  border-color: var(--gold, #f3ce34);
  color: #0d0d0d;
  transform: rotate(-6deg) scale(1.08);
  box-shadow: 0 8px 24px -6px rgba(243, 206, 52, 0.6);
}
.cr-pillar h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin: 0 0 12px;
  color: #fff;
  font-family: 'Outfit', sans-serif;
}
.cr-pillar p {
  font-size: 16px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-weight: 400;
  font-family: 'Outfit', sans-serif;
}

@media (max-width: 1024px) {
  .cr-philosophy { padding: 90px 40px; }
  .cr-philosophy-grid { grid-template-columns: 1fr; gap: 50px; }
  .cr-philosophy-intro { position: static; }
  .cr-philosophy-intro p { max-width: 100%; }
}
@media (max-width: 640px) {
  .cr-philosophy { padding: 60px 20px; }
  .cr-pillars { grid-template-columns: 1fr; gap: 14px; }
  .cr-pillar--offset { margin-top: 0; }
  .cr-pillar { padding: 28px 22px 26px; }
  .cr-pillar h3 { font-size: 19px; }
}

/* ============================================================
   FINAL CTA — gold background (mirrors solutions/about CTA)
   Uses cr- prefix; matches the visual treatment of every other
   page so the careers page reads as part of the same family.
   ============================================================ */
.cr-cta-section {
  background: var(--gold);
  padding: 80px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cr-cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(255, 255, 255, 0.18), transparent 60%);
  pointer-events: none;
  animation: crCtaPulse 6s ease-in-out infinite;
}
@keyframes crCtaPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.05); }
}
.cr-cta-section::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #1a1a1a;
  top: 60px;
  left: 12%;
  opacity: 0.3;
  animation: crCtaDot 3s ease-in-out infinite;
}
.cr-cta-section::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #1a1a1a;
  bottom: 80px;
  right: 14%;
  opacity: 0.25;
  animation: crCtaDot 3.6s ease-in-out -1.4s infinite;
}
@keyframes crCtaDot {
  0%, 100% { transform: scale(1);   opacity: 0.3; }
  50%      { transform: scale(1.2); opacity: 0.5; }
}
.cr-cta-section .cr-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
  padding: 0;
  background: none;
  border: none;
}
.cr-cta-title {
  font-family: 'Outfit', sans-serif;
  font-size: 64px;
  line-height: 1.15;
  font-weight: 600;
  color: #000;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}
.cr-cta-sub {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 300;
  line-height: 1.5;
  margin: 0 auto 40px;
  max-width: 700px;
}
.cr-cta-section .cr-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.cr-btn-dark {
  background: #151515;
  color: #fff;
  border: 1px solid #151515;
  border-radius: 999px;
  padding: 16px 36px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}
.cr-btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(0, 0, 0, 0.5);
}
.cr-btn-dark .material-symbols-outlined { font-size: 18px; }
.cr-btn-outline-chat {
  background: rgba(21, 21, 21, 0.08);
  border: 1px solid rgba(21, 21, 21, 0.2);
  color: #151515;
  border-radius: 999px;
  padding: 16px 36px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s, border-color 0.3s;
}
.cr-btn-outline-chat:hover {
  background: rgba(21, 21, 21, 0.18);
  border-color: rgba(21, 21, 21, 0.45);
  transform: translateY(-2px);
}
.cr-btn-outline-chat .material-symbols-outlined { font-size: 18px; }
.cr-cta-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
  color: #151515;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Outfit', sans-serif;
}
.cr-status-item { display: inline-flex; align-items: center; }
.cr-status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1f7a34;
  margin-right: 8px;
  vertical-align: middle;
  box-shadow: 0 0 0 3px rgba(31, 122, 52, 0.2);
  animation: crStatusDotPulse 2s ease-in-out infinite;
}
@keyframes crStatusDotPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(31, 122, 52, 0.2); }
  50%      { box-shadow: 0 0 0 6px rgba(31, 122, 52, 0.05); }
}
.cr-status-sep { opacity: 0.5; user-select: none; }

@media (max-width: 1024px) {
  .cr-cta-section { padding: 80px 40px; }
  .cr-cta-title { font-size: 40px; }
}
@media (max-width: 640px) {
  .cr-cta-section { padding: 60px 20px; }
  .cr-cta-title { font-size: 30px; }
  .cr-cta-sub { font-size: 16px; }
  .cr-cta-section .cr-cta-actions { width: 100%; }
  .cr-cta-section .cr-cta-actions > a { flex: 1 1 auto; padding: 14px 22px; font-size: 14px; }
}


.separator2{
    height: 10vh;
    background:#010101;
}