/* ===================================================================
   GEOSEC — Design tokens
   =================================================================== */
:root {
  --void:        #07090df6;
  --carbon:      #0d11172f;
  --carbon-2:    #121922;
  --carbon-3:    #1a232e;
  --red:         #d61f2c;
  --red-bright:  #ff3b44;
  --red-dim:     #5c1118;
  --bone:        #eef1f5;
  --steel:       #9aa6b5;
  --steel-dim:   #66707e;
  --line:        rgba(255,255,255,0.08);
  --line-bright: rgba(255,255,255,0.16);
  --glow:        rgba(214,31,44,0.35);

  --font-display: 'Oswald', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-data:    'Rajdhani', sans-serif;

  --container: 1180px;
  --radius: 14px;
  --radius-sm: 8px;
  --ease: cubic-bezier(.22,.85,.32,1);
}

/*------*/
/* IMPORTAR FUENTES */
/* IMPORTAR FUENTES */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&family=Rajdhani:wght@500;600;700&display=swap');

/* Contenedor */
.brand-title{
    display:flex;
    flex-direction:column;
    align-items:center;
    width:100%;
    position:relative;   /* nuevo */
}

.brand-line{
    display:flex;
    align-items:flex-end;
    justify-content:center;
    gap:10px;
    padding-bottom:8px;
    /* quitamos position:relative y width:100% de aquí */
}

/* Línea roja */

.brand-title::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:3px;
    background: linear-gradient(
        to right,
        transparent 0%,
        #d61f2c 40%,
        #d61f2c 60%,
        transparent 100%
    );
}

/* GEOSEC */
.brand-name{
    font-family:'Oswald',sans-serif;
    font-size:2rem;
    font-weight:700;
    color:#fff;
    line-height:1;
}

/* Colombia */
.brand-country{
    font-family:'Rajdhani',sans-serif;
    font-size:1.15rem;
    font-weight:700;
    color:#fff;        /* antes: #d61f2c */
    margin-bottom: -8px;
}

/* Segunda línea */
.brand-subtitle{
    margin-top:8px;

    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;

    font-family:'Rajdhani',sans-serif;
    font-size:1rem;
    font-weight:600;
    color:#cfcfcf;
}

.brand-subtitle span{
    color:#d61f2c;
}
.nav__brand{
    width:320px;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-shrink:0;
}
/*-------*/
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* ===================================================================
   Reset & base
   =================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--void);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p {
  text-align: justify;
  text-align-last: left; /* evita que la última línea quede con espacios raros */
}
h1, h2, h3, h4, p { margin: 0; }
button { font: inherit; background: none; border: none; color: inherit; cursor: pointer; }

::selection { background: var(--red); color: #fff; }
:focus-visible { outline: 2px solid var(--red-bright); outline-offset: 3px; border-radius: 4px; }

.icon-defs { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.6; flex-shrink: 0; }
.icon--sm { width: 17px; height: 17px; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.text-accent { color: var(--red-bright); }

/* ===================================================================
   Canvas de partículas global — fixed, visible en TODA la página
   (se reduce la opacidad de los fondos de sección para que la red
   de puntos se vea a través de ellos en lugar de quedar tapada)
   =================================================================== */
.bg-net {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}

/* Todas las secciones encima del canvas */
.nav, main, footer, .hero__vignette {
  position: relative;
  z-index: 1;
}

/* ===================================================================
   Tipografía
   =================================================================== */
.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;

    font-family: var(--font-data);
    font-weight: 700;
    font-size: .96rem;      /* <-- Antes .96rem */

    letter-spacing: .20em;
    text-transform: uppercase;

    color: var(--steel);
    margin-bottom: 20px;
}
.eyebrow__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 0 4px var(--glow);
  animation: pulse-dot 2.2s ease-in-out infinite;
}
.cta .eyebrow{
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: .22em;
}
.about .eyebrow{
    font-size: 2rem;
}
.pillars .eyebrow{
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: .20em;
}

/* h2 más grande */
.h2 {
  font-family: var(--font-display);
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: .01em;
  font-size: clamp(1.3rem, 2.4vw, 2.4rem);
  line-height: 1.15;
  color: var(--bone);
}



.section-head { max-width: 660px; margin-bottom: 52px; }
.section-head__lede { margin-top: 18px; color: var(--steel); font-size: 1.14rem; }

