/* ============================================
   MYRECRUITY — Liquid Glass Edition
   ============================================ */

:root {
  --primary: #00b9b6;
  --primary-dark: #0d5755;
  --primary-light: #ace8df;
  --primary-bg: #dff0ef;
  --accent: #ba4300;
  --accent-light: #e05a1a;
  --teal-mid: #18908e;
  --bg-dark: #0a1a1a;
  --bg-darker: #060f0f;
  --bg-card: rgba(0, 185, 182, 0.03);
  --text: #e0efee;
  --text-muted: #8aaba9;
  --text-bright: #ffffff;
  --glass-bg: rgba(0, 185, 182, 0.04);
  --glass-border: rgba(0, 185, 182, 0.15);
  --glass-hover: rgba(0, 185, 182, 0.08);
  --glass-shine: rgba(172, 232, 223, 0.15);
  --gradient-1: linear-gradient(135deg, #00b9b6, #18908e);
  --gradient-2: linear-gradient(135deg, #ba4300, #e05a1a);
  --gradient-3: linear-gradient(135deg, #00b9b6, #ace8df);
  --shadow-glow: 0 0 60px rgba(0, 185, 182, 0.15);
  --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  overflow-x: clip;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: rgba(0, 185, 182, 0.3);
  color: #ffffff;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
  background: rgba(0, 185, 182, 0.2);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 185, 182, 0.4);
}

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

/* ============================================
   ANIMATED BACKGROUND
   ============================================ */
.bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: blobFloat 20s ease-in-out infinite;
}

.blob-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 185, 182, 0.3), transparent 70%);
  top: -200px;
  right: -200px;
  animation-delay: 0s;
}

.blob-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(13, 87, 85, 0.25), transparent 70%);
  bottom: -150px;
  left: -150px;
  animation-delay: -5s;
  animation-duration: 25s;
}

.blob-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(186, 67, 0, 0.15), transparent 70%);
  top: 50%;
  left: 50%;
  animation-delay: -10s;
  animation-duration: 30s;
}

.blob-4 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(24, 144, 142, 0.2), transparent 70%);
  top: 30%;
  right: 10%;
  animation-delay: -7s;
  animation-duration: 22s;
}

.blob-5 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(172, 232, 223, 0.15), transparent 70%);
  bottom: 30%;
  left: 20%;
  animation-delay: -15s;
  animation-duration: 28s;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(100px, -50px) scale(1.1); }
  50% { transform: translate(-50px, 100px) scale(0.9); }
  75% { transform: translate(50px, 50px) scale(1.05); }
}

/* Particles Canvas */
#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Cursor Glow */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 185, 182, 0.08), transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}

body:hover .cursor-glow {
  opacity: 1;
}

/* ============================================
   GLASS CARD BASE
   ============================================ */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s var(--transition),
              border-color 0.4s var(--transition),
              box-shadow 0.4s var(--transition),
              transform 0.4s var(--transition);
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--glass-shine), transparent);
  transition: left 0.8s var(--transition);
  z-index: 1;
  pointer-events: none;
}

.glass-card:hover::before {
  left: 100%;
}

.glass-card:hover {
  background: var(--glass-hover);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: backdrop-filter 0.4s var(--transition), -webkit-backdrop-filter 0.4s var(--transition);
}

.nav.scrolled {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-bright);
}

.logo-svg {
  flex-shrink: 0;
}

.nav .logo {
  position: relative;
  padding: 0 20px;
}

.nav .logo::before {
  content: '';
  position: absolute;
  top: -16px;
  bottom: -16px;
  left: 0;
  right: 0;
  background: #dff0ef;
  border-radius: 0 0 12px 12px;
  z-index: -1;
}

.logo-img {
  height: 38px;
  width: auto;
  background: transparent;
  transition: opacity 0.3s;
}

/* Always show only the dark/black logo */
.logo-dark { display: block; }
.logo-white { display: none; }

.logo-highlight {
  color: var(--text-bright);
}

.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.5px;
}

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

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-1);
  border-radius: 1px;
  transition: width 0.3s var(--transition);
}

.nav-link:hover {
  color: var(--text-bright);
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--gradient-1);
  color: var(--bg-dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s var(--transition);
  box-shadow: 0 4px 20px rgba(0, 185, 182, 0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 185, 182, 0.4);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 160px 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0, 185, 182, 0.1);
  border: 1px solid rgba(0, 185, 182, 0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 28px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 185, 182, 0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(0, 185, 182, 0); }
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(34px, 4.2vw, 50px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -2px;
  margin-bottom: 24px;
  color: var(--text-bright);
}

.title-line {
  display: block;
}

.title-gradient {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-accent {
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: var(--gradient-1);
}

.bg-gradient-accent {
  background: var(--gradient-2);
}

.bg-gradient-primary-light {
  background: var(--gradient-3);
}

/* Static glass card (no hover effects) */
.glass-card-static {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

/* Glass input fields */
.glass-input {
  background: rgba(0, 185, 182, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 185, 182, 0.15);
  border-radius: 14px;
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s var(--transition);
}

.glass-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 185, 182, 0.1);
  background: rgba(0, 185, 182, 0.06);
}

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

.hero-subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-1);
  color: var(--bg-dark);
  box-shadow: 0 4px 30px rgba(0, 185, 182, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(0, 185, 182, 0.45);
}

.btn-glow::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  background: var(--gradient-1);
  z-index: -1;
  filter: blur(15px);
  opacity: 0.4;
  transition: opacity 0.4s;
}

.btn-glow:hover::after {
  opacity: 0.7;
}

.btn-glow-accent::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  background: var(--gradient-2);
  z-index: -1;
  filter: blur(15px);
  opacity: 0.4;
  transition: opacity 0.4s;
}

.btn-glow-accent:hover::after {
  opacity: 0.7;
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: btnShine 3s ease-in-out infinite;
}

@keyframes btnShine {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}

.btn-glass {
  background: var(--glass-bg);
  color: var(--text);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background: rgba(0, 185, 182, 0.15);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 185, 182, 0.15);
}

.btn-large {
  padding: 18px 36px;
  font-size: 17px;
  border-radius: 16px;
}

/* Hero Metrics */
.hero-metrics {
  display: flex;
  align-items: center;
  gap: 32px;
}

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

.metric-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--text-bright);
  display: inline;
}

.metric-plus {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
}

.metric-label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.metric-divider {
  width: 1px;
  height: 40px;
  background: var(--glass-border);
}

