/* ==========================================================================
   Tektwig Premium Cyber-Tech Design System
   ========================================================================== */

/* Root Custom Properties */
:root {
  /* Colors */
  --bg-dark: #000000;
  --bg-panel: rgba(15, 18, 30, 0.45);
  --bg-panel-hover: rgba(22, 27, 45, 0.65);
  --bg-panel-solid: #0f121e;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow-cyan: rgba(0, 171, 236, 0.25);
  --border-glow-purple: rgba(217, 70, 239, 0.25);

  --accent-cyan: #00abec;
  --accent-purple: #d946ef;
  --accent-green: #10b981;
  --accent-blue: #13267d;

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dark: #0f172a;

  /* Fonts */
  --font-title: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Transitions */
  --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease;

  /* Max Width */
  --max-width: 1240px;
}

/* CSS Reset & General Styling */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  background-image: url('assets/hero-pattern.svg');
  background-attachment: fixed;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-cyan);
}

/* Typography Base */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

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

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

.section-padding {
  padding: 100px 0;
}

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

.gradient-text {
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-purple) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Background Glow Orbs */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(130px);
  opacity: 0.12;
  z-index: 0;
}

.orb-1 {
  background-color: var(--accent-cyan);
  width: 400px;
  height: 400px;
  top: 10%;
  left: -100px;
  animation: floatOrb 15s infinite alternate ease-in-out;
}

.orb-2 {
  background-color: var(--accent-purple);
  width: 500px;
  height: 500px;
  top: 40%;
  right: -150px;
  animation: floatOrb 20s infinite alternate-reverse ease-in-out;
}

.orb-3 {
  background-color: var(--accent-blue);
  width: 350px;
  height: 350px;
  bottom: 10%;
  left: 20%;
}

@keyframes floatOrb {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(50px, 30px) scale(1.1);
  }
}

/* Glassmorphism Panel style */
.glass-panel {
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  transition: var(--transition-smooth);
}

.glass-panel:hover {
  background: var(--bg-panel-hover);
  border-color: var(--border-glow-cyan);
  box-shadow: 0 8px 30px rgba(0, 171, 236, 0.06);
}

/* Buttons System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 600;
  border-radius: 8px;
  padding: 12px 28px;
  cursor: pointer;
  border: 2px solid transparent;
  gap: 8px;
  letter-spacing: 0.5px;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-primary {
  background: linear-gradient(135deg, #f24b22 0%, #ff6b4a 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(242, 75, 34, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 26px rgba(242, 75, 34, 0.55);
  background: linear-gradient(135deg, #ff6b4a 0%, #f24b22 100%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-color);
  color: var(--text-main);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-cyan);
  transform: translateY(-2px);
}

.btn-tertiary {
  background: transparent;
  color: var(--accent-cyan);
  padding: 12px 14px;
}

.btn-tertiary:hover svg {
  transform: translateX(4px);
}

.btn-tertiary svg {
  transition: var(--transition-fast);
}

.btn-block {
  width: 100%;
}

.btn-link-orange {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f24b22;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  padding: 12px 14px;
  transition: var(--transition-fast);
}

.btn-link-orange:hover {
  color: #ff6b4a;
}

.btn-link-orange svg {
  transition: var(--transition-fast);
}

.btn-link-orange:hover svg {
  transform: translateX(4px);
}

.datarock-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 14px;
  border-radius: 30px;
  background: rgba(0, 171, 236, 0.1);
  border: 1px solid rgba(0, 171, 236, 0.2);
  color: var(--accent-cyan);
  margin-bottom: 20px;
}

.badge-purple {
  background: rgba(217, 70, 239, 0.1);
  border: 1px solid rgba(217, 70, 239, 0.2);
  color: var(--accent-purple);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition-smooth);
}

.site-header.sticky {
  background: rgba(7, 8, 13, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  padding: 12px 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
}

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

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-main);
  position: relative;
  transition: var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--text-main);
  transition: var(--transition-fast);
}

.hamburger::before {
  top: -6px;
}

.hamburger::after {
  top: 6px;
}

/* Hamburger Open States */
.nav-toggle.open .hamburger {
  background: transparent;
}

.nav-toggle.open .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}

.nav-toggle.open .hamburger::after {
  transform: rotate(-45deg);
  top: 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-list {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-main);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #f24b22, #ff6b4a);
  transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  gap: 12px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  padding: 160px 0 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Interactive Floating Tech Card */
.tech-card-wrapper {
  width: 100%;
  max-width: 420px;
  perspective: 1000px;
}

.tech-card {
  width: 100%;
  padding: 24px;
  border-radius: 16px;
  border-color: var(--border-glow-cyan);
  box-shadow: 0 10px 40px rgba(0, 171, 236, 0.08);
  animation: floatCard 6s infinite ease-in-out;
  transform-style: preserve-3d;
}

@keyframes floatCard {
  0% {
    transform: translateY(0) rotateX(1deg) rotateY(1deg);
  }

  50% {
    transform: translateY(-12px) rotateX(-1deg) rotateY(-1deg);
  }

  100% {
    transform: translateY(0) rotateX(1deg) rotateY(1deg);
  }
}

.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-cyan);
  margin-right: 10px;
}