/* ===================================================================
   Botones
   =================================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px;
  font-family: var(--font-data);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .96rem;
  border-radius: 4px;
  white-space: nowrap;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease);
}
.btn--primary {
  background: linear-gradient(135deg, var(--red) 0%, #a4151f 100%);
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(214,31,44,.55);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px -8px rgba(214,31,44,.7); }
.btn--lg { padding: 18px 34px; font-size: 1.02rem; }
.btn--ghost { border: 1px solid var(--line-bright); color: var(--bone); }
.btn--ghost:hover { border-color: var(--red-bright); color: var(--red-bright); }
.btn--text { color: var(--steel); padding: 15px 4px; }
.btn--text:hover { color: var(--bone); }
.btn .icon { transition: transform .3s var(--ease); }
.btn:hover .icon { transform: translateX(3px); }

/* ===================================================================
   Reveal on scroll
   =================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ===================================================================
   Nav
   =================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 18px 0;
  transition: padding .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  padding: 10px 0;
  background: rgba(7, 9, 13, 0.37);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}
.nav__inner{
    display:flex;
    align-items:center;
}
/* Logo del nav — envuelto en una "placa" clara redondeada.
   El logo original tiene fondo claro/textura propia, así que en vez
   de dejarlo flotando sobre el nav oscuro (se ve como una caja rota),
   lo enmarcamos en una placa a juego con su propio fondo. El wrapper
   tiene una altura fija + overflow:hidden, así que pase lo que pase
   con la imagen NUNCA puede desbordar ni agrandar el nav. */
.nav__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 6px 16px;
  background: var(--bone);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 14px -6px rgba(0,0,0,.5);
  flex-shrink: 0;
}
.nav__logo {
  height: 100%;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  image-rendering: auto;
  display: block;
}

.nav__links{
    flex:1;
    display:flex;
    justify-content:center;
    gap:30px;
}.nav__link {
  position: relative;
  font-size: .97rem; font-weight: 500; color: var(--steel);
  padding: 6px 0;
  transition: color .25s var(--ease);
}
.nav__link::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--red-bright);
  transition: width .3s var(--ease);
}
.nav__link:hover { color: var(--bone); }
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }
.nav__link.is-active { color: var(--bone); }
.nav__cta{
    flex-shrink:0;
    margin-left:auto;
}.nav__toggle { display: none; flex-direction: column; gap: 5px; width: 30px; }
.nav__toggle span { height: 2px; background: var(--bone); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }

/* ===================================================================
   Hero
   =================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 160px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 78% 30%, rgba(214,31,44,.13), transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 90%, rgba(214,31,44,.07), transparent 60%),
    rgba(7,9,13,.55);
}
.hero__vignette {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,9,13,0) 0%, rgba(7,9,13,.25) 78%, rgba(7,9,13,.6) 100%);
  pointer-events: none;
  z-index: 0;
}
.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 50px;
  align-items: center;
}

/* Título hero — más grande */
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(3.1rem, 6vw, 5.4rem);
  line-height: 1.06;
  letter-spacing: .005em;
  margin-bottom: 24px;
}
.hero__lede { max-width: 480px; color: var(--steel); font-size: 1.18rem; margin-bottom: 36px; }
.hero__actions { display: flex; align-items: center; gap: 8px; margin-bottom: 46px; flex-wrap: wrap; }
.hero__trust { display: flex; gap: 30px; flex-wrap: wrap; }
.hero__trust li {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-data); font-weight: 500;
  font-size: 0.95rem; letter-spacing: .03em;
  color: var(--steel);
}
.hero__trust .icon { width: 18px; height: 18px; color: var(--red-bright); }

/* Badge / círculo animado */
.hero__badge { display: flex; justify-content: center; align-items: center;
  transform: translateY(-60px); /* súbelo */
 }
.badge {
  position: relative;
  width: min(400px, 100%);
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  transform: translateY(-60px);
}
.badge__ring {
  position: absolute; border-radius: 50%;
  border: 1px solid var(--line-bright);
}
.badge__ring--outer { inset: 0; }
.badge__ring--inner { inset: 14%; border-style: dashed; border-color: rgba(255,255,255,.14); animation: spin-slow 40s linear infinite; }
.badge__sweep {
  position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(214,31,44,.55), transparent 32%);
  animation: spin-slow 6s linear infinite;
  mix-blend-mode: screen;
}
.badge__nodes {
  position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible;
  animation: spin-slow 70s linear infinite reverse;
}
.badge__node { fill: var(--red-bright); opacity: .9; }
.badge__edge { stroke: rgba(214,31,44,.4); stroke-width: 1; }

