/* ================================================================
   PAGES.CSS  — Final Production CSS
   Thrills Technologies  |  Services · Careers · Industries
   Designed to extend style.css without overriding any existing rules
================================================================ */

/* ── RESET HELPERS ──────────────────────────────────────────── */
.pg *,
.pg *::before,
.pg *::after { box-sizing: border-box; }

/* ── CSS TOKENS (mirrors existing :root palette) ────────────── */
/* --accent-primary:#ff2b2b  --text-secondary:#b3b3b3
   --gradient-primary:linear-gradient(135deg,#ff2b2b,#990000)
   --bg-secondary:#0d0d0d  --bg-primary:#050505               */

/* ── UTILITY CLASSES ─────────────────────────────────────────── */
.u-red   { color: #ff2b2b; }
.u-tag   {
  display: inline-block;
  font-size: 10.5px;
  letter-spacing: 3.5px;
  color: #ff2b2b;
  font-weight: 700;
  text-transform: uppercase;
}
.u-center { text-align: center; }
.u-center p { margin-inline: auto; }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── PAGE-TRANSITION OVERLAY ─────────────────────────────────── */
.page-transition {
  position: fixed;
  inset: 0;
  background: #050505;
  z-index: 9999;
  transform-origin: top;
}

/* ================================================================
   SHARED: PAGE HERO
================================================================ */
.pg-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 90px;
  overflow: hidden;
  background: #050505;
}
.pg-hero-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
/* grid overlay */
.pg-hero-canvas::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.016) 1px, transparent 1px);
  background-size: 64px 64px;
}
/* red orb top-left */
.pg-hero-canvas::after {
  content: '';
  position: absolute;
  top: -220px;
  left: -220px;
  width: 780px;
  height: 780px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,43,43,.22) 0%, transparent 68%);
  filter: blur(110px);
}
.pg-hero-orb2 {
  position: absolute;
  bottom: -80px;
  right: -100px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,43,43,.10) 0%, transparent 68%);
  filter: blur(100px);
  pointer-events: none;
}

.pg-hero-inner {
  position: relative;
  z-index: 1;
  padding: 110px 0 90px;
}
.pg-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  letter-spacing: 3.5px;
  color: #ff2b2b;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.pg-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff2b2b;
  box-shadow: 0 0 10px #ff2b2b;
  flex-shrink: 0;
}
.pg-hero-h1 {
  font-size: clamp(42px, 6.2vw, 86px);
  font-weight: 800;
  line-height: 1.06;
  font-family: 'Poppins', sans-serif;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}
.pg-hero-sub {
  font-size: 18px;
  color: #b3b3b3;
  max-width: 580px;
  line-height: 1.78;
  margin-bottom: 52px;
}
.pg-hero-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.pg-hero-metrics {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.pg-metric {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 0 28px;
}
.pg-metric:first-child { padding-left: 0; }
.pg-metric b {
  font-size: 28px;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  color: #fff;
}
.pg-metric span {
  font-size: 11px;
  color: #b3b3b3;
  letter-spacing: .3px;
}
.pg-metric-sep {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,.09);
  flex-shrink: 0;
}
/* scroll hint */
.pg-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 1;
  pointer-events: none;
}
.pg-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, #ff2b2b, transparent);
  animation: scrollBlink 2.2s ease-in-out infinite;
}
.pg-scroll-label {
  font-size: 9px;
  letter-spacing: 3px;
  color: rgba(255,255,255,.3);
  text-transform: uppercase;
}
@keyframes scrollBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .25; }
}

/* ── SHARED: SECTION HEADER ─────────────────────────────────── */
.sh {
  margin-bottom: 64px;
}
.sh h2 {
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  line-height: 1.12;
  margin: 10px 0 16px;
}
.sh p {
  color: #b3b3b3;
  font-size: 16.5px;
  line-height: 1.78;
  max-width: 560px;
}