/* Hero Visual */
.hero-visual {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ============================================
   HERO DASHBOARD CREATIVE
   ============================================ */
.hero-dashboard {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.hero-glass-card {
  width: 100%;
  border-radius: 24px;
  background: var(--glass-bg);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  animation: floatCard 6s ease-in-out infinite;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(1deg); }
}

.glass-card-inner {
  padding: 24px;
}

/* Dashboard Header (macOS-style) */
.dash-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 16px;
}
.dash-dots {
  display: flex;
  gap: 6px;
}
.dash-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.dash-dots span:nth-child(1) { background: #ff5f57; }
.dash-dots span:nth-child(2) { background: #ffbd2e; }
.dash-dots span:nth-child(3) { background: #28ca42; }
.dash-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}
.dash-live {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #28ca42;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* KPI Row */
.dash-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.dash-kpi {
  text-align: center;
  padding: 12px 8px;
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
}
.dash-kpi-val {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.dash-kpi-label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}
.dash-kpi-trend {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 10px;
  font-weight: 700;
  margin-top: 6px;
  padding: 2px 8px;
  border-radius: 20px;
}
.dash-kpi-trend.up {
  color: #28ca42;
  background: rgba(40,202,66,0.1);
}
.dash-kpi-trend.up svg { stroke: #28ca42; }

/* Mini Line Chart */
.dash-chart {
  margin-bottom: 16px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
}
.dash-chart-svg {
  width: 100%;
  height: 60px;
  display: block;
}
.chart-line {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: chart-draw 2s cubic-bezier(0.4,0,0.2,1) 0.5s forwards;
}
.chart-area {
  opacity: 0;
  animation: fade-in 1s ease 1.5s forwards;
}
.chart-dot, .chart-dot-glow {
  opacity: 0;
  animation: fade-in 0.5s ease 2s forwards;
}
.chart-dot-glow {
  animation: fade-in 0.5s ease 2s forwards, pulse-dot 2s ease-in-out 2.5s infinite;
}
@keyframes chart-draw {
  to { stroke-dashoffset: 0; }
}
@keyframes fade-in {
  to { opacity: 1; }
}
.dash-chart-label {
  font-size: 10px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 8px;
  letter-spacing: 0.5px;
}

/* Candidate Mini-List */
.dash-candidates {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dash-candidate {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  animation: slide-in-right 0.6s ease both;
}
.dash-candidate:nth-child(1) { animation-delay: 0.6s; }
.dash-candidate:nth-child(2) { animation-delay: 0.85s; }
.dash-candidate:nth-child(3) { animation-delay: 1.1s; }
@keyframes slide-in-right {
  from { transform: translateX(30px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
.dash-candidate:hover {
  background: rgba(0,185,182,0.06);
  border-color: rgba(0,185,182,0.15);
}
.dash-candidate-avatar {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.dash-candidate-avatar.c1 { background: linear-gradient(135deg, #00b9b6, #18908e); }
.dash-candidate-avatar.c2 { background: linear-gradient(135deg, #ba4300, #e05a1a); }
.dash-candidate-avatar.c3 { background: linear-gradient(135deg, #0d5755, #00b9b6); }
.dash-candidate-info {
  flex: 1;
  min-width: 0;
}
.dash-candidate-name {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-bright);
}
.dash-candidate-role {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
}
.dash-match {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--primary);
  flex-shrink: 0;
}

/* Hero Orbit Ring */
.hero-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 520px;
  height: 520px;
  pointer-events: none;
  z-index: -1;
}
.hero-orbit-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(0,185,182,0.06);
  animation: orbit-ring 40s linear infinite;
}
.hero-orbit-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0,185,182,0.4);
  box-shadow: 0 0 12px rgba(0,185,182,0.3);
}
.hero-orbit-dot:nth-child(1) { top: 0; left: 50%; margin-left: -3px; }
.hero-orbit-dot:nth-child(2) { top: 50%; right: 0; margin-top: -3px; }
.hero-orbit-dot:nth-child(3) { bottom: 0; left: 30%; margin-left: -3px; }

/* Floating Badges */
.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: rgba(10, 26, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-bright);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.floating-badge svg {
  color: var(--primary);
}

.badge-top-right {
  top: -24px;
  right: -20px;
  animation: floatBadge 4s ease-in-out infinite;
}

.badge-bottom-left {
  bottom: -10px;
  left: -30px;
  animation: floatBadge 5s ease-in-out infinite reverse;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.badge-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse-dot 1.5s ease-in-out infinite;
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.1% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   TRUSTED SECTION
   ============================================ */
.trusted {
  position: relative;
  z-index: 2;
  padding: 60px 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.trusted-label {
  text-align: center;
  font-size: 13px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 32px;
}

.trusted-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  border-radius: 12px;
  background: #dff0ef;
  cursor: default;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--transition), box-shadow 0.4s var(--transition);
}

.logo-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transition: left 0.8s var(--transition);
}

.logo-item:hover::before {
  left: 100%;
}

.logo-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 185, 182, 0.15);
}

.trusted-logo-img {
  height: 48px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  transition: transform 0.4s var(--transition);
}

.logo-item:hover .trusted-logo-img {
  transform: scale(1.05);
}

/* Logo item fly-in animation (staggered like industry cards) */
.logo-item.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px) scale(0.92);
  transition: opacity 0.6s var(--transition), transform 0.6s var(--transition);
}

.logo-item.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.logo-item.animate-on-scroll:nth-child(1)  { transition-delay: 0.00s; }
.logo-item.animate-on-scroll:nth-child(2)  { transition-delay: 0.06s; }
.logo-item.animate-on-scroll:nth-child(3)  { transition-delay: 0.12s; }
.logo-item.animate-on-scroll:nth-child(4)  { transition-delay: 0.18s; }
.logo-item.animate-on-scroll:nth-child(5)  { transition-delay: 0.24s; }
.logo-item.animate-on-scroll:nth-child(6)  { transition-delay: 0.30s; }
.logo-item.animate-on-scroll:nth-child(7)  { transition-delay: 0.36s; }
.logo-item.animate-on-scroll:nth-child(8)  { transition-delay: 0.42s; }
.logo-item.animate-on-scroll:nth-child(9)  { transition-delay: 0.48s; }
.logo-item.animate-on-scroll:nth-child(10) { transition-delay: 0.54s; }

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(0, 185, 182, 0.1);
  border: 1px solid rgba(0, 185, 182, 0.2);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  color: var(--text-bright);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
}

/* ============================================
   RESULTS SECTION
   ============================================ */
.results {
  position: relative;
  z-index: 2;
  padding: 120px 0;
}

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

.result-card {
  padding: 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.result-card.featured {
  background: rgba(186, 67, 0, 0.08);
  border-color: rgba(186, 67, 0, 0.2);
  transform: scale(1.05);
}

.result-card.featured:hover {
  transform: scale(1.05) translateY(-2px);
}

.featured-tag {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: var(--gradient-2);
  color: white;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0 0 8px 8px;
}

.result-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(0, 185, 182, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary);
  transition: background 0.3s var(--transition), box-shadow 0.3s var(--transition);
}

.result-card:hover .result-icon {
  background: rgba(0, 185, 182, 0.2);
  box-shadow: 0 0 25px rgba(0, 185, 182, 0.15);
}

.result-card.featured .result-icon {
  background: rgba(186, 67, 0, 0.15);
  color: var(--accent-light);
}

.result-card.featured .result-number {
  background: linear-gradient(135deg, #ba4300, #e05a1a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.result-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 800;
  background: linear-gradient(135deg, #00b9b6, #00e6e2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.result-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.result-desc {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.result-bar {
  height: 4px;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  overflow: hidden;
}

.result-bar-fill {
  height: 100%;
  width: 0;
  background: var(--gradient-1);
  border-radius: 2px;
  transition: width 1.5s var(--transition);
}

.result-card.featured .result-bar-fill {
  background: var(--gradient-2);
}

.result-card.in-view .result-bar-fill {
  width: var(--width);
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process {
  position: relative;
  z-index: 2;
  padding: 120px 0;
}

.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.05);
}

.timeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--gradient-1);
  transition: height 0.1s linear;
}

.process-step {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
  position: relative;
}

.step-marker {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 2px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--text-muted);
  position: relative;
  z-index: 2;
  transition: all 0.4s var(--transition);
}

.process-step.in-view .step-marker {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 30px rgba(0, 185, 182, 0.2);
}

.marker-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(0, 185, 182, 0.2);
  opacity: 0;
  transition: opacity 0.4s;
}

.process-step.in-view .marker-ring {
  opacity: 1;
  animation: ringPulse 2s ease-in-out infinite;
}

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0; }
}

.step-content {
  flex: 1;
  padding: 32px;
}

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

.step-header h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-bright);
}

.step-platforms {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.platform-badge {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(0, 185, 182, 0.1);
  color: var(--primary);
  border: 1px solid rgba(0, 185, 182, 0.15);
}

.step-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(186, 67, 0, 0.1);
  color: var(--accent-light);
  border: 1px solid rgba(186, 67, 0, 0.15);
}

