/* ==========================================================================
   WCC CONSULTORES COMERCIALES - MODERN DESIGN SYSTEM 2026
   Palette: Corporate Deep Blue (#024793) & Vibrant Energy Orange (#eb5616)
   ========================================================================== */

:root {
  --primary-blue: #024793;
  --primary-blue-dark: #072e5c;
  --primary-blue-deep: #051a36;
  --primary-blue-light: #1a64bd;
  --primary-blue-glow: rgba(2, 71, 147, 0.25);

  --accent-orange: #eb5616;
  --accent-orange-hover: #d1460a;
  --accent-orange-light: #ff7438;
  --accent-orange-glow: rgba(235, 86, 22, 0.35);

  --bg-dark: #081225;
  --bg-darker: #040914;
  --bg-surface: #0f203c;
  --bg-surface-glass: rgba(15, 32, 60, 0.75);

  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --bg-card-light: #ffffff;
  --border-light: #e2e8f0;

  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #94a3b8;
  --text-white: #ffffff;

  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(2, 71, 147, 0.06);
  --shadow-md: 0 8px 24px rgba(2, 71, 147, 0.1);
  --shadow-lg: 0 16px 36px rgba(2, 71, 147, 0.16);
  --shadow-orange: 0 10px 30px rgba(235, 86, 22, 0.3);

  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: var(--bg-light);
  overflow-x: hidden;
}

body {
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
}

.text-gradient-blue {
  background: linear-gradient(135deg, #024793 0%, #1a64bd 60%, #eb5616 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-orange {
  background: linear-gradient(135deg, #eb5616 0%, #ff7438 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(2, 71, 147, 0.08);
  color: var(--primary-blue);
  border: 1px solid rgba(2, 71, 147, 0.16);
  margin-bottom: 1rem;
}

.section-badge.orange {
  background: rgba(235, 86, 22, 0.1);
  color: var(--accent-orange);
  border-color: rgba(235, 86, 22, 0.25);
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

/* ==========================================================================
   NAVBAR (Glassmorphic)
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition-normal);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(2, 71, 147, 0.08);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-bottom-color: rgba(2, 71, 147, 0.14);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: height var(--transition-fast);
}

.site-header.scrolled .nav-container {
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.nav-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.08));
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-text .brand-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--primary-blue);
  line-height: 1;
}

.nav-logo-text .brand-subtitle {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-orange);
  transition: width var(--transition-fast);
}

.nav-link:hover {
  color: var(--accent-orange);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition-normal);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-orange) 0%, #ff6e2e 100%);
  color: var(--text-white);
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #d1460a 0%, var(--accent-orange) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(235, 86, 22, 0.45);
}

.btn-blue {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
  color: var(--text-white);
  box-shadow: 0 8px 24px rgba(2, 71, 147, 0.3);
}

.btn-blue:hover {
  background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(2, 71, 147, 0.4);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: var(--text-white);
  color: var(--primary-blue);
  border-color: var(--text-white);
  transform: translateY(-2px);
}

.btn-outline-blue {
  background: transparent;
  color: var(--primary-blue);
  border: 1.5px solid var(--primary-blue);
}

.btn-outline-blue:hover {
  background: var(--primary-blue);
  color: var(--text-white);
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--primary-blue);
  cursor: pointer;
}

/* Mobile Nav Drawer */
.mobile-nav {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 2.5rem 2rem;
  transform: translateX(100%);
  transition: transform var(--transition-normal);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.mobile-nav-links a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
}

.mobile-nav-links a:hover {
  color: var(--accent-orange);
}

/* ==========================================================================
   HERO BANNER CAROUSEL (Moving automatically)
   ========================================================================== */
.hero-slider-section {
  position: relative;
  height: 92vh;
  min-height: 640px;
  max-height: 860px;
  margin-top: 80px;
  overflow: hidden;
  background-color: var(--bg-dark);
}

.hero-slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s ease;
  overflow: hidden;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 7s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-slide.active .hero-slide-bg {
  transform: scale(1);
}

/* Rich multi-layer overlay: Deep Blue with Orange Glow */
.hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(5, 26, 54, 0.94) 0%,
    rgba(7, 46, 92, 0.85) 50%,
    rgba(15, 32, 60, 0.5) 100%
  );
  z-index: 2;
}

.hero-slide-overlay::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 60%;
  background: radial-gradient(circle, rgba(235, 86, 22, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.hero-slide-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-content-inner {
  max-width: 760px;
  color: var(--text-white);
  padding: 2rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(235, 86, 22, 0.2);
  border: 1px solid rgba(235, 86, 22, 0.5);
  color: #ff9b6a;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.6s 0.2s ease, opacity 0.6s 0.2s ease;
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-orange);
  box-shadow: 0 0 10px var(--accent-orange);
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-white);
  margin-bottom: 1.25rem;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.7s 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.7s 0.3s ease;
}

.hero-title span.highlight-orange {
  color: var(--accent-orange-light);
  background: linear-gradient(135deg, #ff7438 0%, #eb5616 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 2.2rem;
  max-width: 650px;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.7s 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.7s 0.4s ease;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.7s 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.7s 0.5s ease;
}

.hero-slide.active .hero-badge,
.hero-slide.active .hero-title,
.hero-slide.active .hero-description,
.hero-slide.active .hero-actions {
  transform: translateY(0);
  opacity: 1;
}

/* Slider Controls & Progress Bar */
.hero-slider-controls {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  right: 0;
  z-index: 10;
}

.hero-controls-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.slider-indicators {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.slider-dot {
  width: 14px;
  height: 6px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}

.slider-dot.active {
  width: 36px;
  background: var(--accent-orange);
}

.slider-arrows {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.slider-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: var(--transition-fast);
}

.slider-btn:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  transform: scale(1.08);
}

/* Automatic slide progress line */
.hero-progress-bar-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 20;
}

.hero-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary-blue-light) 0%, var(--accent-orange) 100%);
  transition: width 0.1s linear;
}