/* ── SHARED: FULL-WIDTH CTA SECTION ─────────────────────────── */
.pg-cta-section {
  background: #050505;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 130px 0;
}
.pg-cta-section::before {
  content: '';
  position: absolute;
  width: 900px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255,43,43,.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  filter: blur(110px);
  pointer-events: none;
}
.pg-cta-inner { position: relative; z-index: 1; }
.pg-cta-inner h2 {
  font-size: clamp(34px, 5.2vw, 66px);
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  line-height: 1.1;
  margin: 14px 0 22px;
}
.pg-cta-inner p {
  color: #b3b3b3;
  font-size: 17px;
  max-width: 540px;
  margin: 0 auto 44px;
  line-height: 1.78;
}
.pg-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ================================================================
   SERVICES PAGE
================================================================ */

/* ── SECTION LAYOUT ──────────────────────────────────────────── */
.srv-section { background: #050505; padding: 130px 0; }
.srv-section-dark { background: #060606; padding: 130px 0; position: relative; overflow: hidden; }

/* glow behind dark sections */
.srv-section-dark::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,43,43,.07) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  filter: blur(110px);
  pointer-events: none;
}

/* ── FILTER TABS ─────────────────────────────────────────────── */
.srv-hd-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 46px;
  flex-wrap: wrap;
}
.srv-hd-left h2 {
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  line-height: 1.14;
  margin-top: 10px;
}
.srv-hd-right p {
  color: #b3b3b3;
  font-size: 16px;
  line-height: 1.72;
  max-width: 370px;
}

.srv-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 54px;
  flex-wrap: wrap;
}
.srv-tab {
  padding: 11px 28px;
  border-radius: 60px;
  border: 1px solid rgba(255,255,255,.1);
  background: transparent;
  color: #b3b3b3;
  font-size: 13.5px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all .28s ease;
  letter-spacing: .3px;
}
.srv-tab:hover  { border-color: #ff2b2b; color: #fff; }
.srv-tab.active { background: #ff2b2b; border-color: #ff2b2b; color: #fff; }

/* ── SERVICE CARDS ───────────────────────────────────────────── */
.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.srv-card {
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 22px;
  padding: 38px;
  position: relative;
  overflow: hidden;
  transition: transform .38s ease, border-color .38s ease, box-shadow .38s ease;
  cursor: default;
}
.srv-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(140deg, rgba(255,43,43,.07) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .38s ease;
}
.srv-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,43,43,.32);
  box-shadow: 0 28px 70px rgba(255,0,0,.14);
}
.srv-card:hover::before { opacity: 1; }
.srv-card-featured {
  border-color: rgba(255,43,43,.24);
  background: linear-gradient(160deg, #0f0707 0%, #0d0d0d 100%);
}
.srv-card-featured::before { opacity: .6; }

/* card top row */
.srv-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 8px;
}
.srv-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255,43,43,.1);
  border: 1px solid rgba(255,43,43,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff2b2b;
  flex-shrink: 0;
}
.srv-icon-box svg { width: 26px; height: 26px; }
.srv-num {
  font-size: 12px;
  color: rgba(255,255,255,.13);
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  align-self: flex-start;
  margin-left: auto;
}
.srv-badge {
  font-size: 10px;
  background: #ff2b2b;
  color: #fff;
  padding: 4px 11px;
  border-radius: 20px;
  font-weight: 700;
  letter-spacing: .5px;
  white-space: nowrap;
  align-self: flex-start;
}
.srv-card h3 {
  font-size: 21px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 11px;
}
.srv-card > p {
  color: #b3b3b3;
  font-size: 14px;
  line-height: 1.74;
  margin-bottom: 20px;
}
.srv-list {
  list-style: none;
  margin-bottom: 28px;
}
.srv-list li {
  font-size: 13px;
  color: rgba(255,255,255,.48);
  padding: 6px 0 6px 18px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  position: relative;
}
.srv-list li::before {
  content: '↗';
  position: absolute;
  left: 0;
  color: #ff2b2b;
  font-size: 10px;
  top: 7px;
}
.srv-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ff2b2b;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .3px;
  transition: gap .3s ease;
}
.srv-cta-link:hover { gap: 12px; }
.srv-cta-link svg { width: 15px; height: 15px; }
.srv-card.hidden { display: none; }