.step-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
}

/* Step Visuals */
.step-visual {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.reach-animation {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto;
}

.reach-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 185, 182, 0.2);
  animation: reachPulse 3s ease-out infinite;
}

.reach-circle.c1 {
  inset: 20%;
  animation-delay: 0s;
}

.reach-circle.c2 {
  inset: 5%;
  animation-delay: 0.5s;
}

.reach-circle.c3 {
  inset: -10%;
  animation-delay: 1s;
}

@keyframes reachPulse {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

.reach-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: rgba(0, 185, 182, 0.1);
  border-radius: 50%;
  z-index: 2;
}

/* Social Platform Icons on Reach Orbit */
.reach-platforms {
  position: absolute;
  inset: -25%;
  animation: orbit-ring 12s linear infinite;
}
.reach-platform-icon {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(0,185,182,0.08);
  border: 1px solid rgba(0,185,182,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  animation: orbit-counter-rotate 12s linear infinite;
}
.reach-platform-icon.rp1 { top: 0; left: 50%; margin-left: -14px; }
.reach-platform-icon.rp2 { top: 50%; right: 0; margin-top: -14px; }
.reach-platform-icon.rp3 { bottom: 0; left: 50%; margin-left: -14px; }
.reach-platform-icon.rp4 { top: 50%; left: 0; margin-top: -14px; }
@keyframes orbit-counter-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

/* Phone Mockup — Upgraded */
.phone-mockup {
  width: 200px;
  height: 400px;
  margin: 0 auto;
  border-radius: 32px;
  border: 3px solid rgba(0,185,182,0.18);
  padding: 0;
  background: rgba(10,26,26,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 40px rgba(0,185,182,0.08), inset 0 1px 0 rgba(255,255,255,0.06);
}
.phone-mockup::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0,185,182,0.3), transparent);
  z-index: 3;
}
.phone-notch {
  width: 60px;
  height: 16px;
  margin: 0 auto;
  background: var(--bg-dark);
  border-radius: 0 0 12px 12px;
  position: relative;
  z-index: 2;
}
.phone-notch::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,185,182,0.25);
  border: 1px solid rgba(0,185,182,0.15);
}
.phone-screen {
  display: flex;
  flex-direction: column;
  gap: 0;
  height: calc(100% - 16px);
  padding: 0 14px 14px;
}
.phone-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 2px 6px;
  font-size: 9px;
  color: var(--text-muted);
}
.phone-status-time {
  font-weight: 600;
  font-size: 9px;
  color: var(--text-bright);
}
.phone-status-icons {
  display: flex;
  gap: 4px;
  align-items: center;
}
.phone-status-icons svg {
  stroke: var(--text-muted);
  opacity: 0.6;
}
.phone-brand-header {
  padding: 6px 0 8px;
  border-bottom: 1px solid rgba(0,185,182,0.1);
  margin-bottom: 10px;
  text-align: center;
}
.phone-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 4px;
}
.phone-job-badge {
  font-size: 8px;
  color: var(--text-muted);
  margin-top: 2px;
  padding: 2px 6px;
  background: rgba(0,185,182,0.06);
  border-radius: 4px;
  display: inline-block;
}
.phone-progress {
  margin-bottom: 8px;
}
.phone-progress-bar {
  height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 4px;
}
.phone-progress-fill {
  width: 33%;
  height: 100%;
  background: var(--gradient-1);
  border-radius: 3px;
  animation: progress-pulse 2s ease-in-out infinite;
}
@keyframes progress-pulse {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}
.phone-progress-steps {
  display: flex;
  justify-content: space-between;
}
.phone-progress-step {
  font-size: 6px;
  color: var(--text-muted);
  opacity: 0.5;
}
.phone-progress-step.active {
  color: var(--primary);
  opacity: 1;
  font-weight: 600;
}
.phone-form {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}
.phone-input-label {
  font-size: 7px;
  color: var(--text-muted);
  margin-bottom: 1px;
  font-weight: 500;
}
.phone-input {
  height: 20px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  transition: border-color 0.2s ease;
  display: flex;
  align-items: center;
  padding: 0 6px;
  box-sizing: border-box;
}
.phone-input.active {
  border-color: rgba(0,185,182,0.4);
  background: rgba(0,185,182,0.03);
}
.phone-input.filled {
  border-color: rgba(0,185,182,0.15);
}
.phone-input-row {
  display: flex;
  gap: 6px;
}
.phone-input-half {
  flex: 1;
}
.phone-input-cursor {
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  width: 1px;
  height: 10px;
  background: var(--primary);
  animation: cursor-blink 1s ease-in-out infinite;
}
@keyframes cursor-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
.phone-btn {
  height: 26px;
  border-radius: 8px;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 6px;
  font-size: 8px;
  font-weight: 700;
  color: var(--bg-dark);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,185,182,0.25);
  letter-spacing: 0.3px;
}
.phone-btn svg {
  stroke: var(--bg-dark);
}

@keyframes inputPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

/* Flow Diagram */
.flow-diagram {
  display: flex;
  align-items: center;
  gap: 12px;
}

.flow-node {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 185, 182, 0.1);
  border: 1px solid rgba(0, 185, 182, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.flow-arrow {
  width: 24px;
  height: 2px;
  background: var(--gradient-1);
  position: relative;
}

.flow-arrow::after {
  content: '';
  position: absolute;
  right: -2px;
  top: -3px;
  width: 0;
  height: 0;
  border-left: 6px solid var(--primary);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

/* ============================================
   INDUSTRIES SECTION
   ============================================ */
.industries {
  position: relative;
  z-index: 2;
  padding: 120px 0;
}

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

/* Industry Flip Cards */
.industry-flip {
  perspective: 800px;
  cursor: pointer;
}

.industry-flip-inner {
  position: relative;
  width: 100%;
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
}

.industry-flip:hover .industry-flip-inner {
  transform: rotateY(180deg);
}

.industry-front,
.industry-back {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  pointer-events: none;
}

.industry-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.industry-back-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.industry-back-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.industry-back-label {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
}

.industry-card {
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.4s var(--transition), border-color 0.4s var(--transition);
  gap: 14px;
  min-height: 120px;
  cursor: default;
}

.industry-icon {
  color: var(--primary);
  opacity: 0.9;
  transition: all 0.4s;
}

.industry-card span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  position: relative;
  z-index: 2;
  padding: 120px 0;
}

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

.about-card {
  padding: 40px;
  text-align: center;
}

.about-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-gradient {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--gradient-1);
  opacity: 0.4;
  animation: avatarPulse 3s ease-in-out infinite;
}

@keyframes avatarPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.avatar-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(0, 185, 182, 0.3);
}

.avatar-initials {
  position: relative;
  z-index: 1;
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--text-bright);
}

.about-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 4px;
}

.about-role {
  font-size: 14px;
  color: var(--primary);
  margin-bottom: 24px;
}

.about-quote {
  position: relative;
  padding: 16px 0 0;
  background: none;
  border-radius: 0;
  border: none;
  border-top: 1px solid rgba(0, 185, 182, 0.1);
  margin-top: 16px;
}

.about-quote svg {
  position: absolute;
  top: 12px;
  left: 16px;
  color: var(--primary);
}

.about-quote p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  font-style: italic;
}

.about-content .section-tag {
  text-align: left;
}

.about-content .section-title {
  text-align: left;
}

.about-content > p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 32px;
}