/* badge__core: círculo perfecto que contiene la imagen.
   El logo.png ya es un sello circular completo (con texto en el
   borde), así que usamos object-fit:contain para que se vea ENTERO
   sin cortar letras, en vez de cover (que lo recortaba). overflow:
   hidden + border-radius:50% siguen garantizando que nunca se salga
   del círculo. */
.badge__core {
  position: relative; z-index: 2;
  width: 74%; aspect-ratio: 1; border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--line-bright);
  box-shadow:
    0 0 50px -10px rgba(214,31,44,.55),
    inset 0 0 24px rgba(0,0,0,.5);
  background: var(--void);
}

/* Imagen dentro del badge — se ve completa, centrada, sin recortes
   ni deformación. */
.badge__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 50%;
}

.hero__cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--font-data); font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--steel-dim);
}
.hero__cue span {
  width: 1px; height: 34px;
  background: linear-gradient(180deg, var(--red-bright), transparent);
  animation: cue-drop 1.8s ease-in-out infinite;
}

/* ===================================================================
   About / HUD
   =================================================================== */
.about { padding: 130px 0; background: rgba(13,17,23,0.75); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }

.hud {
  position: relative; 
  aspect-ratio: 3/4;     /* bastante más alta que ancha */
  border-radius: var(--radius);
  background: radial-gradient(circle at 50% 40%, rgba(214,31,44,.1), var(--void) 75%);
  border: 1px solid var(--line);
  overflow: hidden;
}

.hud::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:url("../img/somos.jpg");
  background-size:cover;
  background-position:center;
  filter:brightness(.85) contrast(1.15) saturate(1.1);
  z-index:0;
}

.hud::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    to top,
    rgba(7, 9, 13, 0) 0%,
    rgba(7,9,13,.15) 45%,
    rgba(7,9,13,.05) 100%
  );
  z-index:1;
}
.hud__corner { position: absolute; width: 26px; height: 26px; border: 2px solid var(--red-bright); opacity: .85; }
.hud__corner--tl { top: 14px; left: 14px; border-right: none; border-bottom: none; }
.hud__corner--tr { top: 14px; right: 14px; border-left: none; border-bottom: none; }
.hud__corner--bl { bottom: 14px; left: 14px; border-right: none; border-top: none; }
.hud__corner--br { bottom: 14px; right: 14px; border-left: none; border-top: none; }
.hud__map { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .9; }

.hud__readout {
  position: absolute; bottom: 16px; left: 18px;
  font-family: var(--font-data); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--steel-dim); display: flex; flex-direction: column; gap: 3px;
}
.hud__readout strong { color: var(--red-bright); font-size: .86rem; letter-spacing: .1em; }
.hud__readout--right { left: auto; right: 18px; text-align: right; align-items: flex-end; }

.about__copy p { color: var(--steel); margin-bottom: 16px; font-size: 0.99rem; }
.about__copy p strong { color: var(--bone); }
.about__asset {
  display: flex; gap: 16px; align-items: flex-start;
  margin-top: 26px; padding: 22px;
  background: var(--carbon-2);
  border: 1px solid var(--line);
  border-left: 2px solid var(--red);
  border-radius: var(--radius-sm);
}
.about__asset .icon { width: 24px; height: 24px; color: var(--red-bright); margin-top: 3px; }
.about__asset strong { display: block; margin-bottom: 6px; font-family: var(--font-display); letter-spacing: .02em; text-transform: uppercase; font-size: 1.04rem; }
.about__asset p { color: var(--steel); font-size: 1.01rem; margin: 0; }

/* ===================================================================
   Misión / Visión
   =================================================================== */
.mv { padding: 90px 0; background: rgba(7,9,13,0.7); }
.mv__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.mv__card {
  padding: 38px;
  border: 1px solid rgba(214,31,44,.35);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(18,25,34,0.85), rgba(13,17,23,0.85) 70%);
  box-shadow:
    0 0 0 1px rgba(214,31,44,.12),
    0 0 24px -6px rgba(214,31,44,.35),
    0 0 60px -20px rgba(214,31,44,.25);
  transition: border-color .35s var(--ease), box-shadow .35s var(--ease), transform .35s var(--ease);
}
.mv__card:hover {
  border-color: var(--red-bright);
  box-shadow:
    0 0 0 1px rgba(255,59,68,.25),
    0 0 32px -4px rgba(255,59,68,.55),
    0 0 80px -16px rgba(255,59,68,.35);
  transform: translateY(-4px);
}
.mv__tag {
  display: inline-block;
  margin-bottom: 16px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 2.15rem;   /* Antes 1.5rem */
  font-weight: 600;
  color: var(--red-bright);
}
.mv__card p { color: var(--steel); font-size: 1.06rem; }

