/* ==========================================================================
   LCS Staffing — Design system
   Brand: Manual de identidad visual LCS Staffing
   ========================================================================== */

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Variable.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Nunito Sans";
  src: url("../fonts/NunitoSans-Variable.ttf") format("truetype-variations");
  font-weight: 200 900;
  font-display: swap;
}

:root {
  /* Primary palette */
  --red: #dc2627;
  --red-dark: #b81f20;
  --navy: #0e172a;
  --navy-soft: #16223d;
  --hermes: #213b8b;
  --electric: #0857c3;
  --black: #1d1d1b;

  /* Secondary palette */
  --pastel-blue: #e1f3fe;
  --aqua: #15b8a6;
  --greenlake: #12766e;
  --amber: #fde68a;
  --pink: #ffe2e3;
  --coral: #ee6c4d;
  --brown: #b4540a;

  /* Neutrals */
  --ink: #10182b;
  --ink-soft: #45506b;
  --gray-500: #6b7690;
  --gray-200: #e4e8f1;
  --gray-100: #f3f5fa;
  --white: #ffffff;

  --font-head: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Nunito Sans", "Helvetica Neue", Arial, sans-serif;

  --container: 1180px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --shadow-soft: 0 20px 50px -25px rgba(14, 23, 42, 0.35);
  --shadow-card: 0 12px 30px -18px rgba(14, 23, 42, 0.25);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; color: var(--ink-soft); }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 3px;
  border-radius: 3px;
  background: var(--red);
}
.eyebrow.on-dark { color: #8fb3ff; }
.eyebrow.on-dark::before { background: var(--electric); }

.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--gray { background: var(--gray-100); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy p { color: #c4cde2; }
.section--navy h2, .section--navy h3 { color: var(--white); }

.text-center { text-align: center; }
.lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 640px;
}
.text-center .lead { margin-left: auto; margin-right: auto; }

/* Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 15px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn--sm {
  padding: 9px 18px;
  font-size: 0.82rem;
  gap: 7px;
}
.btn--sm svg { width: 15px; height: 15px; }

.btn--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 14px 30px -12px rgba(220, 38, 39, 0.55);
}
.btn--primary:hover { background: var(--red-dark); }

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}
.btn--ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn--navy {
  background: var(--navy);
  color: var(--white);
}
.btn--navy:hover { background: var(--navy-soft); }

.btn--outline-navy {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn--outline-navy:hover { background: var(--navy); color: var(--white); }

/* Header ----------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
}
.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.brand { display: flex; align-items: center; }
.brand img { height: 30px; width: auto; }

.nav { display: flex; align-items: center; gap: 8px; }
.nav a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
  padding: 10px 16px;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav a:hover { background: var(--gray-100); }
.nav a.is-active { color: var(--red); }

.header-actions { display: flex; align-items: center; gap: 14px; }

.header-cta { display: flex; align-items: center; gap: 10px; }
.header-cta .btn--outline-navy { border-width: 1.5px; }

.login-dropdown { position: relative; }
.login-dropdown__toggle {
  width: 122px;
  padding: 8px 14px;
  font-size: 0.78rem;
  gap: 6px;
}
.login-dropdown__toggle span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.login-dropdown__chevron { width: 13px; height: 13px; flex-shrink: 0; margin-left: auto; transition: transform 0.18s ease; }
.login-dropdown.is-open .login-dropdown__chevron { transform: rotate(180deg); }
.login-dropdown__menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 100%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  box-shadow: 0 20px 40px -20px rgba(15, 23, 42, 0.35);
  padding: 5px;
  display: none;
  flex-direction: column;
  gap: 2px;
  z-index: 110;
}
.login-dropdown.is-open .login-dropdown__menu { display: flex; }
.login-dropdown__menu a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--navy);
  padding: 8px 12px;
  border-radius: 9px;
  transition: background 0.15s ease, color 0.15s ease;
}
.login-dropdown__menu a:hover { background: var(--gray-100); color: var(--red); }

.nav-only-mobile { display: none; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  font-size: 0.92rem;
}
.header-phone svg { width: 18px; height: 18px; color: var(--red); }

.social-row { display: flex; gap: 10px; }
.social-row a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--navy);
  transition: background 0.15s ease, color 0.15s ease;
}
.social-row a:hover { background: var(--navy); color: var(--white); }
.social-row svg { width: 16px; height: 16px; }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  background: var(--white);
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 20px; height: 20px; color: var(--navy); }

.lang-toggle {
  display: flex;
  align-items: center;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
  flex-shrink: 0;
}
.lang-toggle > a,
.lang-toggle > span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  padding: 6px 10px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  transition: background 0.15s ease, color 0.15s ease;
}
.lang-toggle > .is-active { background: var(--navy); color: var(--white); cursor: default; }
.lang-toggle > a:hover { color: var(--navy); }

/* Hero --------------------------------------------------------------------*/
body { overflow-x: hidden; }

.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 140% at 85% -10%, #16255c 0%, var(--navy) 45%, #0a1120 100%);
  color: var(--white);
  padding: 120px 0 140px;
}
.hero__decor { position: absolute; inset: 0; pointer-events: none; }
.hero__grid {
  position: absolute;
  right: 6%;
  top: 8%;
  width: 220px;
  opacity: 0.55;
}
.hero__orb {
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, #4f7cff 0%, var(--electric) 45%, var(--hermes) 78%, transparent 100%);
  filter: blur(2px);
  opacity: 0.6;
}
.hero__ring {
  position: absolute;
  right: 10%;
  bottom: 10%;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  border: 1.5px solid rgba(253, 230, 138, 0.7);
}
.hero__content { position: relative; z-index: 2; max-width: 640px; }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  margin-bottom: 22px;
}
.hero p.lead { color: #c9d2ea; max-width: 540px; }
.hero__cta { display: flex; align-items: center; gap: 18px; margin-top: 34px; flex-wrap: wrap; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 8px 16px 8px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}
.hero__badge span.dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--red);
  display: grid;
  place-items: center;
}
.hero__badge span.dot svg { width: 13px; height: 13px; color: white; }