.guarantee-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.guarantee-check {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(0, 185, 182, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: background 0.3s var(--transition), box-shadow 0.3s var(--transition);
}

.guarantee-item:hover .guarantee-check {
  background: rgba(0, 185, 182, 0.2);
  box-shadow: 0 0 20px rgba(0, 185, 182, 0.12);
}

.guarantee-item strong {
  display: block;
  font-size: 15px;
  color: var(--text-bright);
  margin-bottom: 2px;
}

.guarantee-item p {
  font-size: 13px;
  color: var(--text);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
  position: relative;
  z-index: 2;
  padding: 120px 0;
}

.faq-list {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-bright);
  text-align: left;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--text-bright);
}

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(0, 185, 182, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background 0.3s var(--transition);
}

.faq-question:hover .faq-icon {
  background: rgba(0, 185, 182, 0.2);
}

.faq-icon span {
  position: absolute;
  background: var(--text-muted);
  border-radius: 1px;
  transition: all 0.3s var(--transition);
}

.faq-icon span:first-child {
  width: 14px;
  height: 2px;
  top: 15px;
  left: 9px;
}

.faq-icon span:last-child {
  width: 2px;
  height: 14px;
  top: 9px;
  left: 15px;
}

.faq-item.active .faq-icon span:last-child {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-item.active .faq-icon span:first-child {
  background: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--transition), padding 0.5s var(--transition);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 28px 24px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  border-top: 1px solid rgba(0, 185, 182, 0.08);
  padding-top: 16px;
  margin: 0 28px;
  padding-left: 0;
  padding-right: 0;
}

/* ============================================
   CTA FINAL SECTION
   ============================================ */
.cta-final {
  position: relative;
  z-index: 2;
  padding: 120px 0;
}

.cta-card {
  text-align: center;
  padding: 80px 40px;
  position: relative;
  border-radius: 24px;
}

/* Layered glow effects */
.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 185, 182, 0.15), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.cta-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(0, 185, 182, 0.06) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 0 24px 0 0;
}

.cta-card .section-title {
  position: relative;
  z-index: 1;
}

.cta-card p {
  position: relative;
  z-index: 1;
  font-size: 16px;
  color: var(--text);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.cta-card .btn {
  position: relative;
  z-index: 1;
}

.cta-note {
  font-size: 13px !important;
  color: var(--text-muted) !important;
  margin-top: 16px !important;
  margin-bottom: 0 !important;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  position: relative;
  z-index: 2;
  padding: 80px 0 40px;
  border-top: 1px solid var(--glass-border);
}

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

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.7;
}

.footer-links h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.3s;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-social h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 16px;
}

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

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s var(--transition);
}

.social-link:hover {
  background: rgba(0, 185, 182, 0.1);
  border-color: rgba(0, 185, 182, 0.2);
  color: var(--primary);
  transform: translateY(-2px);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--glass-border);
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll:nth-child(2) { transition-delay: 0.08s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.16s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.24s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.32s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.40s; }
.animate-on-scroll:nth-child(7) { transition-delay: 0.48s; }
.animate-on-scroll:nth-child(8) { transition-delay: 0.56s; }

/* FAQ items: faster stagger in 2-col grid */
.faq-item.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition-duration: 0.5s;
}
.faq-item.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}
.faq-item.animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.faq-item.animate-on-scroll:nth-child(2) { transition-delay: 0.06s; }
.faq-item.animate-on-scroll:nth-child(3) { transition-delay: 0.12s; }
.faq-item.animate-on-scroll:nth-child(4) { transition-delay: 0.18s; }
.faq-item.animate-on-scroll:nth-child(5) { transition-delay: 0.24s; }
.faq-item.animate-on-scroll:nth-child(6) { transition-delay: 0.30s; }
.faq-item.animate-on-scroll:nth-child(7) { transition-delay: 0.36s; }
.faq-item.animate-on-scroll:nth-child(8) { transition-delay: 0.42s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 100px;
  }

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

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

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

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

  .results-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .result-card.featured {
    transform: none;
  }

  .result-card.featured:hover {
    transform: translateY(-2px);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-content .section-tag,
  .about-content .section-title {
    text-align: center;
  }

  .about-content > p {
    text-align: center;
  }

  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 768px) {
  /* Responsive section padding */
  .results,
  .process,
  .industries,
  .about,
  .guarantee,
  .faq,
  .cta-final {
    padding: 48px 0;
  }

  /* Mobile: dark nav background */
  .nav {
    background: var(--bg-dark);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
  }

  .nav .logo::before {
    display: none;
  }

  .nav .logo-dark {
    display: none;
  }

  .nav .logo-white {
    display: block;
  }

  .nav-toggle span {
    background: var(--text);
  }

  /* Hero mobile polish — vertically center above-fold content */
  .hero {
    padding: 0 20px 0;
    min-height: auto;
  }

  .hero .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: calc(50svh - 230px);
  }

  .hero-title {
    letter-spacing: -1px;
    margin-bottom: 20px;
  }

  .hero-subtitle {
    font-size: clamp(15px, 2.5vw, 18px);
    margin-bottom: 28px;
  }

  .hero-actions {
    margin-bottom: 20px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-scroll-indicator {
    display: none;
  }

  /* Section header tighter on mobile */
  .section-header {
    margin-bottom: 32px;
  }

  .section-title {
    letter-spacing: -1px;
  }

  .section-desc {
    font-size: 15px;
  }

  /* Trusted logos — tighter on mobile */
  .trusted {
    padding: 40px 0;
  }

  .trusted-label {
    font-size: 12px;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    color: var(--text);
  }

  .trusted-logos {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 10px;
  }

  .logo-item {
    width: 100%;
    height: 56px;
    border-radius: 10px;
  }

  .trusted-logo-img {
    height: 32px;
    max-width: 90px;
  }

  /* Nav links dropdown */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 20px 24px 24px;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--glass-border);
    gap: 8px;
  }

  .nav-links .nav-link {
    color: var(--text-muted);
    font-size: 16px;
    padding: 12px 0;
  }

  .nav-links .nav-link::after {
    display: none;
  }

  .nav-links .nav-link:hover {
    color: var(--text-bright);
  }

  .nav-links .nav-cta {
    background: var(--gradient-1);
    color: var(--bg-dark);
    border-color: var(--primary);
    justify-content: center;
    margin-top: 8px;
    padding: 14px 24px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
    padding: 12px;
    margin: -12px;
  }

  /* Process section */
  .process-sticky__indicators {
    gap: 8px;
  }

  .indicator-label {
    display: none;
  }

  .process-sticky__card {
    padding: 28px 20px;
  }

  .step-header {
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }

  /* Industries */
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Hero metrics */
  .hero-metrics {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
  }

  .metric-item {
    flex: 1;
    min-width: 0;
  }

  .metric-number {
    font-size: 24px;
  }

  .metric-plus {
    font-size: 24px;
  }

  .metric-label {
    font-size: 11px;
  }

  .metric-divider {
    width: 1px;
    height: 32px;
  }

  .hero-visual {
    display: none;
  }

  /* Result cards */
  .result-card {
    padding: 28px 24px;
  }

  .result-number {
    font-size: 36px;
  }

  .result-desc {
    font-size: 13px;
  }

  /* About / Guarantee */
  .about-card {
    padding: 28px 24px;
  }

  .guarantee-item strong {
    font-size: 14px;
  }

  /* FAQ mobile — single column */
  .faq-list {
    grid-template-columns: 1fr;
  }

  .faq-question {
    padding: 20px;
    font-size: 14px;
  }

  .faq-answer p {
    padding: 0 20px 20px;
    margin: 0 20px;
    font-size: 13px;
  }

  /* CTA */
  .cta-card {
    padding: 48px 24px;
  }

  .cta-card .btn-large {
    padding: 16px 28px;
    font-size: 15px;
  }

  /* Footer */
  .footer {
    padding: 48px 0 24px;
  }

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

  .footer-brand p {
    font-size: 13px;
  }

  .footer-links a {
    padding: 6px 0;
  }

  .social-link {
    width: 44px;
    height: 44px;
  }

  /* Hide nav CTA on mobile */
  .nav-cta-desktop {
    display: none !important;
  }

  /* Center last trusted logo (10th in 3-col grid) */
  .trusted-logos .logo-item:last-child {
    grid-column: 2;
  }

  /* Hero: KPIs — compact spacing below buttons */
  .hero-metrics {
    margin-top: 16px;
    padding-bottom: 40px;
  }

  /* Process section: consistent 60px padding to match other sections */
  .process-sticky {
    padding: 60px 0;
  }

  /* Process indicator chips: equal size */
  .process-sticky__indicator {
    flex: 1;
    justify-content: center;
    text-align: center;
  }

  /* Process cards: hide large number on mobile (visible in chips above) */
  .sticky-card__number {
    display: none;
  }

  /* Guarantee section: center everything on mobile */
  .about-content {
    text-align: center;
  }

  .about-content .guarantee-features {
    text-align: left;
  }

  /* Section separators — mobile only */
  .trusted,
  .results,
  .process,
  .industries,
  .about,
  .faq,
  .cta-final {
    border-top: 1px solid rgba(0, 185, 182, 0.08);
  }

  /* Hero description text size (match smr.html) */
  .page-hero .section-desc,
  .hero-subtitle,
  .case-hero .hero-subtitle,
  .hero-about .hero-quote {
    font-size: clamp(15px, 2.2vw, 18px);
  }
}

