/* ==========================================================
   CV. TEC NUSANTARA — Main Stylesheet
   Three Pillar System: Blue (Training) | Green (Education) | Orange (Consulting)
   ========================================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Colors */
  --tec-blue:       #2563eb;
  --tec-blue-light: #dbeafe;
  --tec-blue-dark:  #1d4ed8;

  --tec-green:       #059669;
  --tec-green-light: #d1fae5;
  --tec-green-dark:  #047857;

  --tec-orange:       #ea580c;
  --tec-orange-light: #ffedd5;
  --tec-orange-dark:  #c2410c;

  /* Neutral */
  --slate-50:  #f8fafc;
  --slate-800: #1e293b;
  --slate-900: #0f172a;

  /* Typography */
  --font-sans:    'DM Sans', sans-serif;
  --font-serif:   'Lora', serif;
  --font-display: 'DM Serif Display', serif;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.font-display       { font-family: var(--font-display); }
.font-serif-display { font-family: var(--font-display); }

/* ========================================================
   NAVBAR
   ======================================================== */
#navbar {
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08), 0 4px 24px rgba(0,0,0,0.06);
}

.nav-link {
  display: inline-block;
  padding: 0.45rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
}
.nav-link:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

#navbar.scrolled .nav-link {
  color: #475569;
}
#navbar.scrolled .nav-link:hover {
  background: #f1f5f9;
  color: #1e293b;
}

.mobile-nav-link {
  display: block;
  padding: 0.6rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #475569;
  transition: background 0.2s;
}
.mobile-nav-link:hover {
  background: #f1f5f9;
  color: #1e293b;
}

/* Logo Badge */
.logo-badge {
  display: flex;
  align-items: center;
  height: 2.5rem;
  padding: 0 0.75rem;
  border-radius: 0.625rem;
  background: linear-gradient(135deg, #1d4ed8 0%, #059669 50%, #ea580c 100%);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  box-shadow: 0 2px 12px rgba(37,99,235,0.35);
}
.logo-badge--sm { height: 2rem; padding: 0 0.6rem; font-size: 1rem; }
.logo-tec { color: #fff; }
.logo-nu  { color: #fde68a; }

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, var(--tec-blue) 0%, var(--tec-blue-dark) 100%);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(37,99,235,0.35);
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37,99,235,0.45);
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 2rem;
  border-radius: 0.625rem;
  background: white;
  color: var(--tec-blue-dark);
  font-size: 0.9rem;
  font-weight: 700;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 2rem;
  border-radius: 0.625rem;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
}
.btn-hero-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.5rem;
  border-radius: 0.5rem;
  background: #1e293b;
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s ease;
}
.btn-dark:hover {
  background: #0f172a;
  transform: translateY(-1px);
}

/* ========================================================
   HERO SECTION
   ======================================================== */
.hero-section {
  background: linear-gradient(135deg, #0f2057 0%, #1d4ed8 35%, #0e7490 65%, #064e3b 100%);
  position: relative;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(37,99,235,0.6) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(5,150,105,0.5) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 60% 80%, rgba(234,88,12,0.3) 0%, transparent 50%);
}

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

/* Particles (decorative dots) */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* Stats */
.stat-hero    { display: flex; flex-direction: column; gap: 0.2rem; }
.stat-num     { font-family: var(--font-display); font-size: 1.75rem; color: white; line-height: 1; }
.stat-label   { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.55); }

/* Pillar Cards (Hero Right) */
.pillar-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  cursor: pointer;
}
.pillar-card:hover { transform: translateX(6px); border-color: rgba(255,255,255,0.3); }

.pillar-blue   { background: rgba(37,99,235,0.25); }
.pillar-green  { background: rgba(5,150,105,0.25); }
.pillar-orange { background: rgba(234,88,12,0.25); }

.pillar-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  line-height: 1;
}

/* Arc Dividers */
.arc-divider-bottom,
.arc-divider-bottom-dark {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
}
.arc-divider-bottom svg,
.arc-divider-bottom-dark svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* Noise Texture Effect */
.noise-bg {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  filter: contrast(150%) brightness(100%);
}

/* Glassmorphism Animation */
.pillar-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pillar-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}


@keyframes bounce-slow {
  0%, 100% { transform: translateY(0) rotate(12deg); }
  50% { transform: translateY(-20px) rotate(15deg); }
}

@keyframes pulse-slow {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.1); }
}

.animate-bounce-slow {
  animation: bounce-slow 6s ease-in-out infinite;
}

.animate-pulse-slow {
  animation: pulse-slow 8s ease-in-out infinite;
}