.hero__stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 32px 40px;
  margin-top: 72px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.hero__stats .stat b {
  display: block;
  font-family: var(--font-head);
  font-size: 1.9rem;
  color: var(--white);
  text-shadow: 0 2px 14px rgba(0,0,0,0.4);
}
.hero__stats .stat span {
  font-size: 0.85rem;
  color: #9fadd0;
  text-shadow: 0 2px 14px rgba(0,0,0,0.4);
}

/* Intro / about ------------------------------------------------------------*/
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.about-copy p { font-size: 1.02rem; }
.about-panel {
  position: relative;
  background: linear-gradient(155deg, var(--navy) 0%, var(--hermes) 100%);
  border-radius: var(--radius-lg);
  padding: 44px;
  color: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.about-panel::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.16), transparent 70%);
}
.about-panel h3 { color: var(--white); font-size: 1.5rem; }
.about-panel p { color: #d4dcf2; }
.about-panel .tagline {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.18);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
}
.about-panel .tagline em {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-style: normal;
  font-size: 0.92rem;
  color: #aebbdd;
  margin-top: 6px;
}

/* Vision & Mission ----------------------------------------------------------*/
.vm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.vm-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-card);
  position: relative;
}
.vm-card .icon-badge { margin-bottom: 20px; }
.vm-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.vm-card blockquote {
  margin: 0;
  font-size: 1.05rem;
  color: var(--ink-soft);
  font-style: italic;
  border-left: 3px solid var(--red);
  padding-left: 16px;
}
.vm-card--vision .icon-badge { background: var(--pastel-blue); color: var(--electric); }
.vm-card--mission .icon-badge { background: var(--pink); color: var(--red); }

.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
}
.icon-badge svg { width: 24px; height: 24px; }

