/* ==========================================================================
   MULTI SERVICE DE LA COSTA S.A.S. — HOME PAGE STYLES
   ========================================================================== */

/* HERO SLIDER SECTION (FULL MONITOR HEIGHT COVERAGE) */
.hero-slider-section {
  position: relative;
  background: radial-gradient(ellipse 90% 70% at 78% 8%, #123456 0%, var(--navy-950) 65%);
  color: #fff;
  overflow: hidden;
  min-height: 125vh; /* Compensates for zoom: 0.8 to fill 100% monitor height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.slider-container {
  position: relative;
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.75s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 0 32px;
}

.slide.active-slide {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  width: 100%;
  padding-top: 100px;
  padding-bottom: 40px;
  min-height: calc(125vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide .wrap {
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide-bg-grid {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(ellipse at 80% 20%, rgba(94, 162, 38, 0.25) 0%, transparent 60%),
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: cover, 48px 48px, 48px 48px;
  background-position: center;
  pointer-events: none;
}

.slide-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

/* HERO HEADING & DESCRIPTION TYPOGRAPHY */
.slide-content h1 {
  font-size: clamp(26px, 3.5vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  margin-top: 16px;
  letter-spacing: -0.02em;
}

.slide-desc {
  font-size: 15px;
  color: #AECDE0;
  line-height: 1.65;
  max-width: 520px;
  margin-top: 16px;
}

.slide-ctas {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.highlight-green { color: var(--green-300); }
.highlight-gold { color: var(--gold-300); }

/* SLIDE HERO VISUAL CONTAINER (3D PERSPECTIVE STAGE) */
.slide-hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  min-height: 500px;
  perspective: 1200px;
  transform-style: preserve-3d;
}

/* 3D AMBIENT VOLUMETRIC GLOW ORB BEHIND PERSON */
.hero-glow-3d {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%) translateZ(-80px);
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(65px);
  opacity: 0.65;
  pointer-events: none;
  z-index: 0;
  animation: glowPulse3d 4s ease-in-out infinite alternate;
}

.hero-glow-green {
  background: radial-gradient(circle, var(--green-500) 0%, rgba(94, 162, 38, 0.2) 60%, transparent 80%);
}

.hero-glow-gold {
  background: radial-gradient(circle, var(--gold-500) 0%, rgba(227, 167, 62, 0.25) 60%, transparent 80%);
}

@keyframes glowPulse3d {
  0% { transform: translate(-50%, -50%) translateZ(-80px) scale(0.9); opacity: 0.55; }
  100% { transform: translate(-50%, -46%) translateZ(-40px) scale(1.15); opacity: 0.8; }
}

/* FLOATING 3D GLASS BADGES */
.floating-3d-badge {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(8, 29, 52, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-md);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 
    0 15px 35px -5px rgba(0, 0, 0, 0.4),
    0 0 15px rgba(94, 162, 38, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateZ(90px) rotateY(-5deg) rotateX(3deg);
  transition: all 0.4s var(--ease);
  pointer-events: auto;
  animation: floatBadge3d 5s ease-in-out infinite alternate;
}

.badge-top-right {
  top: 15px;
  right: 8%;
}

.badge-top-left {
  top: 20px;
  left: 5%;
}

.badge-gold-3d {
  border-color: rgba(240, 200, 120, 0.4);
  box-shadow: 
    0 15px 35px -5px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(227, 167, 62, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.badge-icon-3d {
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-text-3d {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.badge-text-3d .b-title {
  font-size: 13px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}

.badge-text-3d .b-sub {
  font-size: 11px;
  color: var(--green-300);
  font-family: 'IBM Plex Mono', monospace;
}

.badge-gold-3d .b-sub {
  color: var(--gold-300);
}

@keyframes floatBadge3d {
  0% { transform: translateZ(90px) translateY(0px) rotateY(-5deg) rotateX(3deg); }
  100% { transform: translateZ(100px) translateY(-10px) rotateY(-2deg) rotateX(-2deg); }
}

.floating-3d-badge:hover {
  transform: translateZ(120px) scale(1.05) rotateY(0deg) rotateX(0deg);
  border-color: var(--green-300);
  box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.5), 0 0 25px rgba(147, 204, 92, 0.5);
}

/* PERSON PNG IMAGE - 3D CUTOUT FLOATING IN STAGE */
.slide-person-img {
  max-height: 520px;
  width: auto;
  object-fit: contain;
  filter: 
    drop-shadow(0 25px 35px rgba(0, 0, 0, 0.55)) 
    drop-shadow(0 0 25px rgba(94, 162, 38, 0.25))
    brightness(1.03) contrast(1.02);
  position: absolute;
  bottom: -15px;
  right: 12%;
  z-index: 2;
  transform: translateZ(40px) rotateY(-6deg) rotateX(2deg);
  transition: all 0.6s var(--ease);
  pointer-events: auto;
  cursor: pointer;
}

.slide-person-accounting {
  right: 2%;
  max-height: 540px;
  filter: 
    drop-shadow(0 25px 35px rgba(0, 0, 0, 0.6)) 
    drop-shadow(0 0 30px rgba(227, 167, 62, 0.45))
    brightness(1.04) contrast(1.02);
}

.slide.active-slide .slide-person-img {
  animation: heroFloat3d 6s ease-in-out infinite alternate;
}

.slide-person-img:hover {
  transform: translateZ(70px) scale(1.04) rotateY(-2deg) rotateX(0deg);
  filter: 
    drop-shadow(0 30px 45px rgba(0, 0, 0, 0.65)) 
    drop-shadow(0 0 35px rgba(94, 162, 38, 0.45));
}

@keyframes heroFloat3d {
  0% { transform: translateZ(40px) translateY(0px) rotateY(-6deg) rotateX(2deg); }
  100% { transform: translateZ(65px) translateY(-14px) rotateY(-3deg) rotateX(-2deg); }
}

/* SLIDE GRAPHIC SHOWCASE CARD (3D GLASS CARD OVERLAPPING IMAGE) */
.slide-card-visual {
  background: linear-gradient(135deg, rgba(12, 38, 66, 0.85) 0%, rgba(5, 20, 36, 0.92) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  padding: 24px 28px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 
    0 35px 70px -15px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(94, 162, 38, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 340px;
  transform: translateZ(70px) rotateY(4deg) rotateX(-2deg);
  transition: all 0.5s var(--ease);
  transform-style: preserve-3d;
}

.card-gold-border {
  border-color: rgba(227, 167, 62, 0.5) !important;
  box-shadow: 
    0 35px 70px -15px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(227, 167, 62, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

.slide-card-visual:hover {
  transform: translateZ(95px) rotateY(0deg) rotateX(0deg) scale(1.02);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 
    0 40px 80px -15px rgba(0, 0, 0, 0.7),
    0 0 45px rgba(94, 162, 38, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.slide-card-over {
  margin-top: auto;
  align-self: flex-start;
}

.card-stat-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  color: #C3D5E5;
}

.card-stat strong {
  color: var(--green-300);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
}

.card-stat-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.slide-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--green-500);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px -4px rgba(94, 162, 38, 0.5);
}
.slide-card-icon svg { width: 28px; height: 28px; }

/* HERO BOTTOM NUMBER STRIP (01 - 06) */
.hero-bottom-bar {
  position: relative;
  z-index: 5;
  background: rgba(8, 29, 52, 0.5);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px 0;
}

.hero-strip-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  align-items: center;
}

.strip-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.strip-item .n {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--green-300);
  font-weight: 600;
  letter-spacing: 0.08em;
}
.strip-item .t {
  font-size: 12px;
  font-weight: 600;
  color: #E2ECF5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.strip-item .d {
  font-size: 11.5px;
  color: #8DA4B8;
  line-height: 1.3;
}

/* SLIDER CONTROLS & ARROWS */
.slider-controls {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 16px;
}
.slider-arrows {
  display: flex;
  gap: 8px;
}
.slider-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.25);
  transition: all 0.25s var(--ease);
  cursor: pointer;
}
.slider-arrow:hover {
  background: var(--green-500);
  border-color: var(--green-500);
}

.slider-dots {
  display: flex;
  gap: 8px;
}
.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.slider-dot.active-dot {
  width: 32px;
  border-radius: 100px;
  background: var(--green-500);
}

/* GEAR TOOTH DIVIDER */
.tooth-divider {
  display: block;
  width: 100%;
  height: 34px;
  fill: var(--gray-50);
  position: relative;
  z-index: 2;
  margin-top: -1px;
}

/* QUICK CAROUSEL SECTION */
.quick-carousel-section {
  background: var(--gray-50);
  padding: 60px 0;
}
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.section-header .eyebrow { color: var(--green-600); margin-bottom: 12px; }
.section-header h2 { font-size: clamp(22px, 2.8vw, 34px); color: var(--navy-900); }
.section-header p { margin-top: 12px; font-size: 14.5px; color: var(--gray-500); }

.carousel-track-wrapper {
  overflow: hidden;
  position: relative;
  padding: 10px 0;
  cursor: grab;
  user-select: none;
}
.carousel-track-wrapper.is-dragging {
  cursor: grabbing;
}
.carousel-track-wrapper.is-dragging .carousel-card {
  pointer-events: none; /* Evita clicks accidentales al arrastrar */
}
.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s var(--ease);
  will-change: transform;
}
.carousel-card {
  flex: 0 0 280px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(10,37,64,0.06);
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.carousel-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: var(--green-300);
}
.c-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.c-card-icon svg { width: 24px; height: 24px; }
.bg-navy-icon { background: var(--navy-800); color: #fff; }
.bg-green-icon { background: var(--green-500); color: #fff; }
.bg-gold-icon { background: var(--gold-500); color: var(--navy-950); }

.carousel-card h3 { font-size: 18px; color: var(--navy-900); }
.carousel-card p { font-size: 13.5px; color: var(--gray-500); margin-top: 8px; }

/* STATS COUNTER BAR */
.stats-bar {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: #fff;
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item .number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--green-300);
}
.stat-item .label {
  font-size: 14px;
  color: #A5B8C9;
  margin-top: 6px;
  font-weight: 500;
}

@media (max-width: 992px) {
  .slide-grid { grid-template-columns: 1fr; gap: 32px; }
  .slide-hero-visual { min-height: 360px; perspective: 800px; }
  .slide-person-img { max-height: 380px; right: 5%; opacity: 0.9; transform: translateZ(30px) rotateY(-3deg); }
  .floating-3d-badge { transform: translateZ(40px) scale(0.9); }
  .slide-card-visual { max-width: 100%; transform: translateZ(40px) rotateY(0deg); }
  .hero-strip-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── CRO & TRUST STYLES ────────────────────────────────────────────────── */
.trust-strip {
  background: #ffffff;
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 4px 15px rgba(8, 29, 52, 0.04);
  padding: 16px 0;
  position: relative;
  z-index: 10;
}

.trust-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-900);
  font-family: 'Space Grotesk', sans-serif;
}

.trust-badge-item svg {
  width: 20px;
  height: 20px;
  color: var(--green-500);
  flex-shrink: 0;
}

.btn-pdf-download {
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  color: #F8FAFC !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-lg);
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  text-decoration: none;
}

.btn-pdf-download:hover {
  background: var(--green-500);
  border-color: var(--green-400);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(94, 162, 38, 0.4);
}

/* ── SECTORES ATENDIDOS (PREMIUM LIGHT THEME) ─────────────────────────────── */
.sectors-section {
  padding: 90px 0;
  background: linear-gradient(160deg, #F0F4F8 0%, #FFFFFF 60%, #EEF3F7 100%);
  color: var(--navy-900);
  position: relative;
  overflow: hidden;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
}

.sectors-section::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 300px;
  background: radial-gradient(circle, rgba(94, 162, 38, 0.08) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  margin-top: 52px;
}

.sector-card {
  background: #ffffff;
  border: 1px solid #E2ECF5;
  border-radius: 20px;
  padding: 32px 20px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(10, 37, 64, 0.06);
}

.sector-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 0 0 20px 20px;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.sector-agricola::after  { background: linear-gradient(90deg, #1B5E20, #76C442); }
.sector-salud::after     { background: linear-gradient(90deg, #0284C7, #38BDF8); }
.sector-industria::after { background: linear-gradient(90deg, #D97706, #F59E0B); }
.sector-educacion::after { background: linear-gradient(90deg, #4F46E5, #818CF8); }
.sector-puertos::after   { background: linear-gradient(90deg, #0D9488, #2DD4BF); }

.sector-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 45px rgba(10, 37, 64, 0.12),
    0 4px 12px rgba(10, 37, 64, 0.07);
  border-color: transparent;
}

.sector-card:hover::after { opacity: 1; }

.sector-icon-badge {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.sector-card:hover .sector-icon-badge {
  transform: scale(1.1) rotate(-4deg);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
}

.sector-icon-badge svg {
  width: 32px;
  height: 32px;
  color: #ffffff;
}

/* Individual Sector Color Themes */
.sector-agricola .sector-icon-badge  { background: linear-gradient(135deg, #1B5E20, #76C442); }
.sector-salud .sector-icon-badge     { background: linear-gradient(135deg, #0284C7, #38BDF8); }
.sector-industria .sector-icon-badge { background: linear-gradient(135deg, #D97706, #F59E0B); }
.sector-educacion .sector-icon-badge { background: linear-gradient(135deg, #4F46E5, #818CF8); }
.sector-puertos .sector-icon-badge   { background: linear-gradient(135deg, #0D9488, #2DD4BF); }

.sector-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16.5px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 8px;
  line-height: 1.3;
}

.sector-card p {
  font-size: 13px;
  color: #64748B;
  line-height: 1.6;
  flex-grow: 1;
}

.sector-tag {
  display: inline-block;
  margin-top: 18px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 100px;
  background: #F1F5F9;
  color: #64748B;
  border: 1px solid #E2E8F0;
}

/* ── COBERTURA REGIONAL GEO-SEO SECTION (LIGHT DASHBOARD) ─────────────────── */
.geo-regional-section {
  background: linear-gradient(180deg, #F8FAFC 0%, #EEF3F9 100%);
  border-top: 1px solid #DDE6F0;
  padding: 80px 0 70px;
  position: relative;
}

.geo-header-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.geo-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #16A34A;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
}

.geo-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 8px #22C55E;
  animation: geoPulse 2s infinite;
}

@keyframes geoPulse {
  0%   { opacity: 1; transform: scale(1); }
  50%  { opacity: 0.35; transform: scale(1.4); }
  100% { opacity: 1; transform: scale(1); }
}

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

.geo-card {
  background: #ffffff;
  border: 1px solid #DDE6F0;
  border-radius: 18px;
  padding: 26px 24px;
  transition: all 0.3s var(--ease);
  box-shadow: 0 2px 10px rgba(10, 37, 64, 0.05);
}

.geo-card:hover {
  border-color: var(--gold-400);
  box-shadow: 0 14px 32px rgba(10, 37, 64, 0.12);
  transform: translateY(-4px);
}

.geo-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #EDF2F7;
}

.geo-card-head svg {
  width: 22px;
  height: 22px;
  color: var(--gold-500);
  flex-shrink: 0;
}

.geo-card-head h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0;
}

.geo-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.geo-link-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: #F8FAFC;
  border: 1px solid #EDF2F7;
  border-radius: 10px;
  color: #475569;
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 500;
  transition: all 0.22s var(--ease);
}

.geo-link-item:hover {
  background: #FFFBEB;
  border-color: var(--gold-400);
  color: var(--navy-900);
  transform: translateX(4px);
}

.geo-link-item span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.geo-link-arrow {
  color: var(--gold-500);
  font-weight: 700;
  font-size: 14px;
  opacity: 0.5;
  flex-shrink: 0;
  margin-left: 6px;
  transition: transform 0.22s var(--ease), opacity 0.22s var(--ease);
}

.geo-link-item:hover .geo-link-arrow {
  opacity: 1;
  transform: translateX(4px);
}

@media (max-width: 1100px) {
  .sectors-grid { grid-template-columns: repeat(3, 1fr); }
  .geo-grid     { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .sectors-grid     { grid-template-columns: repeat(2, 1fr); }
  .geo-grid         { grid-template-columns: 1fr; }
  .geo-header-box   { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 500px) {
  .sectors-grid { grid-template-columns: 1fr; }
}


