/* ============================================================
   KEYHIRE.COM — Design System
   Brand: Orange #F5820A + Charcoal #4A4A4A
   ============================================================ */

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

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --orange: #F5820A;
  --orange-dark: #D96F00;
  --orange-light: #FFB347;
  --orange-glow: rgba(245, 130, 10, 0.18);
  --charcoal: #4A4A4A;
  --dark: #0D0D10;
  --dark-2: #13131A;
  --dark-3: #1C1C26;
  --dark-card: rgba(255, 255, 255, 0.04);
  --dark-border: rgba(255, 255, 255, 0.08);
  --white: #FFFFFF;
  --gray-100: #F8F8F8;
  --gray-200: #F0F0F0;
  --gray-400: #AAAAAA;
  --gray-600: #666666;
  --text-dark: #1A1A1A;
  --text-body: #3D3D3D;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.18);
  --shadow-orange: 0 8px 32px rgba(245, 130, 10, 0.28);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --container: 1240px;
  --section-py: 100px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

/* ── Typography ─────────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.15;
  font-weight: 700;
}

.heading-xl {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
}

.heading-lg {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 700;
}

.heading-md {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
}

.heading-sm {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
}

.text-orange {
  color: var(--orange);
}

.text-white {
  color: var(--white);
}

.text-gray {
  color: var(--gray-400);
}

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-py) 0;
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-darker {
  background: var(--dark-2);
  color: var(--white);
}

.section-gray {
  background: var(--gray-100);
}

/* ── Section Labels ─────────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 130, 10, 0.1);
  border: 1px solid rgba(245, 130, 10, 0.25);
  color: var(--orange);
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}

.section-label .dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header p {
  margin-top: 14px;
  color: var(--gray-600);
  font-size: 1.05rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.section-dark .section-header p {
  color: var(--gray-400);
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(245, 130, 10, 0.38);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(245, 130, 10, 0.08);
}

.btn-outline-dark {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid #DDDDDD;
}

.btn-outline-dark:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-lg {
  padding: 17px 38px;
  font-size: 1.05rem;
}

.btn svg,
.btn i {
  font-size: 0.9em;
}

/* ── Navbar ─────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(13, 13, 16, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--dark-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  height: auto;
  padding: 8px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo img {
  height: 63px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Outfit', sans-serif;
  font-size: 0.93rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.nav-links a.active {
  color: var(--orange);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Mobile Nav ─────────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: rgba(13, 13, 16, 0.97);
  backdrop-filter: blur(20px);
  padding: 100px 32px 40px;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid var(--dark-border);
  transition: var(--transition);
}

.mobile-menu a:hover {
  color: var(--orange);
  padding-left: 10px;
}

.mobile-menu .btn {
  margin-top: 24px;
  justify-content: center;
}

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--white);
  font-size: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.mobile-close:hover {
  background: var(--orange);
}

/* ── Hero ───────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(ellipse at center, rgba(245, 130, 10, 0.13) 0%, transparent 65%);
  pointer-events: none;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 40px 24px 60px;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

.hero-content {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 130, 10, 0.12);
  border: 1px solid rgba(245, 130, 10, 0.3);
  color: var(--orange-light);
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 28px;
}

.hero-badge .badge-dot {
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse-dot 1.8s infinite;
  box-shadow: 0 0 6px var(--orange);
}

.hero-headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 22px;
}

.hero-headline .line-orange {
  color: var(--orange);
}

.hero-headline .line-grad {
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.08rem;
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero-stat-num span {
  color: var(--orange);
}

.hero-stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.hero-img-wrap img {
  width: 100%;
  display: block;
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(13, 13, 16, 0.6));
}

/* Floating Cards */
.float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  animation: float 4s ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}

.float-card-1 {
  top: -20px;
  left: -30px;
  animation-delay: 0s;
}

.float-card-2 {
  bottom: 60px;
  right: -20px;
  animation-delay: 1.5s;
}

.float-card-3 {
  bottom: -20px;
  left: 30px;
  animation-delay: 0.8s;
}

.float-card .fc-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.float-card .fc-value {
  font-size: 1.1rem;
  font-weight: 700;
}

.float-card .fc-value .highlight {
  color: var(--orange);
}

.float-card .fc-icon {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.match-score-bar {
  height: 5px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  margin-top: 8px;
  overflow: hidden;
}

.match-score-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 3px;
}

/* ── Trusted By ─────────────────────────────────────────────── */
#trusted {
  padding: 36px 0;
  background: var(--dark-2);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
}

.trusted-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  overflow: hidden;
}

.trusted-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
  flex-shrink: 0;
}

.ticker-track {
  display: flex;
  gap: 56px;
  align-items: center;
  animation: ticker-scroll 22s linear infinite;
  flex-shrink: 0;
}

.ticker-track .brand-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: var(--transition);
}

.ticker-track .brand-name:hover {
  color: rgba(255, 255, 255, 0.55);
}

.ticker-wrap {
  overflow: hidden;
  flex: 1;
  display: flex;
  gap: 56px;
}

/* ── How It Works ───────────────────────────────────────────── */
#how-it-works {
  background: var(--gray-100);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: calc(16.66% + 20px);
  width: calc(66.66% - 40px);
  height: 2px;
  background: linear-gradient(90deg, var(--orange), rgba(245, 130, 10, 0.2));
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid transparent;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(245, 130, 10, 0.15);
  border-color: rgba(245, 130, 10, 0.15);
}

.step-num {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 34px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-orange);
}

