/* ============================================
   FINO STAFFING LLC - Global Stylesheet
   Modern, Vibrant, People-Focused Design
   ============================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,700;0,800;1,700&display=swap');

/* --- CSS Variables / Design Tokens --- */
:root {
  --navy: #0D1B2A;
  --charcoal: #1C2B3A;
  --teal: #0ABFBC;
  --teal-dark: #089A97;
  --teal-light: #E0F7F7;
  --emerald: #10B981;
  --coral: #FF6B6B;
  --gold: #F5A623;
  --gold-light: #FFF3DC;
  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --text-primary: #0D1B2A;
  --text-secondary: #475569;
  --text-light: #94A3B8;

  /* Typography */
  --font-body: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-max: 1200px;
  --border-radius: 16px;
  --border-radius-sm: 8px;
  --border-radius-lg: 24px;
  --border-radius-xl: 40px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.06);
  --shadow-xl: 0 40px 100px rgba(0,0,0,0.16);
  --shadow-teal: 0 8px 32px rgba(10,191,188,0.25);
  --shadow-coral: 0 8px 32px rgba(255,107,107,0.25);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

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

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 32px rgba(0,0,0,0.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-mark {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--teal), var(--emerald));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  color: white;
  letter-spacing: -1px;
  box-shadow: var(--shadow-teal);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text .brand-name {
  font-size: 18px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.5px;
}

.nav-logo-text .brand-tagline {
  font-size: 10px;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

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

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition-fast);
  letter-spacing: 0.2px;
}

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

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

.nav-cta {
  background: linear-gradient(135deg, var(--teal), var(--emerald)) !important;
  color: white !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  box-shadow: var(--shadow-teal);
  transition: all var(--transition-base) !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(10,191,188,0.4) !important;
  background: rgba(255,255,255,0.1) !important;
}

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

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::before { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--teal) 0%, var(--emerald) 100%);
  color: white;
  box-shadow: var(--shadow-teal);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(10,191,188,0.4);
}

.btn-secondary {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}

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

.btn-dark {
  background: var(--navy);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: var(--charcoal);
}

.btn-coral {
  background: linear-gradient(135deg, var(--coral) 0%, #FF8E53 100%);
  color: white;
  box-shadow: var(--shadow-coral);
}

.btn-coral:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(255,107,107,0.4);
}

.btn-outline-teal {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}

.btn-outline-teal:hover {
  background: var(--teal);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-teal);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #F7C948 100%);
  color: var(--navy);
  font-weight: 700;
  box-shadow: 0 8px 32px rgba(245,166,35,0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(245,166,35,0.4);
}

.btn-lg {
  padding: 18px 42px;
  font-size: 16px;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 13px;
}

.btn-icon {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-fast);
}

.btn:hover .btn-icon { transform: translateX(3px); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 90px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(10,191,188,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(255,107,107,0.08) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 90% 10%, rgba(16,185,129,0.08) 0%, transparent 50%),
    linear-gradient(160deg, #0D1B2A 0%, #1a2d42 50%, #0D1B2A 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(10,191,188,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,191,188,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: var(--teal);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 300px;
  height: 300px;
  background: var(--coral);
  bottom: -50px;
  left: 20%;
  animation-delay: 3s;
}

.hero-orb-3 {
  width: 200px;
  height: 200px;
  background: var(--emerald);
  top: 30%;
  right: 30%;
  animation-delay: 6s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-20px, -30px) scale(1.05); }
  66% { transform: translate(20px, 20px) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(10,191,188,0.15);
  border: 1px solid rgba(10,191,188,0.3);
  color: var(--teal);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
  text-transform: uppercase;
  animation: fadeInDown 0.8s ease both;
}

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

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

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  color: white;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease 0.1s both;
}

.hero-title .highlight {
  position: relative;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(135deg, var(--teal) 0%, var(--emerald) 100%);
  display: inline;
}

.hero-title .accent {
  color: var(--coral);
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 40px;
  animation: fadeInDown 0.8s ease 0.2s both;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInDown 0.8s ease 0.3s both;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  animation: fadeInDown 0.8s ease 0.4s both;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-size: 28px;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.hero-stat-number span {
  color: var(--teal);
}

.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 500;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  animation: fadeInRight 1s ease 0.3s both;
}