.status-dot.pulsing {
  box-shadow: 0 0 0 0 rgba(0, 171, 236, 0.7);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 171, 236, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(0, 171, 236, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 171, 236, 0);
  }
}

.card-title {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.95rem;
}

.card-tag {
  margin-left: auto;
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  padding: 2px 8px;
  border-radius: 4px;
  color: var(--text-muted);
}

.metric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.metric-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  padding: 12px;
  border-radius: 8px;
}

.metric-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.metric-value {
  font-size: 1rem;
  font-weight: 700;
}

.color-cyan {
  color: var(--accent-cyan);
}

.color-purple {
  color: var(--accent-purple);
}

.color-green {
  color: var(--accent-green);
}

.console-graph {
  height: 60px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  background: rgba(0, 0, 0, 0.2);
  padding: 8px;
  border-radius: 8px;
  margin-bottom: 16px;
  border: 1px solid var(--border-color);
}

.graph-bar {
  flex: 1;
  background: linear-gradient(to top, var(--accent-blue), var(--accent-cyan));
  border-radius: 2px;
  height: 20%;
  transition: height 0.5s ease;
}

.card-footer-text {
  font-family: monospace;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Services Grid
   ========================================================================== */
.section-header {
  margin-bottom: 60px;
}

.section-tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-cyan);
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
}

.service-card {
  padding: 40px;
}

.service-card:hover {
  border-color: var(--border-glow-purple);
  transform: translateY(-6px);
}

.service-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(0, 171, 236, 0.05);
  border: 1px solid rgba(0, 171, 236, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent-cyan);
}

.service-title {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.service-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.service-bullets {
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
}

.service-bullets li {
  font-size: 0.85rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.service-bullets li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-cyan);
}

/* Featured service card (Enterprise Recruitment) */
.service-card--featured {
  position: relative;
  border-color: rgba(0, 171, 236, 0.35);
  background: linear-gradient(135deg, rgba(0, 171, 236, 0.04) 0%, rgba(217, 70, 239, 0.04) 100%);
}

.service-card--featured:hover {
  border-color: var(--accent-cyan);
  box-shadow: 0 8px 32px var(--border-glow-cyan);
}

.service-card-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
  color: #fff;
  box-shadow: 0 0 12px rgba(0, 171, 236, 0.3);
}

.service-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-cyan);
  text-decoration: none;
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  width: 100%;
  transition: var(--transition-fast);
}

.service-cta-link:hover {
  color: var(--accent-purple);
  gap: 14px;
}

/* ==========================================================================
   DataRock Control Suite Showcase
   ========================================================================== */
.datarock-section {
  position: relative;
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(15, 18, 30, 0.4) 50%, var(--bg-dark) 100%);
}

.datarock-container {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.datarock-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: 20px 0 32px;
}

.datarock-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  padding: 20px 16px;
  border-radius: 12px;
}

.stat-num {
  font-family: var(--font-title);
  font-size: 1.75rem;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.stat-lbl {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Interactive Terminal Mock */
.terminal-mock {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.terminal-header {
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border-color);
  padding: 14px 20px;
  display: flex;
  align-items: center;
}

.terminal-dots {
  display: flex;
  gap: 6px;
  margin-right: 20px;
}

.td-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.td-dot.red {
  background-color: #ef4444;
}

.td-dot.yellow {
  background-color: #f59e0b;
}

.td-dot.green {
  background-color: #10b981;
}

.terminal-title {
  font-family: monospace;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.terminal-status {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.pulse-green {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-green);
  display: inline-block;
  animation: pulseDot 1.5s infinite;
}

.terminal-body {
  padding: 24px;
  font-family: monospace;
  font-size: 0.8rem;
  height: 200px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(0, 0, 0, 0.3);
}

.log-line {
  line-height: 1.4;
  word-break: break-all;
}

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

.text-success {
  color: var(--accent-green);
}

.text-warning {
  color: #f59e0b;
}

.text-info {
  color: var(--accent-cyan);
}

/* Interactive Terminal Chart */
.terminal-chart {
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid var(--border-color);
  padding: 20px 24px;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.chart-visual {
  height: 80px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.chart-point {
  flex: 1;
  background: linear-gradient(to top, rgba(217, 70, 239, 0.2), var(--accent-purple));
  height: var(--height);
  border-radius: 2px 2px 0 0;
  transition: height 0.3s ease;
}

/* ==========================================================================
   Portfolio Section
   ========================================================================== */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
  color: var(--bg-dark);
  font-weight: 600;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.portfolio-item {
  height: 240px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 30px;
}

.portfolio-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 8, 13, 0) 40%, rgba(7, 8, 13, 0.95) 100%);
  z-index: 1;
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 171, 236, 0.15) 0%, rgba(217, 70, 239, 0.15) 100%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.portfolio-item:hover .project-overlay,
.portfolio-item.active .project-overlay {
  opacity: 1;
}

.portfolio-item:hover,
.portfolio-item.active {
  transform: translateY(-4px);
  border-color: var(--accent-cyan);
}

.project-info {
  position: relative;
  z-index: 2;
  transition: var(--transition-smooth);
}

.project-cat {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent-cyan);
  letter-spacing: 1px;
}

.project-name {
  font-size: 1.15rem;
  margin: 4px 0 8px;
}

.project-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: var(--transition-smooth);
}