/* ── PROCESS STEPS ───────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}
/* horizontal connector line */
.process-grid::before {
  content: '';
  position: absolute;
  top: 33px;
  left: 8%;
  width: 84%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,43,43,.35), transparent);
  z-index: 0;
}
.proc-step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.proc-bubble {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: 1px solid rgba(255,43,43,.4);
  background: #060606;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: #ff2b2b;
  font-family: 'Poppins', sans-serif;
  margin: 0 auto 24px;
  box-shadow: 0 0 30px rgba(255,43,43,.12);
  position: relative;
}
.proc-bubble::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(255,43,43,.05);
}
.proc-step h3 {
  font-size: 17px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 10px;
}
.proc-step p {
  font-size: 13.5px;
  color: #b3b3b3;
  line-height: 1.72;
}

/* ── TECH PILLS ──────────────────────────────────────────────── */
.tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.tech-pill {
  padding: 13px 28px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  background: #0a0a0a;
  font-size: 14px;
  color: #b3b3b3;
  font-weight: 600;
  transition: all .3s ease;
  cursor: default;
  font-family: 'Inter', sans-serif;
}
.tech-pill:hover {
  border-color: rgba(255,43,43,.4);
  background: rgba(255,43,43,.06);
  color: #fff;
}

/* ── WHY THRILLS ─────────────────────────────────────────────── */
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 90px;
  align-items: start;
}
.why-left h2 {
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  line-height: 1.16;
  margin: 10px 0 18px;
}
.why-left p { color: #b3b3b3; font-size: 15.5px; line-height: 1.78; margin-bottom: 0; }
.why-left .btn-primary { display: inline-block; margin-top: 34px; }

.why-item {
  display: flex;
  gap: 20px;
  padding: 22px 26px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  margin-bottom: 14px;
  background: #0a0a0a;
  transition: border-color .3s ease, transform .3s ease;
}
.why-item:hover { border-color: rgba(255,43,43,.26); transform: translateX(5px); }
.why-icon { font-size: 26px; flex-shrink: 0; width: 42px; text-align: center; line-height: 1.3; }
.why-body h3 { font-size: 15.5px; font-weight: 700; font-family: 'Poppins', sans-serif; margin-bottom: 6px; }
.why-body p  { font-size: 13.5px; color: #b3b3b3; line-height: 1.66; }

/* ── TESTIMONIALS GRID ───────────────────────────────────────── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testi-card {
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 22px;
  padding: 38px;
  transition: transform .35s ease, border-color .35s ease;
  position: relative;
  overflow: hidden;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: 12px;
  right: 24px;
  font-size: 100px;
  color: rgba(255,43,43,.08);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}
.testi-card:hover { transform: translateY(-5px); border-color: rgba(255,43,43,.24); }
.testi-stars { color: #ff2b2b; font-size: 14px; letter-spacing: 3px; margin-bottom: 18px; }
.testi-card > p {
  color: rgba(255,255,255,.68);
  font-size: 15px;
  line-height: 1.80;
  font-style: italic;
  margin-bottom: 28px;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-av {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff2b2b, #990000);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px; flex-shrink: 0; color: #fff;
}
.testi-author strong { display: block; font-size: 14.5px; font-weight: 700; }
.testi-author span   { font-size: 12px; color: #b3b3b3; }

/* ================================================================
   CAREERS PAGE
================================================================ */

/* ── STATS BAR ───────────────────────────────────────────────── */
.car-stats-bar {
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.04);
  padding: 52px 0;
}
.car-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.car-stat { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 0 56px; }
.car-stat b  { font-size: 40px; font-weight: 800; font-family: 'Poppins', sans-serif; color: #fff; }
.car-stat span { font-size: 12px; color: #b3b3b3; letter-spacing: .5px; }
.car-sep { width: 1px; height: 52px; background: rgba(255,255,255,.08); flex-shrink: 0; }

/* ── CULTURE SECTION ─────────────────────────────────────────── */
.culture-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: start;
}
.culture-left h2 {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  line-height: 1.16;
  margin: 10px 0 20px;
}
.culture-left p { color: #b3b3b3; font-size: 15.5px; line-height: 1.78; margin-bottom: 14px; }
.cv-list { margin-top: 30px; }
.cv-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.72);
}
.cv-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ff2b2b;
  box-shadow: 0 0 8px #ff2b2b;
  flex-shrink: 0;
}