/* Efek Emas pada kata "Potensi" */
.italic-gold-text {
  font-style: italic;
  font-family: var(--font-serif); /* Pastikan Lora/serif terpanggil */
  background: linear-gradient(to bottom, #fde68a, #d4af37, #b45309);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.2));
}

/* Animasi Melayang */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(12deg); }
  50% { transform: translateY(-15px) rotate(15deg); }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

@keyframes pulse-slow {
  0%, 100% { opacity: 0.1; transform: scale(1); }
  50% { opacity: 0.2; transform: scale(1.1); }
}

.animate-pulse-slow {
  animation: pulse-slow 8s ease-in-out infinite;
}

/* Custom shadow untuk Bento cards agar terlihat melayang di background gelap */
.reveal-right .group {
  backdrop-filter: blur(10px);
}

/* ========================================================
   SECTION SHARED
   ======================================================== */
.section-label-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(6rem, 14vw, 16rem);
  font-weight: 700;
  color: rgba(0,0,0,0.025);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

.solutions-label  { color: rgba(255,255,255,0.04); }
.insights-label   { color: rgba(0,0,0,0.03); }
.about-label      { color: rgba(0,0,0,0.03); }

.section-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--tec-blue);
  border-bottom: 2px solid var(--tec-blue-light);
  padding-bottom: 2px;
}