.portfolio-item:hover .project-desc,
.portfolio-item.active .project-desc {
  max-height: 120px;
  opacity: 1;
  margin-top: 8px;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial-container {
  overflow: hidden;
}

.testimonial-slider-wrap {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-slider {
  display: flex;
  position: relative;
  min-height: 380px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(50px);
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.testimonial-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.testimonial-card {
  padding: 48px;
  border-radius: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.quote-icon {
  font-family: var(--font-title);
  font-size: 5rem;
  line-height: 1;
  color: var(--accent-cyan);
  opacity: 0.3;
  margin-bottom: -15px;
}

.testimonial-quote {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff, var(--text-muted));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testimonial-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  max-width: 650px;
}

.testimonial-client {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}

.client-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--accent-cyan);
  object-fit: cover;
}

.client-name {
  font-size: 1rem;
  font-weight: 600;
}

.client-title {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}

.control-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.control-btn:hover {
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
  color: var(--bg-dark);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slide-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition-fast);
}

.slide-dot.active {
  background: var(--accent-cyan);
  width: 20px;
  border-radius: 4px;
}

/* ==========================================================================
   Leadership Section
   ========================================================================== */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

@media (min-width: 992px) {
  .leadership-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.leader-card {
  overflow: hidden;
  padding: 0;
}

.leader-img-box {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.leader-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.leader-card:hover .leader-img {
  transform: scale(1.05);
}

.leader-overlay-socials {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-smooth);
  z-index: 2;
}

.leader-card:hover .leader-overlay-socials {
  opacity: 1;
  transform: translateY(0);
}

.social-icon-sm {
  background: rgba(7, 8, 13, 0.8);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(4px);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  transition: var(--transition-fast);
}

.social-icon-sm:hover {
  background: var(--accent-cyan);
  color: var(--bg-dark);
}

.leader-info {
  padding: 24px;
  background: rgba(15, 18, 30, 0.2);
}

.leader-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.leader-title {
  font-size: 0.85rem;
  color: var(--accent-cyan);
  margin-bottom: 12px;
  font-weight: 500;
}

.leader-bio {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Calculator & Contact Section
   ========================================================================== */
.contact-container {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: start;
}

.calc-title {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.calc-intro-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.contact-calc-column {
  padding: 40px;
}

.calc-checkbox-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 24px;
}

.calc-checkbox-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  padding: 14px 18px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.calc-checkbox-card input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox-visual {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--text-muted);
  border-radius: 4px;
  margin-right: 14px;
  position: relative;
  display: inline-block;
  transition: var(--transition-fast);
}

.calc-checkbox-card input[type="checkbox"]:checked~.checkbox-visual {
  border-color: var(--accent-cyan);
  background: var(--accent-cyan);
}

.checkbox-visual::after {
  content: "";
  position: absolute;
  display: none;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 8px;
  border: solid var(--bg-dark);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.calc-checkbox-card input[type="checkbox"]:checked~.checkbox-visual::after {
  display: block;
}

.calc-checkbox-card input[type="checkbox"]:checked~.checkbox-label {
  color: var(--text-main);
  font-weight: 600;
}

.calc-checkbox-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-cyan);
}

.calc-checkbox-card input[type="checkbox"]:checked~.calc-checkbox-card {
  background: rgba(0, 171, 236, 0.05);
}

.checkbox-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  user-select: none;
}

.form-group-slider {
  margin-bottom: 24px;
}

.slider-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.calc-label {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

#company-scale-value {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--accent-cyan);
  font-size: 0.95rem;
}

.range-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-cyan);
  cursor: pointer;
  box-shadow: 0 0 10px var(--accent-cyan);
  transition: var(--transition-fast);
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.slider-hint {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.calc-output-box {
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.output-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.output-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.output-val {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.15rem;
}

/* Contact form */
.contact-form-column {
  padding-left: 20px;
}

.contact-form {
  padding: 40px;
  margin-top: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 10px rgba(0, 171, 236, 0.15);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--border-color);
  padding: 80px 0 0;
  background: #040508;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 60px;
}

.footer-logo {
  height: 64px;
  margin-bottom: 24px;
}

.footer-bio-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.footer-socials a:hover {
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
  color: var(--bg-dark);
  transform: translateY(-2px);
}

.footer-heading {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  color: var(--text-main);
}

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

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--accent-cyan);
  padding-left: 4px;
}