/* ==========================================================================
   METRICS BANNER
   ========================================================================== */
.stats-banner {
  background: linear-gradient(135deg, #072e5c 0%, #051a36 100%);
  color: var(--text-white);
  padding: 3rem 0;
  position: relative;
  z-index: 5;
  border-bottom: 2px solid rgba(235, 86, 22, 0.2);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition-normal);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(235, 86, 22, 0.4);
  transform: translateY(-4px);
}

.stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(235, 86, 22, 0.2) 0%, rgba(2, 71, 147, 0.3) 100%);
  border: 1px solid rgba(235, 86, 22, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange-light);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.1;
  margin-bottom: 0.2rem;
}

.stat-number span.stat-accent {
  color: var(--accent-orange);
}

.stat-label {
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.4;
}

/* ==========================================================================
   METODOLOGÍA AGZ (Análisis Geográfico de Zona)
   ========================================================================== */
.section-agz {
  padding: 6.5rem 0;
  background: #ffffff;
  position: relative;
}

.agz-header-content {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 4rem auto;
}

.agz-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.agz-image-showcase {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.agz-image-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.agz-image-showcase:hover img {
  transform: scale(1.03);
}

.agz-floating-card {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(2, 71, 147, 0.12);
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.agz-floating-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--primary-blue);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.agz-floating-card-text h5 {
  font-size: 1rem;
  color: var(--primary-blue);
  margin-bottom: 2px;
}

.agz-floating-card-text p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* AGZ Step List */
.agz-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.agz-step-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.4rem;
  border-radius: var(--radius-md);
  background: var(--bg-light);
  border: 1px solid rgba(2, 71, 147, 0.08);
  transition: var(--transition-normal);
  cursor: pointer;
}

.agz-step-item:hover,
.agz-step-item.active {
  background: #ffffff;
  border-color: var(--accent-orange);
  box-shadow: 0 8px 24px rgba(235, 86, 22, 0.12);
  transform: translateX(6px);
}

