/**
 * Websirg - Premium About Page & Leadership Team Styling
 * Design System: Sleek High-Tech Glassmorphism, Tight Executive Spacing, Modern Typography
 * Font: Plus Jakarta Sans
 */

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

:root {
  --ws-primary: #f97316;
  --ws-primary-hover: #ea580c;
  --ws-primary-glow: rgba(249, 115, 22, 0.22);
  --ws-dark-950: #070b14;
  --ws-dark-900: #0a0e1a;
  --ws-dark-850: #0f172a;
  --ws-dark-800: #1e293b;
  --ws-slate-600: #475569;
  --ws-slate-500: #64748b;
  --ws-slate-400: #94a3b8;
  --ws-slate-200: #e2e8f0;
  --ws-slate-100: #f1f5f9;
  --ws-slate-50: #f8fafc;
  --ws-white: #ffffff;
  
  --ws-blue: #2563eb;
  --ws-teal: #0d9488;
  --ws-purple: #7c3aed;
  --ws-emerald: #10b981;
  
  --ws-radius-lg: 16px;
  --ws-radius-md: 12px;
  --ws-radius-sm: 8px;
  --ws-transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Body */
body.to-about-page {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  color: var(--ws-dark-800);
  background-color: #fafbfd;
  overflow-x: hidden;
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

/* Reusable Gradient Text */
.ws-gradient-text {
  background: linear-gradient(135deg, #ea580c 0%, #f97316 60%, #fb923c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

/* -------------------------------------------------------------
   1. HERO SECTION (Compact, Sharp, High-Tech)
------------------------------------------------------------- */
.ws-about-hero {
  position: relative;
  padding-top: 130px;
  padding-bottom: 45px;
  background: linear-gradient(180deg, #070b14 0%, #0c1322 55%, #0f1a30 100%);
  color: var(--ws-white);
  overflow: hidden;
  z-index: 1;
}

@media (max-width: 991px) {
  .ws-about-hero {
    padding-top: 95px;
    padding-bottom: 35px;
  }
}

/* Ambient Subtle Glows */
.ws-hero-glow-1 {
  position: absolute;
  top: -80px;
  right: -50px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.14) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
}

.ws-hero-glow-2 {
  position: absolute;
  bottom: -40px;
  left: -80px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(50px);
}

.ws-hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 45%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 45%, transparent 80%);
  pointer-events: none;
}

/* Hero Badge */
.ws-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.35);
  border-radius: 30px;
  color: #fb923c;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
}

.ws-pulse-dot {
  width: 7.5px;
  height: 7.5px;
  background-color: #f97316;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px rgba(249, 115, 22, 0.9);
  animation: wsDotPopUp 1.8s infinite ease-in-out;
  will-change: transform, box-shadow, opacity;
}

@keyframes wsDotPopUp {
  0% { transform: scale(0.75); opacity: 0.55; box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7); }
  50% { transform: scale(1.35); opacity: 1; box-shadow: 0 0 10px 3px rgba(249, 115, 22, 0.5); }
  100% { transform: scale(0.75); opacity: 0.55; box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
}

.ws-hero-title {
  font-size: 44px;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -1px;
  color: var(--ws-white);
  margin-bottom: 14px;
}

.ws-hero-lead {
  font-size: 16px;
  color: #cbd5e1;
  max-width: 780px;
  line-height: 1.65;
  font-weight: 400;
  margin-bottom: 24px;
}

.ws-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.ws-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
  color: #ffffff !important;
  padding: 11px 26px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.4px;
  text-decoration: none !important;
  box-shadow: 0 6px 18px rgba(234, 88, 12, 0.35);
  transition: var(--ws-transition);
  border: none;
  cursor: pointer;
}

.ws-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(234, 88, 12, 0.5);
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.ws-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff !important;
  padding: 11px 22px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 600;
  font-size: 13.5px;
  text-decoration: none !important;
  backdrop-filter: blur(8px);
  transition: var(--ws-transition);
}

.ws-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.ws-hero-contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #94a3b8;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none !important;
  padding: 8px 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--ws-transition);
}

.ws-hero-contact-badge:hover {
  color: #f97316;
  border-color: rgba(249, 115, 22, 0.35);
}