.footer-contact-info {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.footer-contact-info .label {
  color: var(--text-main);
}

.footer-contact-info a:hover {
  color: var(--accent-cyan);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: 30px 0;
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

.footer-bottom-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom-links a:hover {
  color: var(--accent-cyan);
}

/* Toast alert styling */
.toast-msg {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--bg-panel-solid);
  border: 1px solid var(--accent-cyan);
  box-shadow: 0 10px 30px rgba(0, 171, 236, 0.2);
  color: var(--text-main);
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 0.9rem;
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
}

.toast-msg.show {
  transform: translateY(0);
  opacity: 1;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-container,
  .datarock-container,
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .contact-form-column {
    padding-left: 0;
  }

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

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

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 24px;
    right: 24px;
    background: var(--bg-panel-solid);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    flex-direction: column;
    align-items: stretch;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: var(--transition-smooth);
    z-index: 999;
  }

  .nav-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-list {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
  }

  .nav-actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

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

/* ==========================================================================
   Careers Portal & Job Board Styles
   ========================================================================== */
.careers-hero {
  padding: 140px 0 60px;
  position: relative;
  text-align: center;
}

.careers-search-bar {
  max-width: 800px;
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: 2.5fr 1.5fr;
  gap: 16px;
  padding: 16px;
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.search-input-wrap,
.filter-select-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input-wrap svg {
  position: absolute;
  left: 14px;
  color: var(--text-muted);
  pointer-events: none;
}

.search-input-wrap input {
  width: 100%;
  padding: 12px 12px 12px 42px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.search-input-wrap input:focus {
  border-color: var(--accent-cyan);
  outline: none;
  box-shadow: 0 0 10px rgba(0, 171, 236, 0.15);
}

.filter-select-wrap select {
  width: 100%;
  padding: 12px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  appearance: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-select-wrap select:focus {
  border-color: var(--accent-cyan);
  outline: none;
}

.filter-select-wrap::after {
  content: '▼';
  font-size: 0.7rem;
  color: var(--text-muted);
  position: absolute;
  right: 14px;
  pointer-events: none;
}

.jobs-section {
  padding: 40px 0 100px;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 24px;
}

.job-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.job-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow-cyan);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}

.job-dept-tag {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-purple);
  background: rgba(217, 70, 239, 0.08);
  padding: 3px 8px;
  border-radius: 4px;
}

.job-type-tag {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent-cyan);
  background: rgba(0, 171, 236, 0.08);
  padding: 3px 8px;
  border-radius: 4px;
}

.job-card-title {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-main);
}

.job-meta-info {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.job-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.job-meta-item svg {
  width: 14px;
  height: 14px;
  color: var(--text-muted);
}

.job-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 24px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: max-height 0.3s ease;
}

.job-card-desc.expanded {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
  line-clamp: unset;
}

.job-card-footer {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.job-card-salary {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
}

/* Third-party / enterprise advertised job cards */
.job-card--external {
  border-color: rgba(245, 158, 11, 0.25);
  background: linear-gradient(135deg,
      rgba(245, 158, 11, 0.03) 0%,
      rgba(0, 171, 236, 0.03) 100%);
}

.job-card--external:hover {
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: 0 8px 28px rgba(245, 158, 11, 0.1);
}

.job-advertising-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #d97706;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.2px;
}

.job-advertising-badge strong {
  color: #f59e0b;
}

/* Admin — Publish as Job Listing button */
.lead-publish-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #10b981;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--transition-fast);
}

.lead-publish-btn:hover {
  background: rgba(16, 185, 129, 0.14);
  border-color: #10b981;
  box-shadow: 0 0 14px rgba(16, 185, 129, 0.2);
}

/* Admin — "Live on Careers Page" badge */
.lead-published-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 8px 14px;
  border-radius: 8px;
}

/* Modal and Drawers */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-backdrop.show {
  opacity: 1;
  visibility: visible;
}

.app-modal {
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  background: var(--bg-panel-solid);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
}

.modal-backdrop.show .app-modal {
  transform: scale(1) translateY(0);
}

.modal-header-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  background: var(--bg-panel-solid);
  z-index: 5;
}

.modal-close-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
}

.modal-content-body {
  padding: 32px;
}

.job-details-view {
  margin-bottom: 30px;
}

.job-details-desc {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.job-details-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-main);
  border-left: 3px solid var(--accent-cyan);
  padding-left: 10px;
}

.job-requirements-list {
  margin-bottom: 30px;
  padding-left: 10px;
}

.job-requirements-list li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.job-requirements-list li::before {
  content: '✓';
  color: var(--accent-cyan);
  font-weight: bold;
}

/* Application Form Custom Elements */
.app-form {
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
}

.form-title-bar {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--text-main) 0%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.app-form .form-group {
  margin-bottom: 20px;
}

.app-form label {
  display: block;
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--text-main);
  margin-bottom: 8px;
}

.app-form input[type="text"],
.app-form input[type="email"],
.app-form input[type="tel"],
.app-form input[type="number"],
.app-form input[type="url"],
.app-form textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.app-form input:focus,
.app-form textarea:focus {
  border-color: var(--accent-cyan);
  outline: none;
  box-shadow: 0 0 10px rgba(0, 171, 236, 0.15);
  background: rgba(0, 0, 0, 0.6);
}

/* Custom CV Upload Area */
.drop-zone {
  border: 2px dashed var(--border-color);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
}

.drop-zone:hover,
.drop-zone--over {
  border-color: var(--accent-cyan);
  background: rgba(0, 171, 236, 0.03);
}

.drop-zone-icon {
  margin-bottom: 12px;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.drop-zone:hover .drop-zone-icon {
  color: var(--accent-cyan);
  transform: translateY(-2px);
}

.drop-zone-text {
  font-size: 0.9rem;
  color: var(--text-main);
  margin-bottom: 6px;
}

.drop-zone-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.cv-details-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 10px;
}

.cv-details-icon {
  color: var(--accent-green);
}

.cv-details-info {
  flex-grow: 1;
}

.cv-details-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  word-break: break-all;
}