/* ===================================================================
   Pilares / Servicios
   =================================================================== */
.pillars { padding: 130px 0; background: rgba(13,17,23,0.75); border-top: 1px solid var(--line); }

.pillars__tabs {
  display: flex; gap: 10px; flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
  margin-bottom: 46px;
}
.pillars__tab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 6px;
  margin-bottom: -1px;
  margin-right: 28px;
  border-bottom: 2px solid transparent;
  color: var(--steel-dim);
  font-family: var(--font-data);
  font-weight: 600;
  letter-spacing: .02em;
  font-size: 1.15rem;   /* Antes .98rem */
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.pillars__tab-num { font-family: var(--font-data); font-size: 1.25rem; color: var(--steel-dim); transition: color .3s var(--ease); }
.pillars__tab:hover { color: var(--bone); }
.pillars__tab.is-active { color: var(--bone); border-color: var(--red-bright); }
.pillars__tab.is-active .pillars__tab-num { color: var(--red-bright); }

.pillars__panel { display: none; }
.pillars__panel.is-active { display: block; animation: panel-in .5s var(--ease); }
.pillars__intro { color: var(--steel); max-width: 660px; margin-bottom: 36px; font-size: 1.1rem; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card{
    position: relative;
    overflow: hidden;

    min-height: 310px;

    padding: 32px 28px;

    border: 1px solid var(--line);
    border-radius: var(--radius);

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    background: #111;
    isolation: isolate;

    transition:
        transform .4s var(--ease),
        border-color .4s var(--ease),
        box-shadow .4s var(--ease);
}
.service-card::before{
    content:"";

    position:absolute;
    inset:0;

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    filter:brightness(.75) contrast(1.05);

    transform:scale(1);

    transition:
        transform .5s var(--ease),
        filter .5s var(--ease);

    z-index:-2;
}
.service-card::after{
    content:"";

    position:absolute;
    inset:0;

    background:
    linear-gradient(
      to top,
      rgba(0,0,0,.72) 10%,
      rgba(0,0,0,.45) 45%,
      rgba(0,0,0,.15) 100%
);

    z-index:-1;
}
.servicio1::before{
    background-image:url("../img/analisis.jpg");
}

.servicio2::before{
    background-image:url("../img/recoleccion.jpg");
}

.servicio3::before{
    background-image:url("../img/seleccion.jpeg");
}

.servicio4::before{
    background-image:url("../img/estudios.jpg");
}

.servicio5::before{
    background-image:url("../img/ciberseguridad.jpg");
  }  
.servicio6::before{
    background-image:url("../img/defensa.jpg");
  }  
.servicio7::before{
    background-image:url("../img/armamento.jpeg");
  }
.servicio8::before{
    background-image:url("../img/medicina.jpeg");
  }
.servicio9::before{
    background-image:url("../img/combate.jpg");
  }
.servicio10::before{
    background-image:url("../img/operacion.jpg");
  }
.servicio11::before{
    background-image:url("../img/cartografia.jpg");
  }
.servicio12::before{
    background-image:url("../img/k9.jpg");
  }
.servicio13::before{
    background-image:url("../img/drones.jpg");
  }
.servicio14::before{
    background-image:url("../img/sisseguridad.jpg");
  }
.servicio15::before{
    background-image:url("../img/equipamiento.jpg");
  }
.servicio16::before{
    background-image:url("../img/seguro.jpg");
  }
.servicio17::before{
    background-image:url("../img/apoyo.png");
  }
.service-card:hover::before{
    filter:brightness(.75) contrast(1.15);
    transform:scale(1.05);
}
.service-card__icon {
  display: flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(214,31,44,.22), rgba(214,31,44,.03));
  border: 1px solid var(--line);
  margin-bottom: 20px;
  transition: border-color .4s var(--ease);
}
.service-card:hover .service-card__icon { border-color: rgba(214,31,44,.5); }
.service-card__icon .icon { width: 24px; height: 24px; color: var(--red-bright); }
.service-card h3{
    color:#ffffff;
    font-size:1.9rem;
    font-weight:700;
    line-height:1.15;
    text-shadow:0 2px 12px rgba(0,0,0,.8);
}
.service-card p{
    color:rgba(255,255,255,.86);
    font-size:1.08rem;
    line-height:1.7;
    text-shadow:0 2px 8px rgba(0,0,0,.9);
}