/* Compact Metrics Strip */
.ws-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 16px 20px;
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.ws-stat-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: var(--ws-transition);
}

.ws-stat-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(249, 115, 22, 0.3);
  transform: translateY(-2px);
}

.ws-stat-icon-wrapper {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ws-stat-icon-wrapper.orange { background: rgba(249, 115, 22, 0.15); color: #fb923c; }
.ws-stat-icon-wrapper.blue { background: rgba(37, 99, 235, 0.15); color: #60a5fa; }
.ws-stat-icon-wrapper.emerald { background: rgba(16, 185, 129, 0.15); color: #34d399; }
.ws-stat-icon-wrapper.purple { background: rgba(124, 58, 237, 0.15); color: #c084fc; }

.ws-stat-number {
  font-size: 24px;
  font-weight: 800;
  color: var(--ws-white);
  line-height: 1.1;
  letter-spacing: -0.3px;
  display: inline-block;
  will-change: transform, opacity;
  transform-origin: center center;
}

.ws-stat-title {
  font-size: 11.5px;
  font-weight: 600;
  color: #94a3b8;
  line-height: 1.25;
}

/* -------------------------------------------------------------
   2. CORE ABOUT SHOWCASE (TIGHT, EXECUTIVE, NO DEAD SPACE)
------------------------------------------------------------- */
.ws-section-wrapper {
  position: relative;
  padding: 55px 0 45px;
  background: #fafbfd;
}

.ws-section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 34px;
}

.ws-section-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 16px;
  background: #fff7ed;
  border: 1px solid #ffedd5;
  border-radius: 30px;
  color: #ea580c;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  box-shadow: 0 2px 6px rgba(234, 88, 12, 0.05);
}

.ws-dot {
  width: 5px;
  height: 5px;
  background: #ea580c;
  border-radius: 50%;
  display: inline-block;
}

.ws-section-title {
  font-size: 36px;
  font-weight: 900;
  color: var(--ws-dark-900);
  line-height: 1.2;
  letter-spacing: -0.6px;
  margin-bottom: 12px;
}

.ws-section-subtitle {
  font-size: 16px;
  color: var(--ws-slate-500);
  line-height: 1.65;
  margin: 0;
  font-weight: 400;
}

/* -------------------------------------------------------------
   3. SECTION RIGHT BELOW ABOUT WEBSIRG (MORE PROFESSIONAL)
   4 Core Capability Pillars Grid (Clean, Elevated, Crisp)
------------------------------------------------------------- */
.ws-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 30px;
}

.ws-pillar-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--ws-radius-md);
  padding: 24px 20px;
  transition: var(--ws-transition);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
}

.ws-pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
  border-color: #cbd5e1;
}

.ws-pillar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 12px 12px 0 0;
  opacity: 0;
  transition: var(--ws-transition);
}