.cv-details-size {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.cv-remove-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cv-remove-btn:hover {
  color: #ef4444;
}

/* Success Confirmation Screen */
.form-success-container {
  text-align: center;
  padding: 40px 20px;
}

.success-shield-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  border: 2px solid rgba(16, 185, 129, 0.3);
  color: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleIn {
  from {
    transform: scale(0.6);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.success-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-main);
}

.success-message {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.confirmation-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
  max-width: 400px;
  margin: 0 auto 30px;
}

.conf-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.85rem;
}

.conf-row:last-child {
  margin-bottom: 0;
}

.conf-label {
  color: var(--text-muted);
}

.conf-value {
  font-weight: 600;
  color: var(--text-main);
}


/* ==========================================================================
   Recruiter Admin Dashboard Styles
   ========================================================================== */
.admin-section {
  padding: 120px 0 80px;
  min-height: 100vh;
}

.admin-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

/* Admin Metrics Grid */
.admin-metrics-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.metric-card {
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.metric-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
}

.metric-card.m-total::before {
  background-color: var(--accent-cyan);
}

.metric-card.m-pending::before {
  background-color: #3b82f6;
}

.metric-card.m-review::before {
  background-color: var(--accent-purple);
}

.metric-card.m-interview::before {
  background-color: #f59e0b;
}

.metric-card.m-offered::before {
  background-color: var(--accent-green);
}

.m-card-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.m-card-value {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-main);
}

/* Controls Bar */
.admin-controls-bar {
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.2fr auto;
  gap: 16px;
  align-items: center;
}

/* Admin Applicants Table */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
}

.admin-table th,
.admin-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-color);
}

.admin-table th {
  font-family: var(--font-title);
  font-weight: 600;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.01);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.admin-table tr {
  transition: var(--transition-fast);
}

.admin-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.admin-table tr:last-child td {
  border-bottom: none;
}

.cand-name-cell {
  font-weight: 600;
  color: var(--text-main);
}

.cand-email-cell {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
}

/* Status Badges */
.status-pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pill-pending {
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: #60a5fa;
}

.pill-reviewing {
  background: rgba(217, 70, 239, 0.08);
  border: 1px solid rgba(217, 70, 239, 0.2);
  color: var(--accent-purple);
}

.pill-interviewing {
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
  color: #fbbf24;
}

.pill-offered {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--accent-green);
}

.pill-rejected {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #f87171;
}

/* Action button in table */
.action-btn-sm {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.8rem;
  font-family: var(--font-title);
  font-weight: 500;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.action-btn-sm:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

.empty-state-row {
  text-align: center;
  color: var(--text-muted);
}

.empty-state-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

/* Recruiter Candidate Detail Modal Custom Styles */
.recruiter-profile-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}

.profile-meta-block {
  margin-bottom: 12px;
}

.profile-meta-block:last-child {
  margin-bottom: 0;
}

.profile-meta-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.profile-meta-val {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
}

.profile-meta-val a {
  color: var(--accent-cyan);
  text-decoration: underline;
}

.profile-cover-letter-box {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 16px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-height: 200px;
  overflow-y: auto;
  margin-bottom: 24px;
}

.profile-action-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.status-update-control {
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-update-control select {
  padding: 10px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.85rem;
}


/* ==========================================================================
   Responsive Breakpoints for Recruitment
   ========================================================================== */
@media (max-width: 1024px) {
  .admin-metrics-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .admin-controls-bar {
    grid-template-columns: 1fr 1fr;
  }

  .admin-controls-bar button {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .careers-search-bar {
    grid-template-columns: 1fr;
  }

  .admin-metrics-grid {
    grid-template-columns: 1fr 1fr;
  }

  .admin-controls-bar {
    grid-template-columns: 1fr;
  }

  .admin-controls-bar button {
    grid-column: span 1;
  }

  .recruiter-profile-summary {
    grid-template-columns: 1fr;
  }

  .modal-content-body {
    padding: 20px;
  }

  .modal-header-section {
    padding: 16px 20px;
  }
}

@media (max-width: 480px) {
  .admin-metrics-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   DataRock Control Cloned Site Styling
   ========================================================================== */
.datarock-clone-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.datarock-hero-banner {
  margin-bottom: 20px;
}

.datarock-hero-banner .section-title {
  font-size: 3.5rem;
  margin-top: 15px;
  margin-bottom: 5px;
}

.datarock-subtitle {
  font-size: 1.75rem;
  color: var(--text-main);
  margin-bottom: 20px;
  font-weight: 500;
}

.datarock-tagline {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto 15px;
}

.datarock-caption {
  font-size: 1rem;
  font-weight: 600;
  max-width: 700px;
  margin: 0 auto;
}

/* Section Divider */
.datarock-section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 50px 0 20px;
}

.datarock-section-divider .divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color) 20%, var(--border-color) 80%, transparent);
}

.datarock-section-divider .divider-text {
  font-family: var(--font-title);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-cyan);
  font-weight: 600;
}

/* Use Cases Grid */
.datarock-use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.use-case-card {
  padding: 30px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.use-case-card:hover {
  transform: translateY(-5px);
  background: var(--bg-panel-hover);
  border-color: var(--accent-cyan);
  box-shadow: 0 5px 20px var(--border-glow-cyan);
}

.use-case-card h3 {
  font-size: 1.35rem;
  color: var(--text-main);
}

.use-case-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.card-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
}