.hero-card-stack {
  position: relative;
  height: 480px;
}

.hero-card {
  position: absolute;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  border-radius: var(--border-radius-lg);
  padding: 28px;
  transition: all var(--transition-slow);
}

.hero-card-main {
  width: 340px;
  top: 40px;
  left: 0;
  background: rgba(255,255,255,0.09);
  border-color: rgba(10,191,188,0.2);
  z-index: 3;
}

.hero-card-float-1 {
  width: 220px;
  top: 0;
  right: 0;
  z-index: 4;
  background: rgba(10,191,188,0.12);
  border-color: rgba(10,191,188,0.3);
}

.hero-card-float-2 {
  width: 200px;
  bottom: 30px;
  right: 20px;
  z-index: 4;
  background: rgba(255,107,107,0.1);
  border-color: rgba(255,107,107,0.2);
  animation: cardFloat1 5s ease-in-out infinite;
}

.hero-card-float-3 {
  width: 180px;
  bottom: 100px;
  left: 20px;
  z-index: 4;
  background: rgba(16,185,129,0.1);
  border-color: rgba(16,185,129,0.2);
  animation: cardFloat2 6s ease-in-out infinite;
}

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

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

.card-avatar {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--teal), var(--emerald));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}

.card-title {
  font-size: 15px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.card-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.card-tag {
  background: rgba(10,191,188,0.2);
  color: var(--teal);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.3px;
}

.card-tag.coral { background: rgba(255,107,107,0.2); color: var(--coral); }
.card-tag.gold { background: rgba(245,166,35,0.2); color: var(--gold); }
.card-tag.emerald { background: rgba(16,185,129,0.2); color: var(--emerald); }

.card-metric {
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-metric-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.card-metric-icon.teal { background: rgba(10,191,188,0.2); }
.card-metric-icon.coral { background: rgba(255,107,107,0.2); }
.card-metric-icon.emerald { background: rgba(16,185,129,0.2); }

.card-metric-value {
  font-size: 20px;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.card-metric-label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

/* Hero dual pathway */
.hero-pathway {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 60px;
  padding: 8px;
  display: inline-flex;
  gap: 4px;
  margin-top: 24px;
}

.pathway-btn {
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  background: none;
}

.pathway-btn.active, .pathway-btn:hover {
  background: linear-gradient(135deg, var(--teal), var(--emerald));
  color: white;
  box-shadow: var(--shadow-teal);
}

/* ============================================
   DUAL CTA SECTION
   ============================================ */
.dual-cta {
  padding: 0;
  position: relative;
  z-index: 10;
  margin-top: -1px;
}

.dual-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.dual-cta-card {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
  min-height: 400px;
  justify-content: center;
}

.dual-cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.dual-cta-card:hover::before { opacity: 1; }

.dual-cta-employer {
  background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 100%);
}

.dual-cta-employer::before {
  background: linear-gradient(135deg, #0D1B2A 0%, #1a3a4a 100%);
}

.dual-cta-candidate {
  background: linear-gradient(135deg, #0e2a1a 0%, #0a3025 100%);
}

.dual-cta-candidate::before {
  background: linear-gradient(135deg, #0e2a1a 0%, #0a3a2a 100%);
}

.dual-cta-bg-icon {
  position: absolute;
  right: -20px;
  bottom: -20px;
  font-size: 180px;
  opacity: 0.04;
  transition: all var(--transition-slow);
  line-height: 1;
}

.dual-cta-card:hover .dual-cta-bg-icon {
  opacity: 0.07;
  transform: scale(1.1) rotate(-5deg);
}

.dual-cta-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 6px 14px;
  border-radius: 50px;
}

.dual-cta-employer .dual-cta-label {
  background: rgba(10,191,188,0.2);
  color: var(--teal);
}

.dual-cta-candidate .dual-cta-label {
  background: rgba(16,185,129,0.2);
  color: var(--emerald);
}

.dual-cta-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 16px;
  font-family: var(--font-display);
}

.dual-cta-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 400px;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-title .highlight {
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(135deg, var(--teal), var(--emerald));
}

.section-title .accent { color: var(--coral); }

.section-desc {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto;
}

/* ============================================
   WHY FINO SECTION
   ============================================ */
.why-fino {
  padding: var(--section-padding);
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.why-fino::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--emerald), var(--coral), var(--gold));
}

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

.pillar-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

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

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

.pillar-card:nth-child(1)::before { background: linear-gradient(90deg, var(--teal), var(--emerald)); }
.pillar-card:nth-child(2)::before { background: linear-gradient(90deg, var(--coral), #FF8E53); }
.pillar-card:nth-child(3)::before { background: linear-gradient(90deg, var(--gold), #F7C948); }
.pillar-card:nth-child(4)::before { background: linear-gradient(90deg, var(--emerald), var(--teal)); }
.pillar-card:nth-child(5)::before { background: linear-gradient(90deg, #8B5CF6, var(--teal)); }

.pillar-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
  transition: transform var(--transition-base);
}

.pillar-card:hover .pillar-icon { transform: scale(1.1) rotate(-5deg); }

.pillar-icon.teal { background: var(--teal-light); }
.pillar-icon.coral { background: rgba(255,107,107,0.1); }
.pillar-icon.gold { background: var(--gold-light); }
.pillar-icon.emerald { background: rgba(16,185,129,0.1); }
.pillar-icon.purple { background: rgba(139,92,246,0.1); }

.pillar-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 10px;
}

.pillar-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.pillar-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 100%);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(10,191,188,0.08) 0%, transparent 70%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.08);
}

.stat-item:last-child::after { display: none; }

.stat-number {
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, white 0%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-number .stat-unit {
  font-size: 0.6em;
  background: linear-gradient(135deg, var(--teal), var(--emerald));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.stat-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  margin-top: 6px;
}

/* ============================================
   INDUSTRIES SECTION
   ============================================ */
.industries {
  padding: var(--section-padding);
  background: white;
}

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

.industry-card {
  border-radius: var(--border-radius);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all var(--transition-base);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.industry-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

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

/* Industry color themes */
.industry-finance {
  background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
  border: 1px solid #C7D2FE;
}
.industry-finance::before { background: linear-gradient(135deg, #4F46E5, #6366F1); }
.industry-finance:hover { color: white; border-color: transparent; }

.industry-ops {
  background: linear-gradient(135deg, #F0FFFE 0%, var(--teal-light) 100%);
  border: 1px solid rgba(10,191,188,0.3);
}
.industry-ops::before { background: linear-gradient(135deg, var(--teal-dark), var(--teal)); }
.industry-ops:hover { color: white; border-color: transparent; }

.industry-admin {
  background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%);
  border: 1px solid #FED7AA;
}
.industry-admin::before { background: linear-gradient(135deg, #EA580C, #F97316); }
.industry-admin:hover { color: white; border-color: transparent; }

.industry-healthcare {
  background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
  border: 1px solid #BBF7D0;
}
.industry-healthcare::before { background: linear-gradient(135deg, #16A34A, var(--emerald)); }
.industry-healthcare:hover { color: white; border-color: transparent; }

.industry-sales {
  background: linear-gradient(135deg, #FFF1F2 0%, #FFE4E6 100%);
  border: 1px solid #FECDD3;
}
.industry-sales::before { background: linear-gradient(135deg, #E11D48, var(--coral)); }
.industry-sales:hover { color: white; border-color: transparent; }

.industry-exec {
  background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%);
  border: 1px solid #FDE68A;
}
.industry-exec::before { background: linear-gradient(135deg, #D97706, var(--gold)); }
.industry-exec:hover { color: white; border-color: transparent; }

.industry-legal {
  background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
  border: 1px solid #BBF7D0;
}
.industry-legal::before { background: linear-gradient(135deg, #15803D, #16A34A); }
.industry-legal:hover { color: white; border-color: transparent; }

.industry-icon {
  font-size: 36px;
  position: relative;
  z-index: 1;
  transition: all var(--transition-base);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255,255,255,0.6);
}

.industry-card:hover .industry-icon {
  background: rgba(255,255,255,0.2);
}

.industry-name {
  font-size: 18px;
  font-weight: 700;
  position: relative;
  z-index: 1;
  transition: color var(--transition-base);
}

.industry-roles {
  font-size: 13px;
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
  line-height: 1.5;
  transition: color var(--transition-base);
}

.industry-card:hover .industry-roles { color: rgba(255,255,255,0.8); }

.industry-arrow {
  margin-top: auto;
  font-size: 18px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateX(-8px);
  transition: all var(--transition-base);
}

.industry-card:hover .industry-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   NEARSHORE SECTION
   ============================================ */
.nearshore {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--navy) 0%, #0e2035 100%);
  position: relative;
  overflow: hidden;
}

.nearshore::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(10,191,188,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(245,166,35,0.08) 0%, transparent 50%);
}

.nearshore-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.nearshore-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--gold);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.nearshore-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 24px;
}

.nearshore-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 36px;
}

.nearshore-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.nearshore-benefit {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.nearshore-benefit-check {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--teal), var(--emerald));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}

.nearshore-benefit-text {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

.nearshore-visual {
  position: relative;
}

.savings-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  text-align: center;
}

.savings-number {
  font-size: 80px;
  font-weight: 900;
  line-height: 1;
  color: transparent;
  background: linear-gradient(135deg, var(--gold), #F7C948, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 8px;
}

.savings-label {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
}

.savings-comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
}

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

.savings-col-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}

.savings-col-value {
  font-size: 22px;
  font-weight: 800;
  color: white;
}

.savings-col.highlight .savings-col-value {
  color: var(--teal);
}

.savings-vs {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  font-weight: 700;
}

.latam-flags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 24px;
  justify-content: center;
}

.latam-flag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: var(--section-padding);
  background: var(--off-white);
  overflow: hidden;
}

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

.testimonial-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-base);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-stars span {
  color: var(--gold);
  font-size: 16px;
}

.testimonial-text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--teal);
  opacity: 0.15;
  position: absolute;
  top: -20px;
  left: -8px;
  line-height: 1;
}

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: white;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
}

.testimonial-role {
  font-size: 13px;
  color: var(--text-light);
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process {
  padding: var(--section-padding);
  background: white;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--emerald), var(--coral), var(--gold));
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.process-step-number {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 26px;
  position: relative;
  z-index: 1;
  transition: all var(--transition-base);
}

.process-step:hover .process-step-number {
  border-color: var(--teal);
  box-shadow: var(--shadow-teal);
  transform: scale(1.1);
}

.process-step:nth-child(1) .process-step-number { border-color: var(--teal); background: var(--teal-light); }
.process-step:nth-child(2) .process-step-number { border-color: var(--emerald); background: rgba(16,185,129,0.1); }
.process-step:nth-child(3) .process-step-number { border-color: var(--coral); background: rgba(255,107,107,0.1); }
.process-step:nth-child(4) .process-step-number { border-color: var(--gold); background: var(--gold-light); }

.process-step-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.process-step-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 40%, #0a2a2a 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(10,191,188,0.12) 0%, transparent 70%);
}

.cta-banner-content {
  position: relative;
  z-index: 1;
}

.cta-banner-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 20px;
}