/* Service cards --------------------------------------------------------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 26px 50px -22px rgba(14,23,42,0.28); }
.service-card h3 { font-size: 1.08rem; margin-bottom: 10px; }
.service-card p { font-size: 0.93rem; flex-grow: 1; }
.service-card .icon-badge {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--pastel-blue);
  color: var(--hermes);
  margin-bottom: 20px;
}
.service-card .icon-badge svg { width: 30px; height: 30px; }
.service-card:nth-child(2) .icon-badge { background: #e4f8f4; color: var(--greenlake); }
.service-card:nth-child(3) .icon-badge { background: var(--amber); color: var(--brown); }
.service-card:nth-child(4) .icon-badge { background: #ffe4d9; color: var(--coral); }
.service-card:nth-child(5) .icon-badge { background: var(--pink); color: var(--red); }
.service-card .card-link {
  margin-top: 16px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card .card-link svg { width: 14px; height: 14px; transition: transform 0.15s ease; }
.service-card:hover .card-link svg { transform: translateX(3px); }

/* Services page detail blocks -------------------------------------------*/
.service-detail {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
  padding: 56px 0;
}
.service-detail + .service-detail { border-top: 1px solid var(--gray-200); }
.service-detail:nth-child(even) {
  grid-template-columns: 1.15fr 0.85fr;
}
.service-detail:nth-child(even) .service-detail__visual { order: 2; }
.service-detail__visual {
  border-radius: var(--radius-lg);
  min-height: 260px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.service-detail__visual .icon-badge {
  width: 168px;
  height: 168px;
  border-radius: 40px;
  background: rgba(255,255,255,0.9);
}
.service-detail__visual .icon-badge svg { width: 78px; height: 78px; }
.service-detail__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.5) 1.4px, transparent 1.4px);
  background-size: 18px 18px;
  opacity: 0.5;
}
.sd-warehouse .service-detail__visual { background: linear-gradient(135deg, var(--brown), #d97a1f); }
.sd-warehouse .icon-badge { color: var(--brown); }
.sd-landscaping .service-detail__visual { background: linear-gradient(135deg, var(--greenlake), var(--aqua)); }
.sd-landscaping .icon-badge { color: var(--greenlake); }
.sd-golf .service-detail__visual { background: linear-gradient(135deg, var(--hermes), var(--electric)); }
.sd-golf .icon-badge { color: var(--hermes); }
.sd-remote .service-detail__visual { background: linear-gradient(135deg, var(--coral), #f4a261); }
.sd-remote .icon-badge { color: var(--coral); }
.sd-hotels .service-detail__visual { background: linear-gradient(135deg, var(--red), var(--red-dark)); }
.sd-hotels .icon-badge { color: var(--red); }

.service-detail__body .eyebrow { margin-bottom: 10px; }
.service-detail__body h2 { font-size: 1.9rem; margin-bottom: 16px; }
.service-detail__body p { font-size: 1.02rem; }

/* Contact / connect ------------------------------------------------------*/
.contact-band {
  position: relative;
  overflow: hidden;
}
.contact-band__decor {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 90% 15%, rgba(8, 87, 195, 0.35), transparent 45%),
    radial-gradient(circle at 8% 90%, rgba(220, 38, 39, 0.18), transparent 40%);
}
.contact-band__actions { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.contact-band__actions .btn { width: 280px; justify-content: center; }
.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: stretch;
}
.contact-methods { display: grid; gap: 16px; margin-top: 28px; }
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}
.contact-method .icon-badge { flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.1); color: var(--white); width: 44px; height: 44px; border-radius: 12px; }
.contact-method .icon-badge svg { width: 20px; height: 20px; }
.contact-method b { display: block; font-family: var(--font-head); color: var(--white); font-size: 1.02rem; }
.contact-method span { display: block; font-size: 0.85rem; color: #a9b4d6; text-align: justify; text-justify: inter-word; }
.contact-method__address { margin-top: 6px; }

.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--ink);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.4);
}
.contact-card h3 { font-size: 1.3rem; color: var(--navy); }
.contact-card p { color: var(--ink-soft); }
.contact-card .btn { width: 100%; justify-content: center; margin-top: 10px; }
.contact-card .social-row { margin-top: 22px; justify-content: center; }