@media (max-width: 480px) {
  /* Tighter section padding on small screens */
  .results,
  .process,
  .industries,
  .about,
  .guarantee,
  .faq,
  .cta-final {
    padding: 60px 0;
  }

  .container {
    padding: 0 20px;
  }

  /* Hero: keep horizontal padding on small screens */
  .hero {
    padding: 0 16px 0;
  }

  .hero-badge {
    font-size: 12px;
    padding: 6px 14px;
    margin-bottom: 20px;
  }

  .hero-title {
    font-size: clamp(28px, 8vw, 34px);
    letter-spacing: -0.5px;
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: clamp(15px, 3.5vw, 17px);
    margin-bottom: 24px;
  }

  .hero-actions {
    margin-bottom: 32px;
    gap: 12px;
  }

  .hero-actions .btn {
    padding: 14px 24px;
    font-size: 14px;
  }

  .hero-metrics {
    gap: 0;
  }

  .metric-number {
    font-size: 20px;
  }

  .metric-plus {
    font-size: 20px;
  }

  .metric-label {
    font-size: 10px;
  }

  .metric-divider {
    height: 24px;
  }

  /* Trusted — keep consistent with other sections */
  .trusted {
    padding: 60px 0;
  }

  .trusted-logos {
    gap: 10px 8px;
  }

  .logo-item {
    height: 48px;
    border-radius: 8px;
  }

  .trusted-logo-img {
    height: 26px;
    max-width: 80px;
  }

  /* Section headers */
  .section-header {
    margin-bottom: 32px;
  }

  .section-tag {
    font-size: 11px;
    padding: 5px 14px;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
  }

  /* Results */
  .result-card {
    padding: 24px 20px;
  }

  .result-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    margin-bottom: 16px;
  }

  .result-icon svg {
    width: 24px;
    height: 24px;
  }

  .result-number {
    font-size: 32px;
  }

  .result-label {
    font-size: 14px;
  }

  /* Industries */
  .industries-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .industry-card {
    padding: 20px 12px;
  }

  .industry-icon svg {
    width: 28px;
    height: 28px;
  }

  .industry-card span {
    font-size: 12px;
  }

  /* About */
  .about-card {
    padding: 24px 20px;
  }

  .about-card h3 {
    font-size: 18px;
  }

  .guarantee-check {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .guarantee-check svg {
    width: 16px;
    height: 16px;
  }

  /* FAQ */
  .faq-question {
    padding: 16px;
    font-size: 13px;
    gap: 12px;
  }

  .faq-answer p {
    padding: 0 16px 16px;
    margin: 0 16px;
    font-size: 13px;
  }

  /* CTA */
  .cta-card {
    padding: 40px 20px;
    border-radius: 20px;
  }

  .cta-card p {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .cta-card .btn-large {
    padding: 14px 24px;
    font-size: 14px;
    border-radius: 14px;
  }

  .cta-note {
    font-size: 12px !important;
  }

  /* Footer */
  .footer {
    padding: 48px 0 24px;
  }

  .footer-grid {
    gap: 28px;
  }

  .footer-brand .logo-img {
    height: 32px;
  }

  .footer-bottom {
    padding-top: 24px;
  }

  .footer-bottom p {
    font-size: 12px;
  }

  /* Process sticky */
  .step-platforms {
    justify-content: center;
  }

  /* Subpage grids */
  .pricing-grid,
  .case-studies-grid,
  .team-grid,
  .locations-grid {
    grid-template-columns: 1fr !important;
  }

  .job-filters {
    flex-direction: column;
  }

  /* Page hero for subpages */
  .page-hero {
    padding: 120px 0 60px;
  }
}

/* ============================================
   SUBPAGE: HERO (shared)
   ============================================ */
.page-hero {
  position: relative;
  z-index: 2;
  padding: 160px 0 80px;
  text-align: center;
}

.page-hero .section-title {
  margin-bottom: 16px;
}

.page-hero .section-desc {
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   SUBPAGE: PRICING
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  padding: 36px;
  text-align: center;
}

.pricing-card.featured {
  background: rgba(0, 185, 182, 0.06);
  border-color: rgba(0, 185, 182, 0.2);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-2px);
}

.pricing-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 8px;
}

.pricing-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-price span {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-period {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pricing-features li svg {
  flex-shrink: 0;
  color: var(--primary);
}

.pricing-features li strong {
  color: var(--text);
}

/* ============================================
   SUBPAGE: CASE STUDIES
   ============================================ */
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.case-card {
  padding: 32px;
}

.case-company {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.case-position {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 12px;
  line-height: 1.3;
}

.case-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.case-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(0, 185, 182, 0.1);
  color: var(--primary);
  border: 1px solid rgba(0, 185, 182, 0.15);
  margin-bottom: 16px;
}

.case-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: gap 0.3s var(--transition);
}

.case-link:hover {
  gap: 10px;
}

/* ============================================
   SUBPAGE: JOBS
   ============================================ */
.job-filters {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.job-filter {
  padding: 12px 20px;
  border-radius: 12px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  min-width: 180px;
  backdrop-filter: blur(10px);
  transition: all 0.3s var(--transition);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238aaba9' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.job-filter:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(0, 185, 182, 0.15);
}

.job-filter option {
  background: var(--bg-dark);
  color: var(--text);
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.job-card {
  padding: 28px;
}

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

.job-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-bright);
  line-height: 1.3;
}

.job-company {
  font-size: 14px;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 8px;
}

.job-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.job-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.job-badge {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(0, 185, 182, 0.1);
  color: var(--primary);
  border: 1px solid rgba(0, 185, 182, 0.15);
}

.job-badge.location {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  border-color: rgba(255, 255, 255, 0.08);
}

.job-date {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.job-apply {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: gap 0.3s;
}

.job-apply:hover {
  gap: 10px;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.pagination a, .pagination span {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s var(--transition);
}

.pagination a:hover, .pagination .active {
  background: rgba(0, 185, 182, 0.1);
  border-color: rgba(0, 185, 182, 0.3);
  color: var(--primary);
}

/* ============================================
   SUBPAGE: ABOUT / TEAM
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card {
  padding: 32px;
  text-align: center;
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-1);
  opacity: 0.85;
}

.team-avatar span {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--bg-dark);
}

.team-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 4px;
}

.team-role {
  font-size: 13px;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 12px;
}

.team-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

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

.location-card {
  padding: 28px;
  text-align: center;
}

.location-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(0, 185, 182, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--primary);
}

.location-city {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 4px;
}

.location-label {
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.location-address {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   SUBPAGE: LEGAL
   ============================================ */
.legal-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 140px 24px 80px;
}

.legal-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  color: var(--text-bright);
  margin-bottom: 40px;
}

.legal-content h1 .text-gradient {
  display: block;
}

.legal-card {
  padding: 48px;
}

.legal-card h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-bright);
  margin-top: 40px;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--glass-border);
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card h2 .section-number {
  color: var(--primary);
  margin-right: 8px;
}