.ws-pillar-card.p-blue::before { background: linear-gradient(90deg, #2563eb, #3b82f6); }
.ws-pillar-card.p-orange::before { background: linear-gradient(90deg, #ea580c, #f97316); }
.ws-pillar-card.p-teal::before { background: linear-gradient(90deg, #0d9488, #14b8a6); }
.ws-pillar-card.p-purple::before { background: linear-gradient(90deg, #7c3aed, #9333ea); }

.ws-pillar-card:hover::before {
  opacity: 1;
}

.ws-pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  transition: var(--ws-transition);
}

.ws-pillar-icon.blue { background: #eff6ff; color: #2563eb; }
.ws-pillar-icon.orange { background: #fff7ed; color: #ea580c; }
.ws-pillar-icon.teal { background: #f0fdf4; color: #16a34a; }
.ws-pillar-icon.purple { background: #faf5ff; color: #9333ea; }

.ws-pillar-card:hover .ws-pillar-icon {
  transform: scale(1.06);
}

.ws-pillar-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--ws-dark-900);
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.ws-pillar-desc {
  font-size: 13.5px;
  color: var(--ws-slate-500);
  line-height: 1.55;
  margin-bottom: 14px;
  flex-grow: 1;
}

.ws-pillar-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: #ea580c;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

/* Bento DNA Cards: Mission & Vision (Compact & Sleek) */
.ws-dna-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 22px;
}

.ws-dna-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--ws-radius-md);
  padding: 26px 24px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
  position: relative;
  overflow: hidden;
  transition: var(--ws-transition);
}

.ws-dna-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.07);
  border-color: #cbd5e1;
}

.ws-dna-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.ws-dna-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.ws-dna-icon.orange { background: #fff7ed; color: #ea580c; border: 1px solid #ffedd5; }
.ws-dna-icon.blue { background: #eff6ff; color: #2563eb; border: 1px solid #dbeafe; }

.ws-dna-category {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ea580c;
  margin-bottom: 2px;
}

.ws-dna-card.vision .ws-dna-category { color: #2563eb; }

.ws-dna-heading {
  font-size: 20px;
  font-weight: 800;
  color: var(--ws-dark-900);
  margin: 0;
  letter-spacing: -0.2px;
}

.ws-dna-body {
  font-size: 14px;
  color: var(--ws-slate-500);
  line-height: 1.6;
  margin-bottom: 16px;
}

.ws-dna-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.ws-dna-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ws-dark-700);
}

.ws-check-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #f0fdf4;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  border: 1px solid #bbf7d0;
}

/* 4 Core Values Ribbon */
.ws-values-ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.ws-value-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--ws-transition);
}

.ws-value-item:hover {
  border-color: #f97316;
  background: #fff7ed;
  transform: translateY(-2px);
}

.ws-value-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #f8fafc;
  color: #f97316;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.ws-value-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--ws-dark-800);
  margin: 0;
}

/* -------------------------------------------------------------
   4. OUR LEADERSHIP TEAM (COMPACT, EXECUTIVE, NO EXCESS SPACE)
------------------------------------------------------------- */
.ws-leadership-section {
  padding: 55px 0 45px;
  background: #ffffff;
  border-top: 1px solid #f1f5f9;
}

.ws-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.ws-leader-card {
  background: #fafbfd;
  border: 1px solid #e2e8f0;
  border-radius: var(--ws-radius-md);
  padding: 24px 20px 18px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.02);
  transition: var(--ws-transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.ws-leader-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.ws-leader-card.leader-pk::before { background: linear-gradient(90deg, #ea580c, #f97316); }
.ws-leader-card.leader-sp::before { background: linear-gradient(90deg, #2563eb, #3b82f6); }
.ws-leader-card.leader-gq::before { background: linear-gradient(90deg, #0d9488, #14b8a6); }
.ws-leader-card.leader-pj::before { background: linear-gradient(90deg, #7c3aed, #a855f7); }

.ws-leader-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
  border-color: #cbd5e1;
  background: #ffffff;
}

.ws-leader-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.ws-avatar-frame {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
}

.ws-avatar-frame.blue { background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%); }
.ws-avatar-frame.orange { background: linear-gradient(135deg, #c2410c 0%, #431407 100%); }
.ws-avatar-frame.teal { background: linear-gradient(135deg, #0f766e 0%, #022c22 100%); }
.ws-avatar-frame.purple { background: linear-gradient(135deg, #6b21a8 0%, #2e1065 100%); }

.ws-leader-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  font-weight: 700;
  color: #16a34a;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 3px 8px;
  border-radius: 20px;
}

.ws-status-beacon {
  width: 5px;
  height: 5px;
  background-color: #16a34a;
  border-radius: 50%;
  display: inline-block;
}

.ws-leader-role-pill {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ea580c;
  margin-bottom: 4px;
}

.ws-leader-card.leader-sp .ws-leader-role-pill { color: #2563eb; }
.ws-leader-card.leader-gq .ws-leader-role-pill { color: #0d9488; }
.ws-leader-card.leader-pj .ws-leader-role-pill { color: #7c3aed; }

.ws-leader-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--ws-dark-900);
  line-height: 1.25;
  margin-bottom: 2px;
}

.ws-leader-exp {
  font-size: 12px;
  font-weight: 600;
  color: var(--ws-slate-500);
  margin-bottom: 12px;
}

.ws-leader-bio {
  font-size: 13px;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 16px;
  flex-grow: 1;
}

.ws-skills-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 14px;
}

.ws-skill-pill {
  font-size: 11px;
  font-weight: 600;
  color: var(--ws-slate-500);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 3px 8px;
  transition: var(--ws-transition);
}

.ws-leader-card:hover .ws-skill-pill {
  background: #f1f5f9;
  color: var(--ws-dark-800);
}

.ws-leader-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid #e2e8f0;
}

.ws-leader-connect-btn {
  font-size: 12px;
  font-weight: 700;
  color: #2563eb;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--ws-transition);
}

.ws-leader-connect-btn:hover {
  color: #1d4ed8;
  transform: translateX(3px);
}

/* -------------------------------------------------------------
   5. COMPACT TECH STACK & CTA
------------------------------------------------------------- */
.ws-tech-stack-section {
  padding: 45px 0;
  background: #fafbfd;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}

.ws-tech-badges-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

@keyframes wsDotPopUp {
  0% {
    transform: scale(0.75);
    opacity: 0.55;
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7);
  }
  50% {
    transform: scale(1.35);
    opacity: 1;
    box-shadow: 0 0 10px 3px rgba(249, 115, 22, 0.5);
  }
  100% {
    transform: scale(0.75);
    opacity: 0.55;
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
  }
}

@keyframes wsGreenDotPopUp {
  0% {
    transform: scale(0.75);
    opacity: 0.55;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  50% {
    transform: scale(1.35);
    opacity: 1;
    box-shadow: 0 0 10px 3px rgba(16, 185, 129, 0.5);
  }
  100% {
    transform: scale(0.75);
    opacity: 0.55;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

@keyframes wsBlueDotPopUp {
  0% {
    transform: scale(0.75);
    opacity: 0.55;
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7);
  }
  50% {
    transform: scale(1.35);
    opacity: 1;
    box-shadow: 0 0 10px 3px rgba(37, 99, 235, 0.5);
  }
  100% {
    transform: scale(0.75);
    opacity: 0.55;
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
  }
}

@keyframes wsCyanDotPopUp {
  0% {
    transform: scale(0.75);
    opacity: 0.55;
    box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.7);
  }
  50% {
    transform: scale(1.35);
    opacity: 1;
    box-shadow: 0 0 10px 3px rgba(6, 182, 212, 0.5);
  }
  100% {
    transform: scale(0.75);
    opacity: 0.55;
    box-shadow: 0 0 0 0 rgba(6, 182, 212, 0);
  }
}

@keyframes wsYellowDotPopUp {
  0% {
    transform: scale(0.75);
    opacity: 0.55;
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
  }
  50% {
    transform: scale(1.35);
    opacity: 1;
    box-shadow: 0 0 10px 3px rgba(245, 158, 11, 0.5);
  }
  100% {
    transform: scale(0.75);
    opacity: 0.55;
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
  }
}

@keyframes wsPurpleDotPopUp {
  0% {
    transform: scale(0.75);
    opacity: 0.55;
    box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.7);
  }
  50% {
    transform: scale(1.35);
    opacity: 1;
    box-shadow: 0 0 10px 3px rgba(139, 92, 246, 0.5);
  }
  100% {
    transform: scale(0.75);
    opacity: 0.55;
    box-shadow: 0 0 0 0 rgba(139, 92, 246, 0);
  }
}

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

.ws-tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ws-dark-800);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
  animation: wsPillFloat 4s ease-in-out infinite;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.ws-tech-pill:nth-child(2n) {
  animation-duration: 4.6s;
  animation-delay: 0.5s;
}

.ws-tech-pill:nth-child(3n) {
  animation-duration: 3.8s;
  animation-delay: 1.1s;
}

.ws-tech-pill:nth-child(4n) {
  animation-duration: 5.2s;
  animation-delay: 1.7s;
}

.ws-tech-pill:hover {
  border-color: #cbd5e1;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px) scale(1.04);
}

.ws-tech-dot {
  display: inline-block !important;
  width: 8px;
  height: 8px;
  border-radius: 50% !important;
  flex-shrink: 0;
  animation: wsDotPopUp 1.8s infinite ease-in-out !important;
  will-change: transform, box-shadow, opacity;
}

.ws-tech-dot.blue {
  background-color: #2563eb !important;
  animation: wsBlueDotPopUp 1.8s infinite ease-in-out !important;
}
.ws-tech-dot.cyan {
  background-color: #06b6d4 !important;
  animation: wsCyanDotPopUp 1.8s infinite ease-in-out !important;
}
.ws-tech-dot.orange {
  background-color: #f97316 !important;
  animation: wsDotPopUp 1.8s infinite ease-in-out !important;
}
.ws-tech-dot.green {
  background-color: #10b981 !important;
  animation: wsGreenDotPopUp 1.8s infinite ease-in-out !important;
}
.ws-tech-dot.yellow {
  background-color: #f59e0b !important;
  animation: wsYellowDotPopUp 1.8s infinite ease-in-out !important;
}
.ws-tech-dot.purple {
  background-color: #8b5cf6 !important;
  animation: wsPurpleDotPopUp 1.8s infinite ease-in-out !important;
}

/* Staggered pulse timing for the tech dots so they pulse across the row */
.ws-tech-pill:nth-child(1) .ws-tech-dot { animation-delay: 0.0s !important; }
.ws-tech-pill:nth-child(2) .ws-tech-dot { animation-delay: 0.25s !important; }
.ws-tech-pill:nth-child(3) .ws-tech-dot { animation-delay: 0.5s !important; }
.ws-tech-pill:nth-child(4) .ws-tech-dot { animation-delay: 0.75s !important; }
.ws-tech-pill:nth-child(5) .ws-tech-dot { animation-delay: 1.0s !important; }
.ws-tech-pill:nth-child(6) .ws-tech-dot { animation-delay: 1.25s !important; }
.ws-tech-pill:nth-child(7) .ws-tech-dot { animation-delay: 1.5s !important; }
.ws-tech-pill:nth-child(8) .ws-tech-dot { animation-delay: 0.35s !important; }
.ws-tech-pill:nth-child(9) .ws-tech-dot { animation-delay: 0.85s !important; }
.ws-tech-pill:nth-child(10) .ws-tech-dot { animation-delay: 1.35s !important; }

/* Bottom CTA Banner (Tight, Impactful) */
.ws-cta-section {
  padding: 40px 0 65px;
  background: #fafbfd;
}

.ws-cta-card {
  background: linear-gradient(135deg, #070b14 0%, #0f172a 60%, #1e293b 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 42px 38px;
  color: var(--ws-white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(10, 14, 26, 0.25);
}

.ws-cta-glow {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.22) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.ws-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(249, 115, 22, 0.16);
  border: 1px solid rgba(249, 115, 22, 0.35);
  border-radius: 24px;
  color: #fb923c;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.ws-cta-heading {
  font-size: 30px;
  font-weight: 900;
  color: var(--ws-white);
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.ws-cta-lead {
  font-size: 15px;
  color: #cbd5e1;
  line-height: 1.65;
  max-width: 580px;
  margin-bottom: 0;
}

.ws-cta-btn-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

@media (min-width: 992px) {
  .ws-cta-btn-group {
    align-items: flex-end;
  }
}

.ws-cta-phone-link {
  color: #cbd5e1;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--ws-transition);
}

.ws-cta-phone-link:hover {
  color: #fb923c;
}

/* Responsive */
@media (max-width: 1199px) {
  .ws-hero-title { font-size: 38px; }
  .ws-stats-strip { grid-template-columns: repeat(2, 1fr); }
  .ws-pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .ws-team-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}

@media (max-width: 991px) {
  .ws-hero-title { font-size: 32px; }
  .ws-dna-grid { grid-template-columns: 1fr; }
  .ws-values-ribbon { grid-template-columns: repeat(2, 1fr); }
  .ws-section-title { font-size: 30px; }
  .ws-cta-card { padding: 32px 24px; }
  .ws-cta-heading { font-size: 26px; }
}

@media (max-width: 767px) {
  .ws-hero-title { font-size: 28px; }
  .ws-stats-strip { grid-template-columns: 1fr; }
  .ws-pillars-grid { grid-template-columns: 1fr; }
  .ws-team-grid { grid-template-columns: 1fr; }
  .ws-values-ribbon { grid-template-columns: 1fr; }
  .ws-section-title { font-size: 25px; }
  .ws-hero-actions { flex-direction: column; align-items: stretch; }
  .ws-btn-primary, .ws-btn-secondary { justify-content: center; }
}