/* culture card grid */
.cc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.cc-card {
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 20px;
  padding: 28px;
  transition: border-color .3s ease;
}
.cc-card:hover { border-color: rgba(255,43,43,.24); }
.cc-wide { grid-column: 1 / -1; }
.cc-red  { border-color: rgba(255,43,43,.22); background: linear-gradient(140deg, #0e0606, #0d0d0d); }
.cc-emoji { font-size: 34px; margin-bottom: 12px; }
.cc-card h3 { font-size: 16.5px; font-weight: 700; font-family: 'Poppins', sans-serif; margin-bottom: 8px; }
.cc-card p  { font-size: 13.5px; color: #b3b3b3; line-height: 1.66; }

/* ── PERKS GRID ──────────────────────────────────────────────── */
.perks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.perk-card {
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 20px;
  padding: 32px 28px;
  transition: transform .35s ease, border-color .35s ease;
}
.perk-card:hover { transform: translateY(-6px); border-color: rgba(255,43,43,.26); }
.perk-icon { font-size: 36px; margin-bottom: 18px; }
.perk-card h3 { font-size: 16px; font-weight: 700; font-family: 'Poppins', sans-serif; margin-bottom: 9px; }
.perk-card p  { font-size: 13.5px; color: #b3b3b3; line-height: 1.68; }

/* ── JOBS SECTION ────────────────────────────────────────────── */
.job-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 42px;
  flex-wrap: wrap;
}
.job-filter {
  padding: 10px 24px;
  border-radius: 60px;
  border: 1px solid rgba(255,255,255,.1);
  background: transparent;
  color: #b3b3b3;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .28s ease;
  font-family: 'Inter', sans-serif;
}
.job-filter:hover  { border-color: #ff2b2b; color: #fff; }
.job-filter.active { background: #ff2b2b; border-color: #ff2b2b; color: #fff; }
.job-card.hidden   { display: none; }

.job-list { display: flex; flex-direction: column; gap: 14px; }
.job-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 34px;
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 18px;
  transition: border-color .35s ease, transform .35s ease;
  flex-wrap: wrap;
}
.job-card:hover { border-color: rgba(255,43,43,.30); transform: translateX(6px); }

.job-left { flex: 1; min-width: 240px; }
.dept-badge {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.dept-eng  { background: rgba(59,130,246,.14);  color: #60a5fa; }
.dept-ai   { background: rgba(168,85,247,.14);  color: #c084fc; }
.dept-des  { background: rgba(236,72,153,.14);  color: #f472b6; }
.dept-mkt  { background: rgba(16,185,129,.14);  color: #34d399; }
.dept-sal  { background: rgba(245,158,11,.14);  color: #fbbf24; }

.job-card h3 { font-size: 18px; font-weight: 700; font-family: 'Poppins', sans-serif; margin-bottom: 9px; }
.job-meta { display: flex; gap: 18px; flex-wrap: wrap; }
.job-meta span { font-size: 13px; color: #b3b3b3; }

.job-right { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; flex-shrink: 0; }
.job-tags  { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.job-tags span {
  font-size: 12px;
  padding: 4px 10px;
  background: rgba(255,255,255,.06);
  border-radius: 6px;
  color: rgba(255,255,255,.50);
}
.job-apply {
  padding: 11px 24px;
  background: linear-gradient(135deg, #ff2b2b, #990000);
  border-radius: 60px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: box-shadow .3s ease, transform .3s ease;
  box-shadow: 0 0 20px rgba(255,0,0,.3);
}
.job-apply:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,0,0,.45); }

.job-no-match {
  text-align: center;
  padding: 40px;
  border: 1px dashed rgba(255,255,255,.1);
  border-radius: 18px;
  color: #b3b3b3;
  font-size: 15px;
  display: none;
}
.job-no-match.visible { display: block; }

.job-open-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 42px;
  padding: 28px 36px;
  border: 1px dashed rgba(255,255,255,.09);
  border-radius: 18px;
  gap: 20px;
  flex-wrap: wrap;
}
.job-open-cta p { color: #b3b3b3; font-size: 15px; }

/* ── HIRING TIMELINE ─────────────────────────────────────────── */
.hire-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 10px;
}
.hire-step {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 0 14px;
}
.hire-arrow {
  color: #ff2b2b;
  font-size: 22px;
  padding-top: 20px;
  opacity: .4;
  flex-shrink: 0;
}
.hire-num {
  width: 62px; height: 62px;
  border-radius: 50%;
  border: 1px solid rgba(255,43,43,.38);
  background: #060606;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800;
  color: #ff2b2b;
  font-family: 'Poppins', sans-serif;
  margin: 0 auto 18px;
  box-shadow: 0 0 22px rgba(255,43,43,.12);
}
.hire-step h3 { font-size: 15px; font-weight: 700; font-family: 'Poppins', sans-serif; margin-bottom: 8px; }
.hire-step p  { font-size: 13px; color: #b3b3b3; line-height: 1.66; }

/* ── EMPLOYEE TESTIMONIALS ───────────────────────────────────── */
.emp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.emp-card {
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 22px;
  padding: 34px;
  transition: transform .35s ease, border-color .35s ease;
}
.emp-card:hover { transform: translateY(-5px); border-color: rgba(255,43,43,.22); }
.emp-head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.emp-av {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 17px; color: #fff; flex-shrink: 0;
}
.emp-head strong { display: block; font-size: 15px; font-weight: 700; }
.emp-head span   { font-size: 12px; color: #b3b3b3; }
.emp-card > p    { font-size: 14.5px; color: rgba(255,255,255,.65); line-height: 1.80; font-style: italic; }

/* ── APPLICATION FORM ────────────────────────────────────────── */
.apply-layout {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 90px;
  align-items: start;
}
.apply-left h2 {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  line-height: 1.16;
  margin: 10px 0 18px;
}
.apply-left p { color: #b3b3b3; font-size: 15.5px; line-height: 1.78; margin-bottom: 32px; }
.apply-contacts { display: flex; flex-direction: column; gap: 12px; }
.apply-contacts a { color: #b3b3b3; text-decoration: none; font-size: 14px; transition: color .3s ease; }
.apply-contacts a:hover { color: #ff2b2b; }

.apply-form {
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 26px;
  padding: 42px;
}
.af-group { margin-bottom: 18px; }
.af-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.af-group label { display: block; font-size: 13px; font-weight: 600; color: rgba(255,255,255,.58); margin-bottom: 8px; }
.af-input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 11px;
  color: #fff;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color .3s ease, box-shadow .3s ease;
  box-sizing: border-box;
}
.af-input:focus {
  border-color: #ff2b2b;
  box-shadow: 0 0 0 3px rgba(255,43,43,.15);
}
.af-input::placeholder { color: rgba(255,255,255,.22); }
.af-select { appearance: none; cursor: pointer; }
.af-textarea { resize: vertical; min-height: 110px; }
.af-upload {
  position: relative;
  padding: 24px;
  border: 2px dashed rgba(255,255,255,.10);
  border-radius: 11px;
  text-align: center;
  cursor: pointer;
  transition: border-color .3s ease, background .3s ease;
}
.af-upload:hover { border-color: #ff2b2b; background: rgba(255,43,43,.04); }
.af-upload span { font-size: 13.5px; color: rgba(255,255,255,.32); }
.af-file { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.af-submit {
  width: 100%;
  padding: 16px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  border: none;
  cursor: pointer;
  border-radius: 60px;
  background: linear-gradient(135deg, #ff2b2b, #990000);
  color: #fff;
  transition: box-shadow .3s ease, transform .3s ease;
  box-shadow: 0 0 30px rgba(255,0,0,.35);
  margin-top: 4px;
  letter-spacing: .3px;
}
.af-submit:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(255,0,0,.55); }
.af-success { color: #34d399; text-align: center; padding: 12px; font-weight: 600; font-size: 15px; }

/* ── FAQ ACCORDION ───────────────────────────────────────────── */
.faq-wrap  { max-width: 820px; margin: 0 auto; }
.faq-item  { border-bottom: 1px solid rgba(255,255,255,.07); }
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color .3s ease;
}
.faq-question:hover { color: #ff2b2b; }
.faq-plus {
  font-size: 24px;
  color: #ff2b2b;
  flex-shrink: 0;
  transition: transform .38s ease;
  font-weight: 300;
  line-height: 1;
}
.faq-item.open .faq-plus { transform: rotate(45deg); }
.faq-answer {
  font-size: 14.5px;
  color: #b3b3b3;
  line-height: 1.80;
  max-height: 0;
  overflow: hidden;
  transition: max-height .42s ease, padding .42s ease;
}
.faq-item.open .faq-answer { max-height: 240px; padding-bottom: 24px; }

/* ================================================================
   INDUSTRIES PAGE
================================================================ */

/* ── INDUSTRY CARD GRID ──────────────────────────────────────── */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.ind-card {
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 22px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: transform .38s ease, border-color .38s ease, box-shadow .38s ease;
}
.ind-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(135deg, #ff2b2b, #990000);
  transition: width .42s ease;
}
.ind-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255,43,43,.30);
  box-shadow: 0 22px 60px rgba(255,0,0,.12);
}
.ind-card:hover::after { width: 100%; }
.ind-emoji { font-size: 38px; margin-bottom: 16px; }
.ind-card h3 { font-size: 18px; font-weight: 700; font-family: 'Poppins', sans-serif; margin-bottom: 9px; }
.ind-card p  { font-size: 13.5px; color: #b3b3b3; line-height: 1.68; margin-bottom: 18px; }
.ind-tags    { display: flex; flex-wrap: wrap; gap: 7px; }
.ind-tag {
  font-size: 11px;
  padding: 4px 10px;
  background: rgba(255,43,43,.08);
  border: 1px solid rgba(255,43,43,.15);
  border-radius: 20px;
  color: rgba(255,255,255,.52);
}

/* ── DEEP DIVE ROWS ──────────────────────────────────────────── */
.deep-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
  margin-bottom: 90px;
}
.deep-row:last-child { margin-bottom: 0; }
.deep-row-rev .deep-left { order: 2; }
.deep-row-rev .deep-right { order: 1; }
.deep-icon { font-size: 56px; margin-bottom: 14px; }
.deep-left h3 {
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin: 10px 0 16px;
  line-height: 1.22;
}
.deep-left p { color: #b3b3b3; font-size: 15px; line-height: 1.80; margin-bottom: 24px; }
.deep-challenge h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ff2b2b;
  margin-bottom: 14px;
}
.deep-challenge ul { list-style: none; }
.deep-challenge li {
  font-size: 14px;
  color: rgba(255,255,255,.56);
  padding: 7px 0 7px 20px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  position: relative;
}
.deep-challenge li::before { content: '↗'; position: absolute; left: 0; color: #ff2b2b; font-size: 10px; top: 8px; }

.deep-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.deep-metric {
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 20px;
  padding: 30px;
  transition: border-color .3s ease;
}
.deep-metric:hover { border-color: rgba(255,43,43,.26); }
.deep-metric b {
  display: block;
  font-size: 40px;
  font-weight: 800;
  color: #ff2b2b;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 8px;
}
.deep-metric span { font-size: 13px; color: #b3b3b3; line-height: 1.58; }
.deep-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.07), transparent);
  margin-bottom: 90px;
}

/* ── GLOBAL METRICS COUNTER ──────────────────────────────────── */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.metric-card {
  text-align: center;
  padding: 52px 24px;
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 24px;
  transition: border-color .3s ease, transform .3s ease;
}
.metric-card:hover { border-color: rgba(255,43,43,.28); transform: translateY(-6px); }
.metric-num {
  font-size: 64px;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  color: #ff2b2b;
  line-height: 1;
  display: inline;
}
.metric-suf {
  font-size: 36px;
  font-weight: 800;
  color: #ff2b2b;
  font-family: 'Poppins', sans-serif;
  display: inline;
}
.metric-card p { font-size: 14px; color: #b3b3b3; line-height: 1.66; margin-top: 14px; }

/* ── INDUSTRY TESTIMONIALS ───────────────────────────────────── */
.ind-test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.ind-test-card {
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 22px;
  padding: 38px;
  transition: transform .35s ease, border-color .35s ease;
}
.ind-test-card:hover { transform: translateY(-5px); border-color: rgba(255,43,43,.24); }
.ind-sector {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ff2b2b;
  background: rgba(255,43,43,.08);
  border: 1px solid rgba(255,43,43,.18);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.ind-test-card > p {
  color: rgba(255,255,255,.66);
  font-size: 15px;
  line-height: 1.80;
  font-style: italic;
  margin-bottom: 26px;
}
.ind-author { display: flex; align-items: center; gap: 14px; }
.ind-av {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, #ff2b2b, #990000);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 15px; color: #fff; flex-shrink: 0;
}
.ind-author strong { display: block; font-size: 14.5px; font-weight: 700; }
.ind-author span   { font-size: 12px; color: #b3b3b3; }

/* ── CLIENT LOGOS ────────────────────────────────────────────── */
.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.logo-pill {
  padding: 18px 30px;
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  opacity: .5;
  transition: opacity .3s ease, border-color .3s ease;
}
.logo-pill:hover { opacity: 1; border-color: rgba(255,43,43,.26); }
.logo-pill img { height: 36px; width: auto; filter: brightness(0) invert(1); display: block; }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1200px) {
  .ind-grid    { grid-template-columns: repeat(3, 1fr); }
  .perks-grid  { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .srv-grid      { grid-template-columns: repeat(2, 1fr); }
  .process-grid  { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .why-layout    { grid-template-columns: 1fr; gap: 52px; }
  .testi-grid    { grid-template-columns: repeat(2, 1fr); }
  .culture-layout{ grid-template-columns: 1fr; gap: 56px; }
  .apply-layout  { grid-template-columns: 1fr; gap: 56px; }
  .emp-grid      { grid-template-columns: repeat(2, 1fr); }
  .ind-grid      { grid-template-columns: repeat(3, 1fr); }
  .deep-row      { grid-template-columns: 1fr; gap: 52px; }
  .deep-row-rev .deep-left  { order: 0; }
  .deep-row-rev .deep-right { order: 0; }
  .metrics-grid  { grid-template-columns: repeat(2, 1fr); }
  .ind-test-grid { grid-template-columns: repeat(2, 1fr); }
  .perks-grid    { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .pg-hero-h1        { letter-spacing: -.5px; }
  .pg-hero-btns      { flex-direction: column; align-items: flex-start; }
  .pg-hero-metrics   { margin-top: 8px; flex-wrap: wrap; }
  .pg-metric         { padding: 0 16px; }
  .pg-metric:first-child { padding-left: 0; }
  .srv-grid          { grid-template-columns: 1fr; }
  .srv-hd-row        { flex-direction: column; }
  .process-grid      { grid-template-columns: 1fr; }
  .testi-grid        { grid-template-columns: 1fr; }
  .car-stat          { padding: 0 24px; }
  .car-sep           { display: none; }
  .car-stats-row     { gap: 32px; }
  .perks-grid        { grid-template-columns: repeat(2, 1fr); }
  .emp-grid          { grid-template-columns: 1fr; }
  .hire-row          { flex-direction: column; align-items: center; gap: 8px; }
  .hire-arrow        { transform: rotate(90deg); }
  .ind-grid          { grid-template-columns: repeat(2, 1fr); }
  .metrics-grid      { grid-template-columns: repeat(2, 1fr); }
  .ind-test-grid     { grid-template-columns: 1fr; }
  .job-card          { flex-direction: column; align-items: flex-start; }
  .job-right         { align-items: flex-start; }
}
@media (max-width: 480px) {
  .ind-grid          { grid-template-columns: 1fr; }
  .perks-grid        { grid-template-columns: 1fr; }
  .metrics-grid      { grid-template-columns: 1fr; }
  .deep-metrics      { grid-template-columns: 1fr; }
  .cc-grid           { grid-template-columns: 1fr; }
  .cc-wide           { grid-column: 1; }
  .af-row            { grid-template-columns: 1fr; }
  .apply-form        { padding: 28px 22px; }
}