.legal-card p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.legal-card strong {
  color: var(--text);
}

.legal-card ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 16px;
}

.legal-card ul li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  padding-left: 24px;
  position: relative;
  margin-bottom: 6px;
}

.legal-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.5;
}

.legal-card a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s;
}

.legal-card a:hover {
  color: var(--text-bright);
}

.legal-info-grid {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 8px 24px;
  margin: 16px 0;
}

.legal-info-grid dt {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.legal-info-grid dd {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

.legal-date {
  margin-top: 40px;
  font-size: 13px;
  color: var(--text-muted);
  opacity: 0.7;
}

/* ============================================
   SUBPAGE RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .pricing-card.featured {
    transform: none;
  }

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

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

  .locations-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .case-studies-grid,
  .jobs-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .legal-card {
    padding: 28px 20px;
  }

  .legal-content {
    padding-top: 120px;
  }

  .legal-info-grid {
    grid-template-columns: 1fr;
    gap: 4px 0;
  }

  .legal-info-grid dt {
    margin-top: 12px;
  }
}

/* ============================================
   INDUSTRY CARD FLY-IN ANIMATION
   ============================================ */
.industry-flip.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px) scale(0.85) rotate(-2deg);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}

.industry-flip.animate-on-scroll.in-view {
  opacity: 1;
  transform: none;
}

.industry-flip.animate-on-scroll:nth-child(1) { transition-delay: 0.0s; }
.industry-flip.animate-on-scroll:nth-child(2) { transition-delay: 0.06s; }
.industry-flip.animate-on-scroll:nth-child(3) { transition-delay: 0.12s; }
.industry-flip.animate-on-scroll:nth-child(4) { transition-delay: 0.18s; }
.industry-flip.animate-on-scroll:nth-child(5) { transition-delay: 0.24s; }
.industry-flip.animate-on-scroll:nth-child(6) { transition-delay: 0.30s; }
.industry-flip.animate-on-scroll:nth-child(7) { transition-delay: 0.36s; }
.industry-flip.animate-on-scroll:nth-child(8) { transition-delay: 0.42s; }
.industry-flip.animate-on-scroll:nth-child(9) { transition-delay: 0.48s; }
.industry-flip.animate-on-scroll:nth-child(10) { transition-delay: 0.54s; }
.industry-flip.animate-on-scroll:nth-child(11) { transition-delay: 0.60s; }
.industry-flip.animate-on-scroll:nth-child(12) { transition-delay: 0.66s; }

/* ============================================
   PROCESS SECTION — STICKY CARD SWAP
   ============================================ */
.process-sticky {
  position: relative;
  z-index: 2;
}

.process-sticky__scroll-area {
  height: 250vh;
  position: relative;
}

.process-sticky__viewport {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.process-sticky__viewport .container {
  width: 100%;
}

.process-sticky__viewport .section-header {
  margin-bottom: 40px;
}

/* Step Indicators */
.process-sticky__indicators {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.process-sticky__indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1px solid var(--glass-border);
  border-radius: 40px;
  padding: 8px 20px;
  cursor: pointer;
  transition: all 0.4s var(--transition);
  font-family: 'Montserrat', sans-serif;
}

.indicator-num {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-muted);
  transition: color 0.4s var(--transition);
}

.indicator-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.4s var(--transition);
  font-family: 'Poppins', sans-serif;
}

.process-sticky__indicator.active {
  border-color: var(--primary);
  background: rgba(0, 185, 182, 0.1);
  box-shadow: 0 0 20px rgba(0, 185, 182, 0.15);
}

.process-sticky__indicator.active .indicator-num {
  color: var(--primary);
}

.process-sticky__indicator.active .indicator-label {
  color: var(--text-bright);
}

.process-sticky__indicator.completed {
  border-color: rgba(0, 185, 182, 0.3);
}

.process-sticky__indicator.completed .indicator-num {
  color: var(--primary);
}

.indicator-line {
  width: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 1px;
  overflow: hidden;
}

.indicator-line-fill {
  width: 0%;
  height: 100%;
  background: var(--gradient-1);
  transition: width 0.5s var(--transition);
  border-radius: 1px;
}

.indicator-line.filled .indicator-line-fill {
  width: 100%;
}

/* Card Stack */
.process-sticky__cards {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  min-height: 440px;
}

.process-sticky__card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 360px;
  padding: 40px;
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.5s var(--transition), transform 0.5s var(--transition);
  display: flex;
  gap: 20px;
}

.process-sticky__card.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  position: relative;
}

.sticky-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.process-sticky__card.exit-up {
  opacity: 0;
  transform: translateY(-40px) scale(0.95);
  pointer-events: none;
}

/* Card Number */
.sticky-card__number {
  font-family: 'Montserrat', sans-serif;
  font-size: 64px;
  font-weight: 900;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 16px;
  transition: opacity 0.4s var(--transition);
}

.process-sticky__card.active .sticky-card__number {
  opacity: 0.2;
}

.sticky-card__content .step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-card__content .step-header h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-bright);
}

.sticky-card__content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

.sticky-card__content .step-visual {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

/* Mobile adjustments for sticky process */
@media (max-width: 480px) {
  .process-sticky__card {
    padding: 24px 16px;
  }

  .sticky-card__number {
    font-size: 44px;
  }

  .sticky-card__content .step-header h3 {
    font-size: 17px;
  }

  .sticky-card__content p {
    font-size: 14px;
  }

  .process-sticky__indicators {
    gap: 6px;
  }

  .process-sticky__indicator {
    padding: 6px 12px;
  }

  .indicator-num {
    font-size: 12px;
  }

  .indicator-line {
    width: 20px;
  }

  .platform-badge {
    font-size: 11px;
    padding: 4px 10px;
  }
}

/* ============================================
   PAGE LOADER
   ============================================ */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0a1a1a;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-logo {
  height: 48px;
  animation: loaderPulse 1.2s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%, 100% { opacity: 0.4; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1); }
}

/* ============================================
   BRAINDUMP-STYLE GRAPHICAL ELEMENTS
   ============================================ */