/* Tabs Demonstration */
.datarock-showcase-tabs {
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  padding: 40px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.tabs-section-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.tabs-header-container {
  display: flex;
  justify-content: center;
}

.tabs-header {
  display: flex;
  gap: 8px;
  padding: 6px;
  border-radius: 40px;
  border: 1px solid var(--border-color);
  background: rgba(0, 0, 0, 0.2);
}

.datarock-tab-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 10px 24px;
  border-radius: 30px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition-fast);
}

.datarock-tab-btn:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.03);
}

.datarock-tab-btn.active {
  background: var(--accent-cyan);
  color: var(--text-dark);
  font-weight: 600;
  box-shadow: 0 0 15px var(--border-glow-cyan);
}

.datarock-tab-pane {
  display: none;
  animation: fadeInTab 0.4s ease;
}

.datarock-tab-pane.active {
  display: block;
}

@keyframes fadeInTab {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.pane-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.pane-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pane-info h4 {
  font-size: 1.5rem;
  color: var(--text-main);
}

.pane-info p {
  color: var(--text-muted);
  line-height: 1.7;
}

.pane-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pane-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-main);
  font-size: 0.95rem;
}

.pane-list li svg {
  flex-shrink: 0;
}

.pane-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* POLICY EDITOR MOCKUP */
.policy-editor-mock {
  width: 100%;
  max-width: 440px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-color);
}

.policy-editor-body {
  padding: 24px;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.policy-field {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 10px;
  font-size: 0.9rem;
}

.field-label {
  color: var(--text-muted);
}

.field-value {
  color: var(--text-main);
  font-weight: 500;
}

.policy-switches {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 10px 0;
}

.switch-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.switch-status {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.switch-status.status-active {
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-green);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.switch-status.status-inactive {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.policy-visual-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed var(--border-color);
  padding: 14px;
  border-radius: 8px;
  margin-top: 10px;
}

.policy-visual-indicator .lock-icon {
  font-size: 1.25rem;
}

.policy-visual-indicator .indicator-text {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* MOBILE MOCKUP */
.mobile-mockup-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.mobile-mockup {
  width: 260px;
  height: 500px;
  border-radius: 36px;
  border: 4px solid var(--border-color);
  background: rgba(10, 12, 22, 0.8);
  padding: 16px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.mobile-speaker {
  width: 60px;
  height: 5px;
  background: var(--border-color);
  border-radius: 10px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
}

.mobile-screen {
  width: 100%;
  height: 100%;
  background: #080911;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  font-size: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  gap: 20px;
  position: relative;
}

.mobile-vault-logo {
  background: rgba(219, 70, 239, 0.08);
  border: 1px solid var(--border-glow-purple);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(217, 70, 239, 0.15);
}

.vault-instructions {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 160px;
  line-height: 1.4;
}

.mobile-btn {
  background: var(--accent-purple);
  color: var(--text-main);
  border: none;
  padding: 10px 24px;
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(217, 70, 239, 0.2);
}

.mobile-dock {
  width: 100%;
  display: flex;
  justify-content: space-around;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 10px;
  font-size: 0.65rem;
  color: var(--text-muted);
  position: absolute;
  bottom: 10px;
  left: 0;
}

/* DESKTOP APP MOCKUP */
.desktop-mockup {
  width: 100%;
  max-width: 460px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.desktop-header {
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border-color);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.desktop-dots {
  display: flex;
  gap: 5px;
}

.desktop-dots .d-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.desktop-dots .d-dot.red {
  background-color: #ef4444;
}

.desktop-dots .d-dot.yellow {
  background-color: #f59e0b;
}

.desktop-dots .d-dot.green {
  background-color: #10b981;
}

.desktop-body {
  display: grid;
  grid-template-columns: 120px 1fr;
  height: 240px;
  background: rgba(0, 0, 0, 0.2);
}

.desktop-sidebar {
  border-right: 1px solid var(--border-color);
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-item {
  font-size: 0.75rem;
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--text-muted);
}

.sidebar-item.active {
  background: rgba(255, 255, 255, 0.03);
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 171, 236, 0.15);
}

.desktop-content-area {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.data-owner-banner {
  font-size: 0.7rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 8px;
}

.geofence-selector h5 {
  font-size: 0.8rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.location-badge {
  font-size: 0.65rem;
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(0, 171, 236, 0.1);
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 171, 236, 0.2);
}

.search-box-mock {
  font-size: 0.75rem;
  color: var(--text-muted);
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  border-radius: 6px;
}

/* OUTLOOK MOCKUP */
.outlook-mockup {
  width: 100%;
  max-width: 480px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.outlook-header {
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border-color);
  padding: 10px 16px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.outlook-body {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  height: 250px;
  background: rgba(0, 0, 0, 0.2);
}

.email-form-mock {
  padding: 16px;
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.75rem;
}

.email-line {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
}

.email-line .placeholder-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  padding: 4px 8px;
  border-radius: 4px;
  color: var(--text-main);
  flex: 1;
}

.email-body-area {
  flex: 1;
  border: 1px solid var(--border-color);
  background: rgba(0, 0, 0, 0.2);
  padding: 10px;
  border-radius: 6px;
}

.outlook-sidebar-mock {
  background: rgba(0, 0, 0, 0.3);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.outlook-sidebar-mock .sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 8px;
  font-size: 0.75rem;
  font-weight: 700;
}

.plugin-toggle-on {
  font-size: 0.65rem;
  background: var(--accent-green);
  color: var(--text-dark);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 800;
}

.plugin-settings {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.setting-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
}

.setting-toggle .toggle-status {
  color: var(--accent-cyan);
  font-weight: 700;
}

.setting-toggle .toggle-switch.disabled {
  width: 28px;
  height: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 2px;
  color: #ef4444;
  font-size: 0.55rem;
  font-weight: 700;
  justify-content: center;
}

/* Why It Matters Grid */
.datarock-why-it-matters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.matters-card {
  padding: 24px;
  border-radius: 12px;
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--transition-smooth);
}

.matters-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-purple);
  box-shadow: 0 5px 20px var(--border-glow-purple);
}

.card-number {
  font-family: var(--font-title);
  font-size: 2.25rem;
  font-weight: 800;
}

.matters-card h4 {
  font-size: 1.05rem;
  line-height: 1.4;
}

.matters-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Videos Grid */
.datarock-videos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.video-card {
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
}

.video-mock-player {
  height: 280px;
  background: linear-gradient(135deg, rgba(15, 18, 30, 0.95), rgba(0, 171, 236, 0.15)), url('assets/hero-pattern.svg');
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  cursor: pointer;
}

.video-overlay-title {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
}

.play-btn-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent-cyan);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(0, 171, 236, 0.4);
  transition: var(--transition-smooth);
}