/* ===================================================================
   CTA
   =================================================================== */
.cta {
  padding: 110px 0;
  background: radial-gradient(ellipse 60% 80% at 85% 50%, rgba(214,31,44,.16), transparent 65%);
}
.cta__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 50px;
  flex-wrap: wrap;
}
.cta__copy { max-width: 580px; }
.cta__copy p { color: var(--steel); margin-top: 18px; font-size: 1.1rem; }
.cta__actions { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.cta__phone {
  font-family: var(--font-data); letter-spacing: .04em; color: var(--steel); font-size: 1.1rem;
  transition: color .25s var(--ease);
}
.cta__phone:hover { color: var(--red-bright); }

/* ===================================================================
   Footer
   =================================================================== */
.footer { background: rgba(13,17,23,0.85); border-top: 1px solid var(--line); padding-top: 70px; }
.footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1.3fr 1fr;
  gap: 40px; padding-bottom: 50px;
}
.footer__tagline { color: var(--steel); margin: 18px 0 22px; font-size: .98rem; max-width: 240px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-bright); color: var(--steel);
  transition: color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.footer__social a:hover { color: var(--red-bright); border-color: var(--red-bright); transform: translateY(-2px); }
.footer__social .icon { width: 17px; height: 17px; }

.footer__col h4 {
  font-family: var(--font-data); text-transform: uppercase; letter-spacing: .1em;
  font-size: .85rem; color: var(--steel-dim); margin-bottom: 20px;
}
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col a, .footer__plain { color: var(--steel); font-size: .98rem; transition: color .25s var(--ease); }
.footer__col a:hover { color: var(--red-bright); }

.footer__bottom {
  border-top: 1px solid var(--line); padding: 22px 0;
  display: flex; justify-content: center;
}
.footer__bottom p { color: var(--steel-dim); font-size: .85rem; }

/* ===================================================================
   Keyframes
   =================================================================== */
@keyframes pulse-dot { 0%,100%{ opacity:1; } 50%{ opacity:.4; } }
@keyframes spin-slow  { from{ transform:rotate(0deg); } to{ transform:rotate(360deg); } }
@keyframes cue-drop   { 0%{ transform:scaleY(0); opacity:0; transform-origin:top; } 40%{ transform:scaleY(1); opacity:1; } 100%{ transform:scaleY(0); opacity:0; transform-origin:bottom; } }
@keyframes scan-sweep { 0%{ top:-40%; } 100%{ top:100%; } }
@keyframes panel-in   { from{ opacity:0; transform:translateY(10px); } to{ opacity:1; transform:translateY(0); } }

/* ===================================================================
   Responsive
   =================================================================== */
@media (max-width: 1080px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__badge { order: -1; margin-bottom: 10px; }
  .badge { width: min(300px, 70%); }
  .about__grid { grid-template-columns: 1fr; }
  .about__visual { order: -1; max-width: 480px; }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 880px) {
  .nav__links {
    position: fixed; top: 0; right: 0; height: 100vh; width: min(78vw, 320px);
    background: rgba(10,13,18,.98); backdrop-filter: blur(16px);
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 28px; padding: 0 40px;
    transform: translateX(100%); transition: transform .4s var(--ease);
    border-left: 1px solid var(--line);
    z-index: 205;
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__link { font-size: 1.18rem; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; z-index: 210; }
  .nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { padding-top: 130px; }
  .cta__inner { flex-direction: column; align-items: flex-start; }
  .nav__logo-wrap { height: 44px; padding: 5px 12px; }
}

@media (max-width: 620px) {
  .container { padding: 0 20px; }
  .hero__trust { gap: 18px; }
  .hero__actions { flex-direction: column; align-items: flex-start; gap: 14px; }
  .mv__grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .pillars__tabs { flex-direction: column; gap: 0; }
  .pillars__tab { width: 100%; justify-content: flex-start; margin-right: 0; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .about { padding: 90px 0; }
  .pillars { padding: 90px 0; }
  .nav__logo-wrap { height: 38px; padding: 4px 10px; }
}

#i-facebook {
  fill: currentColor;
  stroke: none;
}