/* --- Shared Keyframes --- */
@keyframes orbit-ring {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes orbit-ring-reverse {
  0% { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}
@keyframes pulse-ring {
  0% { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(2.2); opacity: 0; }
}
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes dash-flow {
  0% { stroke-dashoffset: 200; }
  100% { stroke-dashoffset: 0; }
}
@keyframes node-glow {
  0%, 100% { box-shadow: 0 0 8px rgba(0,185,182,0.2); }
  50% { box-shadow: 0 0 24px rgba(0,185,182,0.4); }
}
@keyframes scan-sweep {
  0% { top: 0; opacity: 0.6; }
  100% { top: 100%; opacity: 0; }
}
@keyframes bar-grow-up {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}
@keyframes data-dot-flow {
  0% { left: 0; opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { left: calc(100% - 6px); opacity: 0; }
}

/* ============================================
   1. RESULTS SECTION — Animated SVG Visuals
   ============================================ */

/* Circular progress ring inside result cards */
.result-card .result-visual {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 16px auto 0;
}
.result-card .result-visual svg {
  width: 80px;
  height: 80px;
  transform: rotate(-90deg);
}
.result-card .result-visual .ring-bg {
  fill: none;
  stroke: rgba(0, 185, 182, 0.08);
  stroke-width: 4;
}
.result-card .result-visual .ring-fill {
  fill: none;
  stroke: url(#tealGradient);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: var(--dash-total);
  stroke-dashoffset: var(--dash-offset);
  transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.result-card .result-visual .ring-glow {
  fill: none;
  stroke: rgba(0, 185, 182, 0.15);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: var(--dash-total);
  stroke-dashoffset: var(--dash-offset);
  filter: blur(4px);
  transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.result-card .result-visual .ring-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--primary);
}

/* Mini bar chart inside impressions card */
.result-mini-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 50px;
  margin: 16px auto 0;
  justify-content: center;
}
.result-mini-bars .mini-bar {
  width: 8px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, rgba(0,185,182,0.3), rgba(0,185,182,0.8));
  transform-origin: bottom;
  animation: bar-grow-up 1s ease both;
  animation-delay: var(--delay, 0s);
}

/* ============================================
   2. PROCESS SECTION — Pipeline Flow Arrows
   ============================================ */
.process-flow-connector {
  display: none;
}

@media (min-width: 769px) {
  .process-flow-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 32px auto 0;
    max-width: 700px;
  }
  .flow-pipe {
    flex: 1;
    height: 2px;
    position: relative;
    background: linear-gradient(90deg, rgba(0,185,182,0.4), rgba(0,185,182,0.08));
  }
  .flow-pipe::after {
    content: '';
    position: absolute;
    top: -3px;
    right: 0;
    width: 8px;
    height: 8px;
    border-top: 2px solid rgba(0,185,182,0.4);
    border-right: 2px solid rgba(0,185,182,0.4);
    transform: rotate(45deg);
  }
  .flow-pipe .flow-dot {
    position: absolute;
    top: -2px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 8px rgba(0,185,182,0.6);
    animation: data-dot-flow 2.5s ease-in-out infinite;
    animation-delay: var(--delay, 0s);
  }
  .flow-node-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: node-glow 3s ease-in-out infinite;
  }
  .flow-node-icon.teal {
    background: rgba(0,185,182,0.08);
    border: 1px solid rgba(0,185,182,0.2);
  }
  .flow-node-icon.orange {
    background: rgba(186,67,0,0.08);
    border: 1px solid rgba(186,67,0,0.2);
  }
  .flow-node-icon svg {
    width: 20px;
    height: 20px;
  }
  .flow-node-icon.teal svg {
    stroke: var(--primary);
    fill: none;
  }
  .flow-node-icon.orange svg {
    stroke: var(--accent-light);
    fill: none;
  }
}

/* ============================================
   3. INDUSTRIES — Network Constellation BG
   ============================================ */
.industries {
  position: relative;
}
.constellation-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.constellation-bg .c-node {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(0, 185, 182, 0.25);
  box-shadow: 0 0 8px rgba(0, 185, 182, 0.15);
  animation: float-y 6s ease-in-out infinite;
}
.constellation-bg .c-node:nth-child(2n) {
  animation-duration: 8s;
  animation-delay: -2s;
}
.constellation-bg .c-node:nth-child(3n) {
  animation-duration: 10s;
  animation-delay: -4s;
}
.constellation-bg .c-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,185,182,0.08), transparent);
  transform-origin: left center;
}

/* ============================================
   4. ABOUT — Shield Pulse Rings
   ============================================ */
.about-visual {
  position: relative;
}
.shield-pulse-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  pointer-events: none;
  z-index: 0;
}
.shield-pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  margin: -100px 0 0 -100px;
  border-radius: 50%;
  border: 1px solid rgba(0,185,182,0.12);
  animation: pulse-ring 4s ease-out infinite;
}
.shield-pulse-ring:nth-child(2) { animation-delay: 1s; }
.shield-pulse-ring:nth-child(3) { animation-delay: 2s; }
.shield-pulse-ring:nth-child(4) { animation-delay: 3s; }

/* ============================================
   TESTIMONIALS ROW (under Trusted Logos)
   ============================================ */
.testimonials-row {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 20px 8px;
  scrollbar-width: none;
}
.testimonials-row::-webkit-scrollbar { display: none; }
.testimonials-row .testi-card {
  flex: 0 0 220px;
  padding: 20px;
  border-radius: 16px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  scroll-snap-align: start;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease, background 0.3s var(--transition), border-color 0.3s var(--transition);
}
.testimonials-row .testi-card:nth-child(1) { transition-delay: 0s; }
.testimonials-row .testi-card:nth-child(2) { transition-delay: 0.15s; }
.testimonials-row .testi-card:nth-child(3) { transition-delay: 0.3s; }
.testimonials-row .testi-card:nth-child(4) { transition-delay: 0.45s; }
.testimonials-row .testi-card:nth-child(5) { transition-delay: 0.6s; }
.testimonials-row .testi-card.in-view {
  opacity: 1;
  transform: translateY(0);
}
.testimonials-row .testi-card:hover {
  background: rgba(0,185,182,0.06);
  border-color: rgba(0,185,182,0.2);
  transform: translateY(-4px);
}
.testimonials-row .testi-stars {
  color: #ffbd2e;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.testimonials-row .testi-text {
  font-size: 12px;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 12px;
  font-style: italic;
}
.testimonials-row .testi-author {
  display: flex;
  align-items: center;
  gap: 8px;
}
.testimonials-row .testi-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.testimonials-row .testi-avatar.ta1 { background: linear-gradient(135deg, #00b9b6, #18908e); }
.testimonials-row .testi-avatar.ta2 { background: linear-gradient(135deg, #ba4300, #e05a1a); }
.testimonials-row .testi-avatar.ta3 { background: linear-gradient(135deg, #0d5755, #00b9b6); }
.testimonials-row .testi-name {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-bright);
}
.testimonials-row .testi-role {
  display: block;
  font-size: 10px;
  color: var(--text-muted);
}

@media (min-width: 1100px) {
  .testimonials-row {
    justify-content: center;
    overflow-x: visible;
  }
  .testimonials-row .testi-card {
    flex: 1;
    max-width: 220px;
  }
}

/* Guarantee Shield Icons (replacing checkmarks) */
.guarantee-shield-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(0,185,182,0.06);
  border: 1px solid rgba(0,185,182,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  transition: all 0.3s var(--transition);
  position: relative;
}
.shield-pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 14px;
  border: 1.5px solid rgba(0,185,182,0.25);
  animation: shield-pulse 2.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shield-pulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.25); opacity: 0; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 0; }
}
.guarantee-shield-icon svg {
  filter: drop-shadow(0 0 6px rgba(0,185,182,0.3));
  z-index: 1;
}
.guarantee-item:hover .guarantee-shield-icon {
  background: rgba(0,185,182,0.12);
  box-shadow: 0 0 25px rgba(0,185,182,0.2);
  border-color: rgba(0,185,182,0.3);
}
.guarantee-item:hover .shield-pulse-ring {
  animation: shield-pulse-hover 1.8s ease-in-out infinite;
}
@keyframes shield-pulse-hover {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  50% { transform: translate(-50%, -50%) scale(1.35); opacity: 0; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 0; }
}

/* ATS Flow in Process Step 03 */
.ats-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0 auto;
  max-width: 340px;
}
.ats-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.ats-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0,185,182,0.08);
  border: 1px solid rgba(0,185,182,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.3s ease;
}
.ats-icon.ats-glow {
  box-shadow: 0 0 12px rgba(0,185,182,0.15), 0 0 24px rgba(0,185,182,0.05);
  animation: ats-node-glow 3s ease-in-out infinite;
}
.ats-icon.ats-glow-green {
  box-shadow: 0 0 12px rgba(40,202,66,0.15), 0 0 24px rgba(40,202,66,0.05);
  animation: ats-node-glow-green 3s ease-in-out infinite;
}
@keyframes ats-node-glow {
  0%, 100% { box-shadow: 0 0 10px rgba(0,185,182,0.12), 0 0 20px rgba(0,185,182,0.04); }
  50% { box-shadow: 0 0 18px rgba(0,185,182,0.25), 0 0 35px rgba(0,185,182,0.08); }
}
@keyframes ats-node-glow-green {
  0%, 100% { box-shadow: 0 0 10px rgba(40,202,66,0.12), 0 0 20px rgba(40,202,66,0.04); }
  50% { box-shadow: 0 0 18px rgba(40,202,66,0.25), 0 0 35px rgba(40,202,66,0.08); }
}
.ats-label {
  font-size: 9px;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.3px;
}
.ats-connector {
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, rgba(0,185,182,0.35), rgba(0,185,182,0.15));
  position: relative;
  margin-top: -10px;
  flex-shrink: 0;
  overflow: hidden;
}
.ats-connector::after {
  content: '';
  position: absolute;
  right: -1px;
  top: -2px;
  width: 5px;
  height: 5px;
  border-top: 1.5px solid rgba(0,185,182,0.35);
  border-right: 1.5px solid rgba(0,185,182,0.35);
  transform: rotate(45deg);
}
.ats-dot-flow {
  position: absolute;
  top: -2px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 8px rgba(0,185,182,0.6), 0 0 3px rgba(0,185,182,0.9);
  animation: pipe-dot-flow 2s linear infinite;
}
@keyframes pipe-dot-flow {
  0% { left: -4px; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: calc(100% + 4px); opacity: 0; }
}