.video-mock-player:hover .play-btn-circle {
  transform: scale(1.1);
  background: var(--accent-purple);
  box-shadow: 0 0 25px rgba(217, 70, 239, 0.4);
}

.video-overlay-sub {
  position: absolute;
  bottom: 20px;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.video-embed-container {
  height: 280px;
  width: 100%;
}

.video-info-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.video-info-content h4 {
  font-size: 1.25rem;
}

.video-info-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.video-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  font-size: 0.8rem;
  color: var(--text-main);
  list-style: none;
  margin-top: 5px;
}

/* Awards Section */
.datarock-awards-banner {
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  padding: 50px 40px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.datarock-awards-banner h4 {
  font-size: 1.5rem;
}

.datarock-awards-banner p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.awards-badges-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.award-badge-card {
  flex: 1;
  min-width: 250px;
  max-width: 320px;
  padding: 24px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.award-badge-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-cyan);
  box-shadow: 0 5px 20px var(--border-glow-cyan);
}

.award-badge-card .badge-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.award-badge-card h5 {
  font-size: 1.05rem;
}

.award-badge-card .badge-title {
  font-size: 0.85rem;
  color: var(--accent-cyan);
  font-weight: 700;
}

.award-badge-card .badge-issuer {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* CTA Section */
.datarock-cta-section {
  padding: 60px 40px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(0, 171, 236, 0.05) 0%, rgba(217, 70, 239, 0.05) 100%);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.datarock-cta-section h3 {
  font-size: 2.25rem;
}

.cta-subtitle {
  font-size: 1.15rem;
  font-weight: 500;
}

.cta-questions {
  list-style-type: disc;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 10px 0 20px;
  padding-left: 20px;
  text-align: left;
  max-width: 680px;
}

.cta-questions li {
  font-size: 0.95rem;
  line-height: 1.5;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Breakpoints for Cloned Section */
@media (max-width: 1024px) {
  .datarock-use-cases-grid {
    grid-template-columns: 1fr;
  }

  .datarock-why-it-matters-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pane-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .pane-visual {
    order: -1;
  }
}

@media (max-width: 768px) {
  .datarock-why-it-matters-grid {
    grid-template-columns: 1fr;
  }

  .datarock-videos-grid {
    grid-template-columns: 1fr;
  }

  .tabs-header {
    flex-direction: column;
    border-radius: 16px;
    width: 100%;
  }

  .datarock-tab-btn {
    width: 100%;
    text-align: center;
  }

  .datarock-hero-banner .section-title {
    font-size: 2.5rem;
  }

  .datarock-subtitle {
    font-size: 1.35rem;
  }
}

/* ==========================================================================
   YouTube Thumbnail Cover (Lazy Embed)
   ========================================================================== */
.yt-cover-container {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  background: #000;
}

.yt-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.yt-cover-container:hover .yt-thumbnail {
  filter: brightness(0.6);
  transform: scale(1.03);
}

.yt-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: rgba(0, 0, 0, 0.25);
  transition: background 0.3s ease;
}

.yt-cover-container:hover .yt-play-overlay {
  background: rgba(0, 0, 0, 0.4);
}

.yt-cover-container:hover .play-btn-circle {
  transform: scale(1.12);
  background: #ff0000;
  box-shadow: 0 0 28px rgba(255, 0, 0, 0.5);
}

.yt-video-label {
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
  letter-spacing: 0.3px;
  max-width: 260px;
  text-align: center;
  line-height: 1.4;
}

/* ==========================================================================
   Admin Tab Bar (Candidates / Enterprise Leads switcher)
   ========================================================================== */
.admin-tab-bar {
  display: flex;
  gap: 6px;
  padding: 6px;
  border-radius: 14px;
  border: 1px solid var(--border-color);
  background: rgba(0, 0, 0, 0.15);
  width: fit-content;
  margin-bottom: 28px;
}

.admin-tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition-fast);
}