.cta-banner-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
  padding: var(--section-padding);
  background: var(--off-white);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: white;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item:hover { box-shadow: var(--shadow-md); }

.faq-item.open { border-color: var(--teal); }

.faq-question {
  width: 100%;
  padding: 24px 28px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  transition: color var(--transition-fast);
}

.faq-item.open .faq-question { color: var(--teal); }

.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: all var(--transition-base);
  color: var(--text-secondary);
}

.faq-item.open .faq-icon {
  background: var(--teal);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

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

.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  border-top: 1px solid var(--gray-100);
  padding-top: 20px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy);
  padding: 80px 0 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--emerald), var(--coral));
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin: 20px 0 28px;
  max-width: 320px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition-base);
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: white;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}

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

.footer-col ul li a {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-icon {
  width: 32px;
  height: 32px;
  background: rgba(10,191,188,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.footer-contact-text {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

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

.footer-copyright {
  font-size: 14px;
  color: rgba(255,255,255,0.35);
}

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

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition-fast);
}

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

/* ============================================
   PAGE HERO (Inner Pages)
   ============================================ */
.page-hero {
  min-height: 55vh;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 90px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(10,191,188,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(255,107,107,0.06) 0%, transparent 50%),
    linear-gradient(160deg, #0D1B2A 0%, #1a2d42 100%);
}

.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(10,191,188,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,191,188,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.breadcrumb a { color: var(--teal); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
}

.page-hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  line-height: 1.7;
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: var(--off-white);
  border: 2px solid var(--gray-200);
  border-radius: var(--border-radius-sm);
  font-size: 15px;
  color: var(--text-primary);
  transition: all var(--transition-fast);
  outline: none;
  font-family: var(--font-body);
}

.form-control:focus {
  border-color: var(--teal);
  background: white;
  box-shadow: 0 0 0 4px rgba(10,191,188,0.1);
}

.form-control::placeholder { color: var(--text-light); }

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

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

/* ============================================
   CARDS & MISC
   ============================================ */
.card {
  background: white;
  border-radius: var(--border-radius);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition-base);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.tag-teal { background: var(--teal-light); color: var(--teal-dark); }
.tag-coral { background: rgba(255,107,107,0.1); color: #C0392B; }
.tag-gold { background: var(--gold-light); color: #B7770D; }
.tag-emerald { background: rgba(16,185,129,0.1); color: #059669; }
.tag-navy { background: rgba(13,27,42,0.08); color: var(--navy); }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }

/* Text highlight animation */
.text-highlight {
  position: relative;
  display: inline;
}

.text-highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--emerald));
  border-radius: 2px;
  transition: width 0.6s ease 0.3s;
}

.text-highlight.animated::after { width: 100%; }

/* Number counter animation */
.counter { display: inline-block; }

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, var(--teal) 0%, var(--emerald) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gradient-text-coral {
  background: linear-gradient(135deg, var(--coral) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================
   FLOATING ELEMENTS
   ============================================ */
.float-element {
  animation: floatUpDown 4s ease-in-out infinite;
}

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

/* ============================================
   BLOG / INSIGHTS
   ============================================ */
.insights {
  padding: var(--section-padding);
  background: var(--off-white);
}

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

.insight-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-base);
}

.insight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.insight-image {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.insight-image-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  transition: transform var(--transition-slow);
}

.insight-card:hover .insight-image-bg { transform: scale(1.05); }

.insight-body {
  padding: 28px;
}

.insight-category {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.insight-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 12px;
  transition: color var(--transition-fast);
}

.insight-card:hover .insight-title { color: var(--teal); }

.insight-excerpt {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.insight-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-light);
}

.insight-read-more {
  color: var(--teal);
  font-weight: 600;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition-fast);
  text-decoration: none;
}

.insight-card:hover .insight-read-more { gap: 8px; }

/* ============================================
   VALUE PROPOSITION BANNER
   ============================================ */
.value-ticker {
  background: linear-gradient(90deg, var(--teal), var(--emerald));
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.value-ticker-inner {
  display: inline-flex;
  gap: 0;
  animation: tickerMove 30s linear infinite;
}

.value-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
  font-size: 14px;
  font-weight: 600;
  color: white;
  letter-spacing: 0.3px;
}

.value-ticker-dot {
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
}

@keyframes tickerMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner { gap: 48px; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
}

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

  .navbar { padding: 14px 0; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 24px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }

  .dual-cta-grid { grid-template-columns: 1fr; }
  .dual-cta-card { padding: 48px 32px; min-height: 320px; }

  .pillars-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .testimonials-slider { grid-template-columns: 1fr; }
  .nearshore-inner { grid-template-columns: 1fr; gap: 40px; }
  .insights-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .cta-banner-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .dual-cta-card { padding: 36px 20px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--teal-dark); }

/* ============================================
   SELECTION
   ============================================ */
::selection {
  background: rgba(10,191,188,0.2);
  color: var(--navy);
}