.agz-step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.agz-step-item:hover .agz-step-number,
.agz-step-item.active .agz-step-number {
  background: linear-gradient(135deg, var(--accent-orange) 0%, #ff7438 100%);
  box-shadow: var(--shadow-orange);
}

.agz-step-info h4 {
  font-size: 1.15rem;
  color: var(--primary-blue);
  margin-bottom: 0.35rem;
}

.agz-step-info p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   TIPIFICACIÓN DE CLIENTES (A, B, C, D) & CANALES
   ========================================================================== */
.section-typification {
  padding: 6rem 0;
  background: #f1f5f9;
}

.typification-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.tier-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.tier-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--primary-blue);
}

.tier-card.tier-a::before {
  background: linear-gradient(90deg, #eb5616, #ff7438);
}

.tier-card.tier-b::before {
  background: linear-gradient(90deg, #024793, #1a64bd);
}

.tier-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.tier-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.tier-card.tier-a .tier-badge {
  background: rgba(235, 86, 22, 0.12);
  color: var(--accent-orange);
}

.tier-card.tier-b .tier-badge {
  background: rgba(2, 71, 147, 0.12);
  color: var(--primary-blue);
}

.tier-card.tier-c .tier-badge {
  background: rgba(56, 189, 248, 0.12);
  color: #0284c7;
}

.tier-card.tier-d .tier-badge {
  background: rgba(100, 116, 139, 0.12);
  color: #475569;
}

.tier-name {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.tier-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.tier-features {
  list-style: none;
  border-top: 1px solid #f1f5f9;
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tier-features li {
  font-size: 0.82rem;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tier-features li i {
  color: var(--accent-orange);
  font-size: 0.9rem;
}

/* Channels Box */
.channel-classes-box {
  margin-top: 3.5rem;
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 2.5rem;
  border: 1px solid var(--border-light);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.channel-class-col h4 {
  font-size: 1.25rem;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.8rem;
}

.channel-class-col h4 i {
  color: var(--accent-orange);
}

.channel-class-col p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.channel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.channel-tag {
  background: #f1f5f9;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: #334155;
  border: 1px solid #e2e8f0;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.section-services {
  padding: 6.5rem 0;
  background: #ffffff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.service-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 2.2rem 1.8rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(2, 71, 147, 0.25);
  box-shadow: var(--shadow-lg);
}

.service-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(2, 71, 147, 0.08) 0%, rgba(2, 71, 147, 0.15) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  transition: var(--transition-fast);
}

.service-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, var(--accent-orange) 0%, #ff7438 100%);
  color: var(--text-white);
  box-shadow: var(--shadow-orange);
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
  color: var(--primary-blue);
}

.service-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
}

.service-bullets li {
  font-size: 0.85rem;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-bullets li i {
  color: var(--accent-orange);
  font-size: 0.8rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-orange);
  transition: gap var(--transition-fast);
}

.service-link:hover {
  gap: 0.7rem;
  color: var(--accent-orange-hover);
}

/* ==========================================================================
   INTERACTIVE SIMULATOR: AGZ RUTAS & COBERTURA
   ========================================================================== */
.section-simulator {
  padding: 6.5rem 0;
  background: linear-gradient(135deg, #051a36 0%, #072e5c 60%, #0b2246 100%);
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}

.section-simulator::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(235, 86, 22, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.simulator-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-top: 3rem;
}

.simulator-info h3 {
  font-size: 2.2rem;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.simulator-info p {
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.simulator-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.simulator-highlight-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: #e2e8f0;
  font-size: 0.95rem;
}

.simulator-highlight-item i {
  color: var(--accent-orange-light);
  font-size: 1.2rem;
}

/* Simulator Form Card */
.simulator-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.simulator-box h4 {
  font-size: 1.4rem;
  color: var(--text-white);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.simulator-box h4 i {
  color: var(--accent-orange);
}

.sim-input-group {
  margin-bottom: 1.4rem;
}

.sim-input-group label {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 0.5rem;
}

.sim-input-group label span.val-badge {
  color: var(--accent-orange-light);
  font-weight: 700;
}

.sim-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.2);
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.sim-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-orange);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(235, 86, 22, 0.8);
  transition: transform 0.1s ease;
}

.sim-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.sim-select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(15, 32, 60, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-size: 0.95rem;
  outline: none;
}

/* Simulator Results Panel */
.sim-results {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.sim-results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.sim-res-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 1rem;
  text-align: center;
}

.sim-res-title {
  font-size: 0.78rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.sim-res-val {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-orange-light);
}

.sim-res-val.text-green {
  color: #34d399;
}

.sim-breakeven-note {
  margin-top: 1rem;
  background: rgba(235, 86, 22, 0.15);
  border: 1px solid rgba(235, 86, 22, 0.35);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: #ffb594;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* ==========================================================================
   ABOUT / LEADERSHIP SECTION (Wolfgang Castillo)
   ========================================================================== */
.section-about {
  padding: 6.5rem 0;
  background: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top;
}

.about-experience-pill {
  position: absolute;
  bottom: 2rem;
  right: -1rem;
  background: linear-gradient(135deg, var(--accent-orange) 0%, #ff7438 100%);
  color: var(--text-white);
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-orange);
  text-align: center;
}

.about-experience-pill .exp-years {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.about-experience-pill .exp-text {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-content h2 {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
  color: var(--primary-blue);
}

.about-role-tag {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-orange);
  margin-bottom: 1.5rem;
  display: block;
}

.about-bio {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-quote {
  background: #f8fafc;
  border-left: 4px solid var(--accent-orange);
  padding: 1.2rem 1.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: #334155;
  margin-bottom: 2rem;
  font-size: 0.98rem;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.pillar-item i {
  color: var(--primary-blue);
  font-size: 1.2rem;
  margin-top: 3px;
}

.pillar-item h5 {
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 2px;
}

.pillar-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ==========================================================================
   CONTACT & AUDIT REQUEST SECTION
   ========================================================================== */
.section-contact {
  padding: 6.5rem 0;
  background: #f8fafc;
  position: relative;
}

.contact-card-wrap {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
}

.contact-info-side {
  background: linear-gradient(135deg, #051a36 0%, #072e5c 100%);
  color: var(--text-white);
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.contact-info-side::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(235, 86, 22, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.contact-info-side h3 {
  font-size: 2rem;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.contact-info-side p {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact-direct-items {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange-light);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item h5 {
  font-size: 0.8rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.contact-item a,
.contact-item span {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 600;
}

.contact-item a:hover {
  color: var(--accent-orange-light);
}

/* Contact Form Side */
.contact-form-side {
  padding: 3.5rem 3rem;
}

.contact-form-side h4 {
  font-size: 1.6rem;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.contact-form-side p.form-subtitle {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid #cbd5e1;
  font-size: 0.95rem;
  color: var(--text-main);
  background: #ffffff;
  outline: none;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(2, 71, 147, 0.12);
}

textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

/* Toast alert notification */
.toast-msg {
  display: none;
  margin-top: 1.25rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
}

.toast-msg.success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--bg-darker);
  color: #94a3b8;
  padding: 5rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand img {
  height: 52px;
  width: auto;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1rem;
  transition: var(--transition-fast);
}

.footer-social-link:hover {
  background: var(--accent-orange);
  transform: translateY(-3px);
}

.footer-col h5 {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: #94a3b8;
}

.footer-links a:hover {
  color: var(--accent-orange-light);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #64748b;
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 900;
  transition: var(--transition-normal);
}

.floating-whatsapp:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulse 2s infinite;
}

/* Animations */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.18);
    opacity: 0.4;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN (Tablets & Mobile)
   ========================================================================== */
@media (max-width: 1024px) {
  .nav-links, .nav-actions .btn {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .agz-grid {
    grid-template-columns: 1fr;
  }
  .typification-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .simulator-container {
    grid-template-columns: 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .contact-card-wrap {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .hero-slider-section {
    height: 85vh;
    min-height: 560px;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .typification-grid {
    grid-template-columns: 1fr;
  }
  .channel-classes-box {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}


/* ==========================================================================
   CLIENT LOGOS MARQUEE & SHOWCASE
   ========================================================================== */
.section-clients {
  background: #ffffff;
  padding: 4rem 0 3rem 0;
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

.clients-title-bar {
  text-align: center;
  margin-bottom: 2.5rem;
}

.clients-title-bar h4 {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.clients-marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 2rem;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.clients-track {
  display: flex;
  flex-shrink: 0;
  gap: 2rem;
  align-items: center;
  animation: marquee 30s linear infinite;
}

.clients-marquee:hover .clients-track {
  animation-play-state: paused;
}

.client-logo-card {
  width: 180px;
  height: 90px;
  background: #ffffff;
  border-radius: var(--radius-sm);
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.client-logo-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-blue);
  box-shadow: 0 8px 18px rgba(2, 71, 147, 0.12);
}

.client-logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(40%);
  transition: filter var(--transition-fast);
}

.client-logo-card:hover img {
  filter: grayscale(0%);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-100% - 2rem)); }
}

/* ==========================================================================
   DIAGNOSTIC SECTION ("¿Tu empresa vive esto?")
   ========================================================================== */
.section-diagnostic {
  padding: 6.5rem 0;
  background: #f8fafc;
}

.diagnostic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.diagnostic-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 1.6rem 1.4rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
  border-left: 4px solid var(--accent-orange);
}

.diagnostic-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--primary-blue);
}

.diagnostic-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(235, 86, 22, 0.1);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.diagnostic-card:hover .diagnostic-icon {
  background: rgba(2, 71, 147, 0.1);
  color: var(--primary-blue);
}

.diagnostic-content h5 {
  font-size: 1.05rem;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.diagnostic-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.diagnostic-banner-cta {
  margin-top: 3rem;
  background: linear-gradient(135deg, #051a36 0%, #072e5c 100%);
  border-radius: var(--radius-md);
  padding: 2.2rem 3rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: var(--shadow-lg);
}

.diagnostic-banner-cta h4 {
  font-size: 1.35rem;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.diagnostic-banner-cta p {
  color: #cbd5e1;
  font-size: 0.95rem;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.section-testimonials {
  padding: 6.5rem 0;
  background: #ffffff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.testimonial-card {
  background: #f8fafc;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  position: relative;
}

.testimonial-card:hover {
  background: #ffffff;
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(2, 71, 147, 0.2);
}

.test-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.test-logo {
  height: 38px;
  max-width: 120px;
  object-fit: contain;
}

.test-quote-icon {
  font-size: 2rem;
  color: var(--accent-orange);
  opacity: 0.6;
}

.test-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #334155;
  font-style: italic;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.test-author {
  border-top: 1px solid #e2e8f0;
  padding-top: 1.25rem;
}

.test-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 2px;
}

.test-role {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ==========================================================================
   PARTNERS / LEADERSHIP TEAM
   ========================================================================== */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}

.partner-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(2, 71, 147, 0.3);
}

.partner-card-header {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.partner-avatar {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-blue);
  box-shadow: 0 4px 14px rgba(2, 71, 147, 0.2);
  flex-shrink: 0;
}

.partner-avatar-placeholder {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 800;
  flex-shrink: 0;
}

.partner-title-info h3 {
  font-size: 1.45rem;
  color: var(--primary-blue);
  margin-bottom: 4px;
}

.partner-creds {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent-orange);
}

.partner-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.partner-bullets li {
  font-size: 0.92rem;
  color: #334155;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  line-height: 1.5;
}

.partner-bullets li i {
  color: var(--accent-orange);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}


.about-leader-block {
  margin-bottom: 5rem;
}

.about-leader-block:last-child {
  margin-bottom: 0;
}

@media (min-width: 1025px) {
  .about-grid.reverse {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.about-experience-pill.blue {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
  box-shadow: 0 10px 30px rgba(2, 71, 147, 0.35);
}