.section-eyebrow-dark {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(251,191,36,0.9);
  border-bottom: 2px solid rgba(251,191,36,0.25);
  padding-bottom: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: #1e293b;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-title-dark {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: white;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-subtitle {
  margin-top: 0.75rem;
  color: #64748b;
  font-size: 1rem;
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

.section-subtitle-dark {
  margin-top: 0.75rem;
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

/* ========================================================
   SERVICE CARDS (Programs Section)
   ======================================================== */
.service-card {
  position: relative;
  background: white;
  border-radius: 1.25rem;
  padding: 2rem;
  border: 1.5px solid #e2e8f0;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: 1.25rem 1.25rem 0 0;
  transition: height 0.35s ease;
}

.service-card--blue::before  { background: linear-gradient(90deg, #2563eb, #60a5fa); }
.service-card--green::before { background: linear-gradient(90deg, #059669, #34d399); }
.service-card--orange::before { background: linear-gradient(90deg, #ea580c, #fb923c); }

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px -12px rgba(0,0,0,0.15);
}

.service-card--blue:hover   { border-color: #93c5fd; box-shadow: 0 24px 60px -12px rgba(37,99,235,0.2); }
.service-card--green:hover  { border-color: #6ee7b7; box-shadow: 0 24px 60px -12px rgba(5,150,105,0.2); }
.service-card--orange:hover { border-color: #fdba74; box-shadow: 0 24px 60px -12px rgba(234,88,12,0.2); }

/* Featured card (Education) */
.service-card--featured {
  border-width: 2px;
  /*
  transform: translateY(-8px);
  box-shadow: 0 20px 50px -10px rgba(0,0,0,0.12);*/
  transform: translateY(0); 
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); /* Kasih shadow tipis biar elegan */
}
.service-card--featured.service-card--green {
  border-color: #34d399;
  background: linear-gradient(160deg, #f0fdf4 0%, white 40%);
}
.service-card--featured.service-card--blue {
  border-color: #60a5fa;
  background: linear-gradient(160deg, #f0fdf4 0%, white 40%);
}
.service-card--featured.service-card--orange {
  border-color: #fb923c;
  background: linear-gradient(160deg, #f0fdf4 0%, white 40%);
}



.service-card--featured:hover { transform: translateY(-14px); }

.featured-badge {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  background: #059669;
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Card header */
.service-card__header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.service-card__icon-wrap {
  flex-shrink: 0;
  width: 3rem; height: 3rem;
  border-radius: 0.875rem;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s ease;
}
.service-card:hover .service-card__icon-wrap { transform: scale(1.1) rotate(-5deg); }

.service-icon--blue   { background: var(--tec-blue-light);   color: var(--tec-blue); }
.service-icon--green  { background: var(--tec-green-light);  color: var(--tec-green); }
.service-icon--orange { background: var(--tec-orange-light); color: var(--tec-orange); }

/* Service items */
.service-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: #f8fafc;
  transition: background 0.2s;
}
.service-item--blue:hover   { background: var(--tec-blue-light); }
.service-item--green:hover  { background: var(--tec-green-light); }
.service-item--orange:hover { background: var(--tec-orange-light); }

.service-item__dot {
  flex-shrink: 0;
  width: 0.5rem; height: 0.5rem;
  border-radius: 50%;
  margin-top: 0.35rem;
}

/* Service CTA */
.service-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.85rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.25s ease;
}
.service-cta span { transition: transform 0.2s; }
.service-cta:hover span { transform: translateX(4px); }

.service-cta--blue   { background: #eff6ff; color: var(--tec-blue); }
.service-cta--green  { background: #f0fdf4; color: var(--tec-green); }
.service-cta--orange { background: #fff7ed; color: var(--tec-orange); }

.service-cta--blue:hover   { background: var(--tec-blue);   color: white; }
.service-cta--green:hover  { background: var(--tec-green);  color: white; }
.service-cta--orange:hover { background: var(--tec-orange); color: white; }

/* ========================================================
   SOLUTIONS SECTION (Dark / Glassmorphism)
   ======================================================== */
.solutions-bg-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 30%, rgba(37,99,235,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 80% 70%, rgba(5,150,105,0.1) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(234,88,12,0.08) 0%, transparent 50%);
  pointer-events: none;
}

/* Glass Cards */
.glass-card {
  position: relative;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1.25rem;
  padding: 1.75rem;
  transition: all 0.35s ease;
  overflow: hidden;
}
.glass-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.glass-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -10px rgba(0,0,0,0.4);
}

.glass-card__tag {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  border-radius: 2rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.glass-tag--blue   { background: rgba(37,99,235,0.2);  color: #93c5fd; border: 1px solid rgba(37,99,235,0.3); }
.glass-tag--green  { background: rgba(5,150,105,0.2);  color: #6ee7b7; border: 1px solid rgba(5,150,105,0.3); }
.glass-tag--orange { background: rgba(234,88,12,0.2);  color: #fdba74; border: 1px solid rgba(234,88,12,0.3); }

.glass-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: white;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.glass-card__body {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.glass-card__metrics {
  display: flex;
  gap: 1.5rem;
}
.metric          { display: flex; flex-direction: column; gap: 0.15rem; }
.metric-num      { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; line-height: 1; }
.metric-label    { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.4); }

/* Consulting Pillars */
.consulting-pillar {
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03);
  transition: all 0.3s ease;
}
.consulting-pillar:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-3px);
}

.consulting-pillar--blue   { border-top: 3px solid var(--tec-blue); }
.consulting-pillar--green  { border-top: 3px solid var(--tec-green); }
.consulting-pillar--orange { border-top: 3px solid var(--tec-orange); }

.consulting-pillar__num   { font-family: var(--font-display); font-size: 2rem; color: rgba(255,255,255,0.12); }
.consulting-pillar__title { font-weight: 600; color: white; margin-top: -0.25rem; }
.consulting-pillar__body  { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin-top: 0.5rem; line-height: 1.6; }

/* ========================================================
   KNOWLEDGE CENTER (Amber/Warm)
   ======================================================== */
.insights-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(245,158,11,0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* Insight Cards */
.insight-card {
  background: white;
  border-radius: 1.125rem;
  border: 1px solid #e2e8f0;
  padding: 1.75rem;
  transition: all 0.3s ease;
}
.insight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -8px rgba(0,0,0,0.1);
}

.insight-card--featured {
  background: linear-gradient(160deg, #fffbf0 0%, white 40%);
  border-color: #fde68a;
}

.insight-card--sm {
  flex: 1;
  padding: 1.25rem 1.5rem;
}

.insight-card__category {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 2rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.875rem;
}
.insight-cat--blue   { background: var(--tec-blue-light);   color: var(--tec-blue); }
.insight-cat--green  { background: var(--tec-green-light);  color: var(--tec-green); }
.insight-cat--orange { background: var(--tec-orange-light); color: var(--tec-orange); }

.insight-card__title  { font-family: var(--font-serif); color: #1e293b; line-height: 1.35; }
.insight-title--lg    { font-size: 1.45rem; }
.insight-title--sm    { font-size: 1rem; }

.insight-card__excerpt {
  margin-top: 0.875rem;
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.7;
}

.insight-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid #f1f5f9;
  gap: 1rem;
  flex-wrap: wrap;
}

.insight-meta    { display: flex; align-items: center; gap: 0.4rem; }
.insight-author  { font-size: 0.75rem; font-weight: 600; color: #475569; }
.insight-sep     { color: #cbd5e1; font-size: 0.75rem; }
.insight-date    { font-size: 0.75rem; color: #94a3b8; }
.insight-read    { font-size: 0.75rem; color: #94a3b8; }

.insight-read-btn {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--tec-blue);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: border-color 0.2s;
  white-space: nowrap;
}
.insight-read-btn:hover { border-color: var(--tec-blue); }

/* White Paper Banner */
.white-paper-banner {
  background: white;
  border: 1.5px solid #e2e8f0;
  border-radius: 1.125rem;
  padding: 1.75rem 2rem;
  box-shadow: 0 4px 20px -4px rgba(0,0,0,0.07);
}

/* ========================================================
   ABOUT SECTION
   ======================================================== */
.value-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -6px rgba(0,0,0,0.1);
  border-color: #bfdbfe;
}
.value-icon  { font-size: 2rem; margin-bottom: 0.75rem; }
.value-title { font-weight: 700; font-size: 0.9rem; color: #1e293b; margin-bottom: 0.375rem; }
.value-body  { font-size: 0.75rem; color: #64748b; line-height: 1.5; }

/* Team Cards */
.team-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 1.25rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.35s ease;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px -10px rgba(0,0,0,0.12);
}

.team-avatar {
  width: 5rem; height: 5rem;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s;
}
.team-card:hover .team-avatar { transform: scale(1.08); }

.team-avatar--blue   { background: var(--tec-blue-light); }
.team-avatar--green  { background: var(--tec-green-light); }
.team-avatar--orange { background: var(--tec-orange-light); }

.team-name { font-family: var(--font-display); font-size: 1.1rem; color: #1e293b; }
.team-role { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.25rem; }
.team-bio  { font-size: 0.82rem; color: #64748b; line-height: 1.65; margin-top: 0.875rem; }

/* ========================================================
   CONTACT SECTION
   ======================================================== */
.contact-bg-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 10% 50%, rgba(37,99,235,0.1) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 30%, rgba(251,191,36,0.07) 0%, transparent 50%);
  pointer-events: none;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 0.875rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s;
}
.contact-info-item:hover { background: rgba(255,255,255,0.07); }
.contact-info-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 0.1rem; }

.badge-pill {
  padding: 0.35rem 1rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
}
.badge-blue   { background: rgba(37,99,235,0.2);  color: #93c5fd; }
.badge-green  { background: rgba(5,150,105,0.2);  color: #6ee7b7; }
.badge-orange { background: rgba(234,88,12,0.2);  color: #fdba74; }

/* Contact Form */
.contact-form-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2.25rem;
  box-shadow: 0 24px 60px -12px rgba(0,0,0,0.35);
}

.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.375rem;
}

.form-input {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 0.625rem;
  font-size: 0.875rem;
  color: #1e293b;
  background: #f8fafc;
  transition: all 0.2s ease;
  font-family: var(--font-sans);
  outline: none;
}
.form-input:focus {
  border-color: var(--tec-blue);
  background: white;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.form-select { appearance: none; cursor: pointer; }
.form-textarea { resize: vertical; min-height: 80px; }

.btn-submit {
  padding: 0.875rem 2rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--tec-blue) 0%, var(--tec-blue-dark) 100%);
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(37,99,235,0.35);
  cursor: pointer;
  border: none;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,99,235,0.45);
}
.btn-submit:active { transform: translateY(0); }

/* ========================================================
   FOOTER
   ======================================================== */
.footer-link {
  display: block;
  font-size: 0.85rem;
  color: #64748b;
  transition: color 0.2s;
  padding: 0.15rem 0;
}
.footer-link:hover       { color: #e2e8f0; }
.footer-link--blue:hover   { color: #93c5fd; }
.footer-link--green:hover  { color: #6ee7b7; }
.footer-link--orange:hover { color: #fdba74; }

/* ========================================================
   SCROLL ANIMATIONS
   ======================================================== */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-card {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-card  { transform: translateY(30px); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-card.visible {
  opacity: 1;
  transform: translate(0);
}

/* Delay variants */
.reveal-card[data-delay="75"]  { transition-delay: 75ms; }
.reveal-card[data-delay="100"] { transition-delay: 100ms; }
.reveal-card[data-delay="150"] { transition-delay: 150ms; }
.reveal-card[data-delay="200"] { transition-delay: 200ms; }
.reveal-card[data-delay="225"] { transition-delay: 225ms; }
.reveal-card[data-delay="300"] { transition-delay: 300ms; }

/* ========================================================
   BACK TO TOP BUTTON
   ======================================================== */
#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================================
   RESPONSIVE TWEAKS
   ======================================================== */
@media (max-width: 768px) {
  .hero-section { min-height: auto; padding-top: 6rem; padding-bottom: 5rem; }
  .stat-num     { font-size: 1.35rem; }
  .glass-card__metrics { gap: 1rem; }
  .insight-card__footer { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .contact-form-card { padding: 1.5rem; }
  .white-paper-banner { padding: 1.25rem; }
}

@media (max-width: 480px) {
  .service-card { padding: 1.5rem; }
  .section-title { font-size: 1.75rem; }
}

/* ========================================================
   UTILITIES
   ======================================================== */
::selection { background: rgba(37,99,235,0.2); }

/* Smooth scroll offset for fixed nav */
[id] { scroll-margin-top: 5rem; }