.step-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--orange-glow), rgba(245, 130, 10, 0.05));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  border: 1px solid rgba(245, 130, 10, 0.15);
}

.step-card h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.step-card p {
  color: var(--gray-600);
  font-size: 0.93rem;
  line-height: 1.65;
}

/* ── AI Features ─────────────────────────────────────────────── */
#ai-features {
  background: var(--dark);
}

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

.feature-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(245, 130, 10, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), var(--shadow-orange);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(245, 130, 10, 0.15), rgba(245, 130, 10, 0.05));
  border-radius: var(--radius-md);
  border: 1px solid rgba(245, 130, 10, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 700;
}

.feature-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
}

.feature-tag {
  display: inline-block;
  margin-top: 16px;
  padding: 4px 12px;
  background: rgba(245, 130, 10, 0.1);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--orange);
  font-family: 'Outfit', sans-serif;
}

/* ── Industries ─────────────────────────────────────────────── */
#industries {
  background: var(--white);
}

.industry-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.industry-tab {
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
  background: var(--gray-100);
  border: 1.5px solid transparent;
  transition: var(--transition);
  cursor: pointer;
}

.industry-tab:hover {
  border-color: rgba(245, 130, 10, 0.3);
  color: var(--orange);
}

.industry-tab.active {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}

.industry-panel {
  display: none;
}

.industry-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.industry-content h3 {
  font-size: 1.7rem;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.industry-content p {
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 28px;
}

.industry-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.industry-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.93rem;
  color: var(--text-body);
}

.industry-point .pt-icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--orange-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--orange);
  margin-top: 2px;
}

.industry-visual {
  background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid rgba(245, 130, 10, 0.12);
}

.industry-visual-inner {
  text-align: center;
  padding: 40px;
}

.industry-visual-icon {
  font-size: 5rem;
  margin-bottom: 16px;
}

.industry-visual h4 {
  font-size: 1.2rem;
  color: var(--text-dark);
}

.industry-visual p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-top: 8px;
}

/* ── Stats ───────────────────────────────────────────────────── */
#stats {
  background: var(--orange);
  padding: 70px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item {}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.93rem;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
  align-self: stretch;
  margin: 8px 0;
}

/* ── Testimonials ────────────────────────────────────────────── */
#testimonials {
  background: var(--dark-2);
}

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

.testi-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: var(--transition);
}

.testi-card:hover {
  border-color: rgba(245, 130, 10, 0.2);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-4px);
}

.testi-stars {
  color: var(--orange);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.testi-text {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 26px;
  font-style: italic;
}

.testi-text::before {
  content: '\201C';
  color: var(--orange);
  font-size: 2rem;
  line-height: 0;
  vertical-align: -0.5rem;
  margin-right: 4px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}

.testi-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
}

.testi-role {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 2px;
}

/* ── Job Ticker ─────────────────────────────────────────────── */
#job-ticker {
  background: var(--dark-3);
  padding: 24px 0;
  overflow: hidden;
}

.ticker-bar {
  display: flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
}

.ticker-title {
  background: var(--orange);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  margin-right: 28px;
  white-space: nowrap;
  flex-shrink: 0;
}

.ticker-scroll {
  display: flex;
  gap: 50px;
  align-items: center;
  animation: ticker-scroll 28s linear infinite;
  flex-shrink: 0;
}

.ticker-scroll2 {
  animation-delay: -14s;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.ticker-item .job-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}

.ticker-item .job-co {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.38);
}

.ticker-item .job-sep {
  color: rgba(245, 130, 10, 0.5);
  font-size: 1.2rem;
}

.ticker-item .job-badge {
  padding: 3px 10px;
  background: rgba(245, 130, 10, 0.12);
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--orange);
  font-family: 'Outfit', sans-serif;
}

/* ── CTA Banner ──────────────────────────────────────────────── */
#cta-banner {
  background: var(--dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(245, 130, 10, 0.14) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-banner-inner h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 18px;
  font-family: 'Outfit', sans-serif;
}

.cta-banner-inner p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 40px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-note {
  margin-top: 22px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
}

.cta-note i {
  color: var(--orange);
}

/* ── Footer ──────────────────────────────────────────────────── */
#footer {
  background: var(--dark-2);
  border-top: 1px solid var(--dark-border);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand .logo {
  height: 36px;
  margin-bottom: 20px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-tagline {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--orange);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-contact-item i {
  color: var(--orange);
  margin-top: 2px;
  font-size: 0.85rem;
}

.footer-contact-item p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.83rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.83rem;
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: var(--orange);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

/* ── Cards / Chips ───────────────────────────────────────────── */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: var(--gray-100);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--charcoal);
}

.chip-orange {
  background: rgba(245, 130, 10, 0.1);
  color: var(--orange);
}

/* ── Keyframes ───────────────────────────────────────────────── */
@keyframes pulse-dot {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(245, 130, 10, 0.6);
  }

  50% {
    box-shadow: 0 0 0 5px rgba(245, 130, 10, 0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes count-up {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ── Scroll Reveal ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  :root {
    --section-py: 70px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 60px;
  }

  .hero-visual {
    display: none;
  }

  .hero-content {
    max-width: 100%;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid::before {
    display: none;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

  .industry-panel.active {
    grid-template-columns: 1fr;
  }

  .industry-visual {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .nav-cta .btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 640px) {
  :root {
    --section-py: 56px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-headline {
    font-size: 2.2rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .hero-stats {
    gap: 20px;
    flex-wrap: wrap;
  }

  .trusted-inner {
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}