.admin-tab-btn:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.03);
}

.admin-tab-btn.active {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  font-weight: 600;
  border: 1px solid var(--border-color);
}

.leads-count-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  background: var(--accent-cyan);
  color: var(--text-dark);
  min-width: 20px;
  text-align: center;
}

/* ==========================================================================
   Enterprise Lead Detail Modal
   ========================================================================== */
.lead-modal {
  max-width: 780px;
}

.lead-modal-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lead-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lead-detail-section {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.88rem;
}

.lead-detail-section p {
  color: var(--text-muted);
  line-height: 1.5;
}

.lead-detail-section strong {
  color: var(--text-main);
}

.lead-detail-full {
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
}

.lead-status-update {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

@media (max-width: 768px) {

  .lead-detail-grid,
  .recruiter-profile-summary {
    grid-template-columns: 1fr !important;
  }

  .admin-tab-bar {
    width: 100%;
    flex-direction: column;
  }
}

/* ==========================================================================
   Floating Scroll Navigation
   ========================================================================== */
.scroll-nav {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.scroll-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10, 12, 22, 0.85);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  padding: 0;
  outline: none;
}

.scroll-btn:hover {
  background: var(--accent-cyan);
  color: var(--text-dark);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 15px var(--border-glow-cyan);
  transform: translateY(-2px);
}

.scroll-btn:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .scroll-nav {
    bottom: 20px;
    right: 20px;
    gap: 8px;
  }

  .scroll-btn {
    width: 38px;
    height: 38px;
  }

  /* Compact Viewport Container Rules */
  .container {
    padding: 0 16px !important;
  }

  .section-padding {
    padding: 48px 0 !important;
  }

  .hero-container {
    padding: 100px 0 40px !important;
  }

  .nav-menu {
    left: 16px !important;
    right: 16px !important;
    padding: 20px !important;
  }

  /* Core Mobile Alignments & Font Adjustments */
  .section-header {
    text-align: center !important;
    margin-bottom: 30px !important;
  }

  .section-title {
    text-align: center !important;
    font-size: 1.8rem !important;
    line-height: 1.3 !important;
  }

  .section-subtitle {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: 0.92rem !important;
    max-width: 100% !important;
  }

  .badge,
  .section-tag {
    display: inline-block !important;
    margin: 0 auto 10px auto !important;
    text-align: center !important;
  }

  /* Grid Reductions (Forces 1fr and reduces wide gaps) */
  .services-grid,
  .portfolio-grid,
  .included-grid,
  .packages-grid,
  .jobs-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* Services Section Mobile Cleanup */
  .service-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 24px 16px !important;
  }

  .service-icon-box {
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 16px !important;
  }

  .service-bullets {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding-left: 0 !important;
  }

  .service-bullets li {
    justify-content: center !important;
  }

  /* Leadership Card Alignments */
  .leader-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .leader-img-box {
    margin: 0 auto !important;
  }

  /* Quote Calculator & Contact Form Stack */
  .contact-calc-column,
  .contact-form-column {
    padding: 20px 16px !important;
  }

  .calc-checkbox-card {
    justify-content: center !important;
    text-align: center !important;
    padding: 12px 14px !important;
  }

  .contact-info-col {
    text-align: center !important;
    align-items: center !important;
  }

  .contact-info-list {
    align-items: center !important;
    padding-left: 0 !important;
  }

  .contact-info-item {
    justify-content: center !important;
    text-align: center !important;
  }

  /* Careers Portal Search Bar & Card Stack */
  .careers-search-bar {
    flex-direction: column !important;
    gap: 10px !important;
    padding: 10px !important;
    border-radius: 10px !important;
  }

  .search-input-wrap,
  .filter-select-wrap {
    width: 100% !important;
  }

  .filter-select-wrap select {
    width: 100% !important;
  }

  .job-card {
    padding: 20px 16px !important;
    text-align: center !important;
    align-items: center !important;
  }

  .job-header {
    width: 100% !important;
    justify-content: center !important;
    gap: 6px !important;
    flex-wrap: wrap !important;
  }

  .job-meta-info {
    justify-content: center !important;
    gap: 12px !important;
  }

  .job-card-footer {
    width: 100% !important;
    flex-direction: column !important;
    gap: 12px !important;
    text-align: center !important;
  }

  /* Pricing Cards Alignment (Enterprise portal) */
  .included-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 16px !important;
  }

  .included-icon {
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 8px !important;
  }

  .pkg-card {
    text-align: center !important;
    padding: 24px 16px !important;
  }

  .pkg-features {
    padding-left: 0 !important;
  }

  .pkg-features li {
    justify-content: center !important;
  }

  /* Modal Layout Forms Stack */
  .form-row-2 {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .app-modal {
    width: 96% !important;
    max-height: 94vh !important;
    margin: 8px auto !important;
    border-radius: 12px !important;
  }

  .modal-content-body {
    padding: 16px !important;
  }

  .recruiter-profile-summary {
    grid-template-columns: 1fr !important;
    padding: 14px 12px !important;
    gap: 12px !important;
  }

  /* Buttons & Action Improvements */
  .hero-actions .btn,
  .app-form .btn,
  .app-modal .btn,
  .contact-form .btn,
  .site-footer .btn {
    width: 100% !important;
    justify-content: center !important;
  }
}