/* Footer -------------------------------------------------------------------*/
.site-footer { background: var(--black); color: #b7bdc9; padding: 56px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 98px; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col a, .footer-col span {
  display: block;
  color: #9298a3;
  font-size: 0.92rem;
  padding: 6px 0;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.82rem;
  color: #767c88;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom .social-row a { background: rgba(255,255,255,0.06); color: #cfd3db; }
.footer-bottom .social-row a:hover { background: var(--red); color: var(--white); }

/* Page hero (services) -----------------------------------------------------*/
.page-hero {
  background: linear-gradient(120deg, var(--navy) 0%, #10225e 60%, var(--hermes) 100%);
  color: var(--white);
  padding: 84px 0 76px;
  position: relative;
  overflow: hidden;
}
.page-hero__dots {
  position: absolute;
  left: 4%;
  top: 18%;
  width: 160px;
  opacity: 0.4;
}
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 3.6vw, 2.8rem); }
.page-hero p.lead { color: #c9d2ea; }
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  color: #9fadd0;
  margin-bottom: 18px;
}
.breadcrumb a:hover { color: var(--white); }

/* Client logos strip --------------------------------------------------------
   Grid marquee: 3 filas, cada una en loop infinito (direccion alterna).
   Algunos clientes (clubes/hoteles) solo tienen version blanca de su marca en
   su propio sitio -> tarjeta navy. El resto usa tarjeta blanca. Movimiento
   lineal continuo, sin rebote/spring (ver guia de marca). ------------------*/
.client-logos-strip { padding-top: 64px; }
.client-logos-strip__rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}
.client-logos-strip__row {
  overflow: hidden;
}
.client-logos-strip__track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: client-marquee-left var(--marquee-duration, 42s) linear infinite;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.client-logos-strip__row--reverse .client-logos-strip__track {
  animation-name: client-marquee-right;
}
.client-logos-strip:hover .client-logos-strip__track {
  animation-play-state: paused;
}
@keyframes client-marquee-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes client-marquee-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .client-logos-strip__track { animation: none; }
  .client-logos-strip__row { overflow-x: auto; }
}
.client-logos-strip__chip {
  height: 85px;
  width: 176px;
  flex: 0 0 auto;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.client-logos-strip__chip--dark {
  background: var(--navy);
  border-color: var(--navy);
}
.client-logos-strip__chip:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.client-logos-strip__chip img {
  max-height: 48px;
  max-width: 128px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Utility bits ------------------------------------------------------------*/
.divider-dots {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  width: 74px;
}
.divider-dots span { width: 5px; height: 5px; border-radius: 50%; background: var(--electric); opacity: 0.7; }

/* Responsive ---------------------------------------------------------------*/
@media (max-width: 1120px) {
  .header-social { display: none; }
  .card-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 980px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .vm-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail,
  .service-detail:nth-child(even) { grid-template-columns: 1fr; }
  .service-detail:nth-child(even) .service-detail__visual { order: 0; }
  .service-detail__visual { min-height: 200px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .header-phone span { display: none; }
  .header-cta .btn--outline-navy span { display: none; }
  .header-cta .btn--outline-navy { padding: 9px; }
  .header-cta .login-dropdown__toggle { width: auto; }
}

@media (max-width: 860px) {
  .nav, .header-cta { display: none; }
  .nav-toggle { display: grid; }
  .nav-only-mobile { display: block; }
  .site-header__bar { padding-top: 14px; padding-bottom: 14px; }
  .hero { padding: 88px 0 100px; }
  .hero__grid {
    top: -3%;
    right: -8%;
    width: 170px;
    opacity: 0.35;
    -webkit-mask-image: linear-gradient(225deg, #000 25%, transparent 65%);
    mask-image: linear-gradient(225deg, #000 25%, transparent 65%);
  }
  .hero__orb { opacity: 0.35; }
  .hero__ring { display: none; }
  .hero__stats { grid-template-columns: 1fr; gap: 20px; }
  .card-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .hero h1 { font-size: 2.05rem; }
  .page-hero h1 { font-size: 1.9rem; }
}

.nav.is-open {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  background: var(--white);
  padding: 12px 20px 20px;
  border-bottom: 1px solid var(--gray-200);
  gap: 2px;
}
.nav.is-open a { padding: 12px 10px; }

/* Justified body copy -------------------------------------------------------
   Solo parrafos de contenido (p, .lead, blockquote) — titulos, botones, nav
   y etiquetas quedan tal cual. Justificado en todos los tamaños, incluido
   mobile, por requisito de entrega.
   ------------------------------------------------------------------------ */
p, .lead, blockquote {
  text-align: justify;
  text-justify: inter-word;
}