/* Phone Mockup - Enhanced form elements */
.phone-input-group {
  margin-bottom: 4px;
}
.phone-input-text {
  font-size: 7.5px;
  color: var(--text-muted);
  padding-left: 0;
  line-height: 1;
  white-space: nowrap;
}
.phone-input.active .phone-input-text {
  color: var(--text-bright);
}
.phone-input.filled .phone-input-text {
  color: var(--text);
}
.phone-select {
  height: 20px;
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px;
}
.phone-time-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin-top: 4px;
  font-size: 6px;
  color: var(--text-muted);
  opacity: 0.7;
}

/* ============================================
   PROCESS VERTICAL — SMR-style steps layout
   ============================================ */
.process-vertical {
  position: relative;
  z-index: 2;
  padding: 100px 0;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 56px;
  max-width: 1060px;
  margin: 0 auto;
}

.process-step-row {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.process-step-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 56px;
  font-weight: 900;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.25;
  line-height: 1;
  align-self: center;
}

.process-step-content {
  padding: 32px;
  align-self: center;
}

.process-step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.process-step-header .step-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(0,185,182,0.08);
  border: 1px solid rgba(0,185,182,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.process-step-header h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-bright);
}

.process-step-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.process-step-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.process-feature-tag {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-muted);
}

.process-feature-tag.accent {
  background: rgba(0,185,182,0.08);
  border-color: rgba(0,185,182,0.2);
  color: var(--primary);
}

.process-step-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .process-step-row {
    grid-template-columns: 60px 1fr;
    gap: 16px;
  }
  .process-step-visual {
    grid-column: 1 / -1;
    justify-content: center;
    padding: 24px 0 0;
    max-width: 280px;
    margin: 0 auto;
  }
  .process-step-number {
    font-size: 40px;
  }
}

@media (max-width: 480px) {
  .process-step-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .process-step-number {
    font-size: 36px;
  }
  .process-step-content {
    padding: 20px;
  }
  .process-vertical {
    padding: 60px 0;
  }
}

/* Dashboard floating badge improvements */
.floating-badge {
  box-shadow: 0 10px 40px rgba(0,0,0,0.4), 0 0 20px rgba(0,185,182,0.08);
}

/* ============================================
   5. CTA FINAL — Orbit Animation
   ============================================ */
.cta-orbit-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  pointer-events: none;
  z-index: 0;
}
.cta-orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px dashed rgba(0,185,182,0.08);
}
.cta-orbit-ring:nth-child(1) {
  width: 300px;
  height: 300px;
  margin: -150px 0 0 -150px;
  animation: orbit-ring 30s linear infinite;
}
.cta-orbit-ring:nth-child(2) {
  width: 450px;
  height: 450px;
  margin: -225px 0 0 -225px;
  animation: orbit-ring-reverse 45s linear infinite;
}
.cta-orbit-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 12px rgba(0,185,182,0.4);
}
.cta-orbit-ring:nth-child(1) .cta-orbit-dot { top: 0; left: 50%; margin-left: -3px; }
.cta-orbit-ring:nth-child(1) .cta-orbit-dot:nth-child(2) { top: 50%; left: 100%; margin-top: -3px; }
.cta-orbit-ring:nth-child(2) .cta-orbit-dot { top: 50%; left: 0; margin-top: -3px; }
.cta-orbit-ring:nth-child(2) .cta-orbit-dot:nth-child(2) { top: 100%; left: 50%; margin-left: -3px; }

.cta-final {
  position: relative;
  overflow: hidden;
}

/* ============================================
   6. HERO — Scan Line Effect on Glass Card
   ============================================ */
.hero-glass-card {
  position: relative;
  overflow: hidden;
}
.hero-glass-card .scan-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0,185,182,0.4), transparent);
  z-index: 10;
  animation: scan-sweep 3s linear infinite;
  pointer-events: none;
}

/* ============================================
   7. TRUSTED — Subtle Glow Divider
   ============================================ */
.trusted-glow-line {
  width: 200px;
  height: 1px;
  margin: 24px auto 0;
  background: radial-gradient(ellipse, rgba(0,185,182,0.3), transparent);
}

/* ============================================
   8. FAQ — Decorative Side Element
   ============================================ */
.faq {
  position: relative;
}
.faq-deco {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  height: 400px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}
.faq-deco-bar {
  position: absolute;
  right: 0;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(to bottom, transparent, rgba(0,185,182,0.3), transparent);
}
.faq-deco-bar:nth-child(1) { height: 100%; right: 0; }
.faq-deco-bar:nth-child(2) { height: 70%; right: 20px; top: 15%; opacity: 0.6; }
.faq-deco-bar:nth-child(3) { height: 40%; right: 40px; top: 30%; opacity: 0.3; }
.faq-deco-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  right: -1px;
  animation: float-y 4s ease-in-out infinite;
}
.faq-deco-dot:nth-child(4) { top: 10%; }
.faq-deco-dot:nth-child(5) { top: 50%; animation-delay: -1.5s; right: 19px; }
.faq-deco-dot:nth-child(6) { top: 85%; animation-delay: -3s; }

/* ============================================
   MOBILE RESPONSIVE — Graphical Elements
   ============================================ */
@media (max-width: 768px) {
  .constellation-bg { display: none; }
  .cta-orbit-container { width: 300px; height: 300px; }
  .cta-orbit-ring:nth-child(1) { width: 200px; height: 200px; margin: -100px 0 0 -100px; }
  .cta-orbit-ring:nth-child(2) { width: 280px; height: 280px; margin: -140px 0 0 -140px; }
  .shield-pulse-container { width: 200px; height: 200px; }
  .shield-pulse-ring { width: 140px; height: 140px; margin: -70px 0 0 -70px; }
  .faq-deco { display: none; }
  .result-card .result-visual { width: 60px; height: 60px; }
  .result-card .result-visual svg { width: 60px; height: 60px; }
  .result-card .result-visual .ring-center { font-size: 14px; }
}
