/* ============================================================
   Grupo LH — Component layer
   Clean, maintainable CSS for every UI block of the theme.
   Builds on tokens.css + site.css. No framework, no build step.
   ============================================================ */

/* =====================================================
   Buttons
   ===================================================== */
.lh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  line-height: 1;
  letter-spacing: 0.005em;
  font-size: var(--fs-sm);
  padding: 0.55rem 1.1rem;
  height: 40px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: transform var(--dur-fast) var(--ease-out),
              background var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
}
.lh-btn:hover { transform: translateY(-2px); }
.lh-btn:active { transform: translateY(0); }
.lh-btn--lg { font-size: var(--fs-base); padding: 0.85rem 1.6rem; height: 52px; }

.lh-btn--primary { background: var(--brand-primary); color: #fff; border-color: var(--brand-primary); }
.lh-btn--primary:hover { background: var(--brand-primary-hover); border-color: var(--brand-primary-hover); color: #fff; box-shadow: var(--shadow-md); }

.lh-btn--accent { background: var(--brand-accent); color: #fff; border-color: var(--brand-accent); }
.lh-btn--accent:hover { background: var(--brand-accent-hover); border-color: var(--brand-accent-hover); color: #fff; box-shadow: var(--shadow-md); }

.lh-btn--outline { background: transparent; color: var(--brand-primary); border-color: var(--border-strong); }
.lh-btn--outline:hover { border-color: var(--brand-primary); color: var(--brand-primary); }

/* on dark backgrounds */
.lh-btn--light { background: #fff; color: var(--brand-primary); border-color: #fff; }
.lh-btn--light:hover { background: #fff; color: var(--brand-primary-hover); box-shadow: 0 10px 30px rgba(0,0,0,0.25); }
.lh-btn--ghost-light { background: rgba(255,255,255,0.06); color: #fff; border-color: rgba(255,255,255,0.4); }
.lh-btn--ghost-light:hover { background: rgba(255,255,255,0.14); color: #fff; border-color: #fff; }

.lh-btn__chev { font-size: 1.1em; line-height: 0; }

/* =====================================================
   Header / navigation
   ===================================================== */
.lh-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--border-default);
  transition: box-shadow var(--dur-base) var(--ease-out);
}
.lh-header.is-scrolled { box-shadow: var(--shadow-sm); }
.lh-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.lh-header__logo { display: flex; align-items: center; flex: 0 0 auto; }
.lh-header__logo img { height: 42px; width: auto; }

.lh-nav { display: flex; align-items: center; gap: 28px; }
.lh-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-strong);
  padding: 8px 2px;
  white-space: nowrap;
}
.lh-nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px; border-radius: 2px;
  background: var(--grad-cyan-line);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--dur-base) var(--ease-out);
}
.lh-nav__link:hover { color: var(--brand-primary); }
.lh-nav__link:hover::after,
.lh-nav__link.is-active::after { transform: scaleX(1); }
.lh-nav__link.is-active { color: var(--brand-primary); }

.lh-header__cta { display: flex; align-items: center; }

.lh-burger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--brand-primary);
  padding: 4px;
  line-height: 0;
}

/* mobile drawer */
.lh-mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 99;
  background: rgba(255,255,255,0.98);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 1.5rem var(--container-pad) 2.5rem;
  flex-direction: column;
  gap: 0.25rem;
  overflow-y: auto;
}
.lh-mobile-nav.is-open { display: flex; }
.lh-mobile-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--text-heading);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border-default);
}
.lh-mobile-nav .lh-btn { margin-top: 1.25rem; }

/* =====================================================
   Hero (home)
   ===================================================== */
.lh-hero {
  position: relative;
  isolation: isolate;
  color: #fff;
  background: var(--grad-navy);
  overflow: hidden;
}
.lh-hero__bg {
  position: absolute; inset: 0; z-index: -3;
  width: 100%; height: 100%; object-fit: cover;
}
.lh-hero__scrim {
  position: absolute; inset: 0; z-index: -2;
  background: linear-gradient(100deg, rgba(6,16,38,0.97) 0%, rgba(8,20,48,0.92) 36%, rgba(8,20,48,0.62) 66%, rgba(8,20,48,0.30) 100%);
}
.lh-hero__grid-tex {
  position: absolute; inset: 0; z-index: -1;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(130% 110% at 8% 0%, #000 22%, transparent 72%);
  mask-image: radial-gradient(130% 110% at 8% 0%, #000 22%, transparent 72%);
}
.lh-hero__inner {
  position: relative;
  display: flex; flex-direction: column; justify-content: center;
  min-height: clamp(540px, 80vh, 740px);
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
.lh-hero__grid { max-width: 760px; }
.lh-hero h1 {
  color: #fff;
  font-weight: var(--fw-extrabold);
  font-size: clamp(2.7rem, 6vw, 4.6rem);
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin: 22px 0 0;
}
.lh-hero h1 .accent { color: var(--brand-bright); }
.lh-hero__sub {
  color: rgba(255,255,255,0.85);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.7;
  max-width: 560px;
  margin-top: 24px;
}
.lh-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.lh-hero__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }

/* trust strip — translucent band under the hero */
.lh-hero__trust-band {
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.16);
  background: rgba(6,16,38,0.5);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.lh-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 1.6rem 0;
}
.lh-trust__num {
  font-family: var(--font-display);
  font-weight: var(--fw-extrabold);
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
  text-align: center;
}
.lh-trust__label {
  display: block;
  margin-top: 8px;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: var(--fw-semibold);
  font-family: var(--font-display);
  color: var(--brand-bright);
  text-align: center;
}

/* =====================================================
   Section heading block
   ===================================================== */
.lh-head { max-width: 720px; }
.lh-head--center { margin-inline: auto; text-align: center; }
.lh-head h2 {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  margin-top: 0.65rem;
}
.lh-head p { margin-top: 1rem; font-size: var(--fs-md); line-height: 1.7; }
.lh-head--center .lh-accent-rule { margin-inline: auto; }

/* =====================================================
   Two-column (about) + floating stat
   ===================================================== */
.lh-two-col {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
.lh-two-col h2 { font-size: var(--fs-2xl); font-weight: var(--fw-bold); margin-top: 0.65rem; }
.lh-two-col .lh-prose { margin-top: 1.5rem; }
.lh-two-col__actions { margin-top: 2rem; }

.lh-figure { position: relative; }
.lh-figure .lh-media { aspect-ratio: 4 / 3; }
.lh-stat-float {
  position: absolute;
  right: -28px; bottom: -30px;
  background: linear-gradient(150deg, #1657a8 0%, #002467 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 20px 26px;
  max-width: 250px;
  box-shadow: 0 16px 36px rgba(22,87,168,0.45);
}
.lh-stat-float__num { font-family: var(--font-display); font-weight: var(--fw-extrabold); font-size: 2.7rem; line-height: 1; }
.lh-stat-float__txt { font-size: 0.86rem; line-height: 1.4; color: rgba(255,255,255,0.92); margin-top: 7px; }

/* =====================================================
   Service cards
   ===================================================== */
.lh-svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 26px;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.lh-svc-card {
  display: flex;
  flex-direction: column;
  background: var(--surface-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
}
.lh-svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: color-mix(in srgb, var(--brand-bright) 55%, var(--border-default));
}
.lh-svc-card__media { position: relative; }
.lh-svc-card__media .lh-media { aspect-ratio: 16 / 10; border-radius: 0; }
.lh-svc-card__media .lh-media__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(6,16,38,0.55) 0%, rgba(6,16,38,0) 55%);
}
.lh-svc-card__icon {
  position: absolute; left: 18px; top: 18px; z-index: 3;
  width: 50px; height: 50px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.95);
  color: var(--brand-primary);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}
.lh-svc-card__body { display: flex; flex-direction: column; flex: 1; padding: 1.6rem 1.6rem 1.7rem; }
.lh-svc-card__body h3 { font-size: var(--fs-lg); color: var(--text-heading); }
.lh-svc-card__body p { margin-top: 0.7rem; font-size: 0.97rem; line-height: 1.65; }
.lh-svc-card__more {
  margin-top: auto; padding-top: 1.1rem;
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-display); font-weight: var(--fw-semibold);
  font-size: 0.92rem; color: var(--brand-secondary);
}
.lh-svc-card:hover .lh-svc-card__more span[aria-hidden] { transform: translateX(4px); }
.lh-svc-card__more span[aria-hidden] { transition: transform var(--dur-base) var(--ease-out); }

.lh-svc-cta { display: flex; justify-content: center; margin-top: clamp(2rem, 4vw, 3rem); }

/* =====================================================
   Value cards (why choose)
   ===================================================== */
.lh-value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.lh-value-card { padding: 1.9rem 1.6rem; }
.lh-value-card__icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: var(--grad-navy-soft);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.lh-value-card h3 { font-size: var(--fs-lg); }
.lh-value-card p { margin-top: 0.6rem; font-size: 0.95rem; line-height: 1.6; }

/* =====================================================
   CTA split card (home)
   ===================================================== */
.lh-cta-card {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--grad-navy);
}
.lh-cta-card__img { position: relative; min-height: 320px; }
.lh-cta-card__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.lh-cta-card__img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,16,38,0.30) 0%, rgba(6,16,38,0) 35%, rgba(6,16,38,0.55) 100%); }
.lh-cta-card__panel { padding: clamp(2.5rem, 5vw, 4rem); display: flex; flex-direction: column; justify-content: center; gap: 18px; }
.lh-cta-card__panel h2 { color: #fff; font-size: var(--fs-xl); font-weight: var(--fw-bold); }
.lh-cta-card__panel p { color: rgba(255,255,255,0.78); margin-top: 1rem; font-size: var(--fs-md); line-height: 1.65; }
.lh-cta-card__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

/* =====================================================
   Page hero (interior pages)
   ===================================================== */
.lh-pagehero {
  position: relative;
  isolation: isolate;
  color: #fff;
  background: var(--grad-navy);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: clamp(400px, 56vh, 560px);
}
.lh-pagehero__bg { position: absolute; inset: 0; z-index: -3; width: 100%; height: 100%; object-fit: cover; }
.lh-pagehero__grad { position: absolute; inset: 0; z-index: -2; background: linear-gradient(180deg, rgba(6,16,38,0.50) 0%, rgba(6,16,38,0.28) 38%, rgba(6,16,38,0.94) 100%); }
.lh-pagehero__grad--side { background: linear-gradient(75deg, rgba(6,16,38,0.88) 0%, rgba(6,16,38,0.30) 52%, rgba(6,16,38,0) 82%); }
.lh-pagehero__grid {
  position: absolute; inset: 0; z-index: -1;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(120% 120% at 10% 100%, #000 25%, transparent 72%);
  mask-image: radial-gradient(120% 120% at 10% 100%, #000 25%, transparent 72%);
}
.lh-pagehero__inner {
  position: relative;
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
.lh-breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; font-family: var(--font-body); font-size: 0.88rem; color: rgba(255,255,255,0.7); margin-bottom: 22px; }
.lh-breadcrumb a { color: rgba(255,255,255,0.7); }
.lh-breadcrumb a:hover { color: #fff; }
.lh-breadcrumb span[aria-hidden] { color: var(--brand-bright); }
.lh-breadcrumb span[aria-current] { color: #fff; }
.lh-pagehero__body { display: flex; flex-direction: column; gap: 18px; max-width: 780px; }
.lh-pagehero__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 60px; height: 60px; flex: none;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--brand-bright);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.lh-pagehero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5.4vw, 4rem);
  font-weight: var(--fw-extrabold);
  line-height: 1.0;
  letter-spacing: -0.035em;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
  margin: 0;
}
.lh-pagehero__lead { color: rgba(255,255,255,0.85); font-size: clamp(1.05rem, 1.6vw, 1.2rem); line-height: 1.65; max-width: 640px; margin: 0; }

/* =====================================================
   Service detail
   ===================================================== */
.lh-svc-intro .lh-two-col { align-items: start; }
.lh-svc-intro h2 { font-size: var(--fs-xl); margin: 0.5rem 0; }
.lh-svc-intro .lh-lead { font-size: var(--fs-md); margin-top: 0.85rem; }
.lh-svc-band .lh-media { aspect-ratio: 21 / 9; }
.lh-svc-band__caption { display: flex; flex-direction: column; gap: 6px; margin-top: 1rem; }

.lh-checklist-panel { padding: clamp(2rem, 4vw, 3rem); }
.lh-checklist-panel h2 { color: #fff; font-size: var(--fs-xl); font-weight: var(--fw-bold); }
.lh-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem 2rem;
  margin-top: 1.75rem;
  list-style: none;
}
.lh-checklist li { display: flex; gap: 12px; align-items: flex-start; color: rgba(255,255,255,0.86); font-size: 1rem; line-height: 1.5; }
.lh-checklist li .lh-check { flex: 0 0 auto; color: var(--brand-bright); margin-top: 2px; }

.lh-cta-center { text-align: center; }
.lh-cta-center h2 { color: #fff; font-size: var(--fs-2xl); font-weight: var(--fw-bold); max-width: 720px; margin-inline: auto; }
.lh-cta-center p { color: rgba(255,255,255,0.8); font-size: var(--fs-md); max-width: 600px; margin: 1rem auto 0; }
.lh-cta-center .lh-cta-center__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2rem; }

.lh-other-svc { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 1.75rem; }
.lh-other-svc a {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 1.1rem 1.4rem;
  background: var(--surface-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  font-family: var(--font-display); font-weight: var(--fw-semibold);
  color: var(--text-heading);
  transition: border-color var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.lh-other-svc a:hover { border-color: var(--brand-bright); transform: translateX(4px); color: var(--brand-primary); }
.lh-other-svc a span[aria-hidden] { color: var(--brand-secondary); }

/* =====================================================
   Forms
   ===================================================== */
.lh-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.lh-field { display: flex; flex-direction: column; gap: 0.45rem; }
.lh-field--full { grid-column: 1 / -1; }
.lh-label { font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: 0.9rem; color: var(--text-strong); }
.lh-label .req { color: var(--text-required); }
.lh-input, .lh-select, .lh-textarea {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: var(--text-heading);
  background: #fff;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  padding: 0.7rem 0.9rem;
  width: 100%;
  transition: border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.lh-input:focus, .lh-select:focus, .lh-textarea:focus {
  outline: none;
  border-color: var(--brand-bright);
  box-shadow: var(--shadow-focus);
}
.lh-textarea { min-height: 130px; resize: vertical; }
.lh-input::placeholder, .lh-textarea::placeholder { color: var(--text-muted); }
.lh-file {
  display: flex; align-items: center; gap: 10px;
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-md);
  padding: 0.7rem 0.9rem;
  font-size: 0.92rem; color: var(--text-strong);
  cursor: pointer;
  transition: border-color var(--dur-base) var(--ease-out);
}
.lh-file:hover { border-color: var(--brand-bright); }
.lh-file input { display: none; }
.lh-consent { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; line-height: 1.5; color: var(--text-strong); }
.lh-consent input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--brand-primary); flex: 0 0 auto; }
.lh-form__submit { margin-top: 0.5rem; }
.lh-form-note { font-size: var(--fs-sm); color: var(--text-muted); margin-top: 0.75rem; }
.lh-form-status { margin-top: 1rem; padding: 0.85rem 1rem; border-radius: var(--radius-md); font-size: 0.95rem; display: none; }
.lh-form-status.is-ok { display: block; background: var(--lh-cyan-tint); color: #0b5a7a; border: 1px solid #b8e3f5; }
.lh-form-status.is-err { display: block; background: var(--lh-red-tint); color: #9b1620; border: 1px solid #f3c2c5; }

/* split form layout (contacto / presupuesto) */
.lh-split-form { display: grid; grid-template-columns: 0.85fr 1.1fr; gap: clamp(1.5rem, 3vw, 2.5rem); align-items: start; }
.lh-info-panel { padding: clamp(2rem, 4vw, 2.75rem); }
.lh-info-panel h2 { color: #fff; font-size: var(--fs-xl); font-weight: var(--fw-bold); }
.lh-info-panel p { color: rgba(255,255,255,0.78); margin-top: 0.9rem; line-height: 1.6; }
.lh-info-list { margin-top: 1.75rem; display: flex; flex-direction: column; gap: 1.1rem; }
.lh-info-list__item { display: flex; gap: 14px; }
.lh-info-list__icon { flex: 0 0 auto; color: var(--brand-bright); margin-top: 2px; }
.lh-info-list__t { color: #fff; font-family: var(--font-display); font-weight: var(--fw-semibold); }
.lh-info-list__d { color: rgba(255,255,255,0.7); font-size: 0.92rem; line-height: 1.45; }
.lh-info-list__d a { color: rgba(255,255,255,0.9); text-decoration: underline; text-underline-offset: 2px; }
.lh-form-card { padding: clamp(1.75rem, 3vw, 2.5rem); }

/* benefit cards (presupuesto / empleo) */
.lh-benefit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: clamp(2rem,4vw,3rem); }
.lh-benefit { display: flex; gap: 14px; }
.lh-benefit__icon {
  flex: 0 0 auto; width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--lh-navy-tint); color: var(--brand-primary);
  display: flex; align-items: center; justify-content: center;
}
.lh-benefit__t { font-family: var(--font-display); font-weight: var(--fw-semibold); color: var(--text-heading); }
.lh-benefit__d { font-size: 0.92rem; line-height: 1.5; margin-top: 4px; }

/* call-out band */
.lh-callbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; padding: clamp(1.75rem, 3vw, 2.5rem); }
.lh-callbar__phone { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--fs-xl); color: #fff; }
.lh-callbar__phone a { color: #fff; }

/* map */
.lh-map { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--border-default); }
.lh-map iframe { display: block; width: 100%; height: 420px; border: 0; }
.lh-map__bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1.25rem; }

/* =====================================================
   ISO / quality
   ===================================================== */
.lh-iso-split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
.lh-iso-badge {
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  aspect-ratio: 1; border-radius: var(--radius-circle);
  background: var(--grad-navy); color: #fff; text-align: center;
  padding: 2rem; max-width: 360px; margin-inline: auto;
  box-shadow: var(--shadow-navy);
}
.lh-iso-badge::before {
  content: ""; position: absolute; inset: 14px; border-radius: var(--radius-circle);
  border: 2px solid rgba(255,255,255,0.18);
}
.lh-iso-badge__num { font-family: var(--font-display); font-weight: var(--fw-extrabold); font-size: 2.6rem; line-height: 1; }
.lh-iso-badge__sub { font-size: 0.8rem; letter-spacing: var(--ls-caps); text-transform: uppercase; color: var(--brand-bright); margin-top: 10px; }
.lh-pillar-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 1.75rem; }
.lh-pillar { display: flex; gap: 14px; }
.lh-pillar__icon { flex: 0 0 auto; color: var(--brand-secondary); }
.lh-pillar__t { font-family: var(--font-display); font-weight: var(--fw-semibold); color: var(--text-heading); }
.lh-pillar__d { font-size: 0.92rem; line-height: 1.5; margin-top: 3px; }

/* decálogo */
.lh-decalogo { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; margin-top: clamp(2rem,4vw,3rem); }
.lh-decalogo__item {
  display: flex; gap: 1.1rem; align-items: flex-start;
  background: var(--surface-card);
  border: 1px solid var(--border-default);
  border-left: 3px solid var(--brand-bright);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.4rem;
}
.lh-decalogo__n { font-family: var(--font-display); font-weight: var(--fw-extrabold); font-size: 1.5rem; color: var(--brand-primary); line-height: 1; flex: 0 0 auto; min-width: 1.5rem; }
.lh-decalogo__t { font-size: 0.98rem; line-height: 1.55; color: var(--text-strong); }

/* =====================================================
   Footer
   ===================================================== */
.lh-footer { position: relative; color: #fff; }
.lh-footer__top { padding: clamp(3.5rem, 6vw, 5rem) 0 2.5rem; position: relative; }
.lh-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 2.5rem; }
.lh-footer__logo { display: inline-flex; background: #fff; border-radius: var(--radius-md); padding: 12px 18px; margin-bottom: 20px; box-shadow: var(--shadow-sm); }
.lh-footer__logo img { height: 44px; width: auto; }
.lh-footer__about { color: rgba(255,255,255,0.62); font-size: 0.92rem; line-height: 1.75; max-width: 300px; }
.lh-social { display: flex; gap: 10px; margin-top: 22px; }
.lh-social a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  color: #fff; transition: all var(--dur-base) var(--ease-out);
}
.lh-social a:hover { background: var(--brand-bright); border-color: var(--brand-bright); color: #fff; }
.lh-footer__col-title { font-family: var(--font-display); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand-bright); margin-bottom: 18px; }
.lh-footer__col a { display: block; padding: 6px 0; color: rgba(255,255,255,0.68); font-family: var(--font-body); font-size: 0.92rem; }
.lh-footer__col a:hover { color: #fff; }
.lh-footer__contact-item { display: flex; gap: 12px; margin-bottom: 14px; color: rgba(255,255,255,0.68); font-size: 0.9rem; line-height: 1.5; }
.lh-footer__contact-item .ic { color: var(--brand-bright); flex: 0 0 auto; margin-top: 2px; }
.lh-footer__contact-item strong { display: block; color: rgba(255,255,255,0.92); font-family: var(--font-display); font-weight: 600; margin-bottom: 1px; }
.lh-footer__contact-item a { color: rgba(255,255,255,0.68); }
.lh-footer__bar { border-top: 1px solid rgba(255,255,255,0.12); }
.lh-footer__bar-inner { padding: 1.4rem 0; display: flex; flex-wrap: wrap; gap: 8px; justify-content: space-between; align-items: center; color: rgba(255,255,255,0.5); font-size: 0.82rem; }
.lh-footer__bar-inner .links { display: inline-flex; flex-wrap: wrap; gap: 0 6px; align-items: center; }
.lh-footer__bar-inner a { color: rgba(255,255,255,0.7); text-decoration: underline; text-underline-offset: 2px; }
.lh-footer__wordmark { font-family: var(--font-display); font-weight: 600; letter-spacing: 0.04em; }

/* =====================================================
   Generic WP content (page.php / single.php / legal)
   ===================================================== */
.lh-legal { max-width: 880px; }
.lh-legal h2 { font-size: var(--fs-xl); margin: 2.25rem 0 0.85rem; color: var(--text-heading); }
.lh-legal h3 { font-size: var(--fs-lg); margin: 1.5rem 0 0.6rem; }
.lh-legal p { font-size: var(--fs-md); line-height: 1.85; margin-top: 1rem; color: var(--text-body); text-align: justify; hyphens: auto; }
.lh-legal ul { margin: 1rem 0 0; padding-left: 1.25rem; list-style: disc; }
.lh-legal li { margin-top: 0.5rem; line-height: 1.7; }
.lh-legal .lh-deflist { margin-top: 1rem; display: grid; gap: 0.4rem; }
.lh-legal .lh-deflist div { display: flex; gap: 8px; flex-wrap: wrap; }
.lh-legal .lh-deflist dt { font-weight: var(--fw-semibold); color: var(--text-strong); min-width: 130px; }
.lh-entry-content > * + * { margin-top: 1.1rem; }
.lh-entry-content h2, .lh-entry-content h3 { margin-top: 2rem; }
.lh-entry-content ul, .lh-entry-content ol { padding-left: 1.25rem; }
.lh-entry-content img { border-radius: var(--radius-lg); margin: 1.5rem 0; }
.lh-entry-content a { text-decoration: underline; text-underline-offset: 2px; }

/* 404 / search */
.lh-utility { text-align: center; max-width: 620px; margin-inline: auto; }
.lh-utility h1 { font-size: var(--fs-3xl); }
.lh-utility p { margin-top: 1rem; font-size: var(--fs-md); }
.lh-search-form { display: flex; gap: 0.75rem; margin-top: 1.5rem; }

/* =====================================================
   Responsive
   ===================================================== */
@media (max-width: 980px) {
  .lh-nav, .lh-header__cta { display: none; }
  .lh-burger { display: inline-flex; }
  .lh-two-col, .lh-iso-split, .lh-form-grid,
  .lh-split-form, .lh-cta-card, .lh-other-svc, .lh-checklist,
  .lh-benefit-grid, .lh-pillar-grid, .lh-decalogo { grid-template-columns: 1fr !important; }
  .lh-stat-float { position: static; margin-top: 1.25rem; max-width: none; }
  .lh-cta-card__img { min-height: 240px; }
}
@media (max-width: 600px) {
  .lh-trust { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
  .lh-footer-grid { grid-template-columns: 1fr; }
}
@media (min-width: 601px) and (max-width: 980px) {
  .lh-footer-grid { grid-template-columns: 1fr 1fr; }
}

/* reveal animation (JS adds .is-in) */
@media (prefers-reduced-motion: no-preference) {
  .lh-reveal.is-in { animation: lhRise 0.6s var(--ease-out) both; }
}
@keyframes lhRise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

/* =====================================================
   Alignment layer — matches the live site exactly
   (utility bar, dropdown, quote band, decálogo, ISO,
   checklist chips, contact rows, benefit list, legal).
   ===================================================== */

/* Utility bar */
.lh-utilitybar { color: #fff; }
.lh-utilitybar__inner { display: flex; align-items: center; justify-content: space-between; height: 42px; font-family: var(--font-body); font-size: 0.82rem; }
.lh-utilitybar__left { display: flex; align-items: center; gap: 22px; color: rgba(255,255,255,0.8); }
.lh-utilitybar__right { display: flex; align-items: center; gap: 16px; color: rgba(255,255,255,0.65); }
.lh-utilitybar a, .lh-utilitybar span.lh-ub-item { display: inline-flex; align-items: center; gap: 7px; color: inherit; }
.lh-utilitybar .lh-ico { color: var(--brand-bright); }
@media (max-width: 1000px) { .lh-utilitybar { display: none; } }

/* Header: dropdown */
.lh-nav__item { position: relative; display: inline-flex; align-items: center; }
.lh-nav__caret { font-size: 11px; opacity: 0.7; margin-left: 3px; }
.lh-dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  padding-top: 14px; z-index: 50; min-width: 320px;
  opacity: 0; visibility: hidden; transition: opacity var(--dur-base) var(--ease-out);
}
.lh-nav__item:hover .lh-dropdown { opacity: 1; visibility: visible; }
.lh-dropdown__inner { padding: 8px; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid var(--border-default); }
.lh-dropdown a { display: flex; align-items: center; gap: 12px; padding: 11px 12px; border-radius: var(--radius-md); font-family: var(--font-body); font-size: 0.92rem; color: var(--text-strong); }
.lh-dropdown a:hover { background: var(--lh-navy-tint); color: var(--brand-primary); }
.lh-dropdown a .chip { width: 34px; height: 34px; border-radius: var(--radius-sm); background: var(--lh-navy-tint); display: inline-flex; align-items: center; justify-content: center; flex: none; color: var(--brand-primary); }

/* Hero chips override (cyan check) already via .lh-chip */

/* Two-col home ratio + about ratio handled inline */
.lh-figure .lh-media { aspect-ratio: 3 / 2; }

/* Service card arrow-link spacing */
.lh-svc-card__more { margin-top: 4px; }

/* Section heading (centered) */
.lh-secthead { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; max-width: 720px; margin: 0 auto; }
.lh-secthead h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: var(--fw-bold); letter-spacing: -0.025em; }
.lh-secthead p { font-size: var(--fs-md); line-height: 1.7; color: var(--text-body); }

/* Quote band (Nosotros) */
.lh-quote { position: relative; overflow: hidden; }
.lh-quote__inner { position: relative; padding: clamp(4rem,7vw,6rem) 0; }
.lh-quote__mark { color: var(--brand-bright); }
.lh-quote p { max-width: 880px; margin-top: 18px; color: #fff; font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: clamp(1.5rem,3.4vw,2.4rem); line-height: 1.3; letter-spacing: -0.02em; }
.lh-quote cite { display: inline-block; margin-top: 22px; font-family: var(--font-body); font-style: normal; font-size: 0.92rem; color: rgba(255,255,255,0.6); letter-spacing: 0.04em; }

/* Decálogo (override) */
.lh-decalogo { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 16px; max-width: 1080px; margin-inline: auto; }
.lh-decalogo__item { gap: 16px; padding: 20px 22px; border-left: 1px solid var(--border-default); }
.lh-decalogo__n { width: 36px; height: 36px; min-width: 36px; border-radius: var(--radius-md); background: var(--grad-navy-soft); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; font-weight: var(--fw-bold); }
.lh-decalogo__t { color: var(--text-body); font-size: 0.97rem; line-height: 1.6; }

/* Service detail: intro ratios handled inline; image band caption overlay */
.lh-svc-band__frame { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.lh-svc-band__frame .lh-media { border-radius: 0; aspect-ratio: 21 / 9; }
.lh-svc-band__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,16,38,0.78) 0%, rgba(6,16,38,0.25) 45%, rgba(6,16,38,0) 75%); }
.lh-svc-band__cap { position: absolute; left: clamp(1.5rem,4vw,3rem); right: clamp(1.5rem,4vw,3rem); bottom: clamp(1.5rem,4vw,2.5rem); max-width: 560px; }
.lh-svc-band__cap p { font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: clamp(1.2rem,2.4vw,1.9rem); line-height: 1.25; letter-spacing: -0.02em; color: #fff; margin: 12px 0 0; text-shadow: 0 2px 20px rgba(0,0,0,0.4); }

/* Checklist (override) — chip cards with circular cyan check */
.lh-checklist-panel { border-radius: var(--radius-xl); overflow: hidden; }
.lh-checklist-head { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; margin-bottom: 36px; }
.lh-checklist-head h2 { color: #fff; font-size: clamp(1.6rem,3vw,2.1rem); font-weight: var(--fw-bold); letter-spacing: -0.02em; }
.lh-checklist { display: grid; grid-template-columns: repeat(auto-fit, minmax(264px, 1fr)); gap: 14px; margin-top: 0; }
.lh-checklist li { gap: 13px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius-md); padding: 15px 17px; color: rgba(255,255,255,0.9); font-size: var(--fs-base); }
.lh-checklist li .lh-check { width: 26px; height: 26px; min-width: 26px; border-radius: 50%; background: var(--grad-cyan-line); display: inline-flex; align-items: center; justify-content: center; color: #fff; margin-top: 1px; box-shadow: 0 2px 8px rgba(41,169,224,0.35); }
.lh-checklist-outro { max-width: 880px; margin: 32px auto 0; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.82); }

/* Other services (override) — pills centered */
.lh-other-svc { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.lh-other-svc a { display: inline-flex; align-items: center; gap: 10px; padding: 12px 20px; background: #fff; border: 1px solid var(--border-default); border-radius: var(--radius-pill); font-family: var(--font-display); font-weight: 500; color: var(--text-strong); font-size: 0.92rem; }
.lh-other-svc a:hover { border-color: var(--brand-bright); color: var(--brand-primary); box-shadow: var(--shadow-sm); transform: none; }
.lh-other-svc a .lh-ico { color: var(--brand-secondary); }

/* Services index CTA pill */
.lh-index-cta { background: var(--lh-navy-tint); border-radius: var(--radius-xl); padding: clamp(2rem,4vw,3rem); display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: center; text-align: center; max-width: 820px; margin: 56px auto 0; }
.lh-index-cta span.t { font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: var(--fs-lg); color: var(--brand-primary); }

/* ISO (override) */
.lh-iso-split { grid-template-columns: 1.05fr 0.95fr; align-items: center; }
.lh-iso-head { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.lh-iso-seal { flex: none; height: 150px; width: auto; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.lh-iso-head h2 { font-size: clamp(1.7rem,3.2vw,2.35rem); line-height: 1.12; letter-spacing: -0.025em; flex: 1 1 240px; }
.lh-iso-ringchip { display: inline-flex; align-items: center; gap: 12px; align-self: flex-start; padding: 10px 18px; background: var(--lh-navy-tint); border-radius: var(--radius-pill); color: var(--brand-primary); font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: 0.92rem; }
.lh-pillar-grid { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; margin-top: 0; }
.lh-pillar { flex-direction: column; gap: 13px; padding: 1.7rem; }
.lh-pillar__icon { width: 50px; height: 50px; border-radius: var(--radius-md); background: var(--grad-navy); color: #fff; display: inline-flex; align-items: center; justify-content: center; }
.lh-pillar__t { font-size: 1.06rem; }
.lh-pillar__d { font-size: 0.94rem; }
.lh-quality-cta { padding: clamp(1.75rem,4vw,2.5rem); background: var(--lh-navy-tint); border-radius: var(--radius-xl); display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between; margin-top: 44px; }
.lh-quality-cta__l { display: flex; align-items: center; gap: 16px; }
.lh-quality-cta__icon { width: 52px; height: 52px; border-radius: var(--radius-md); background: #fff; color: var(--brand-primary); display: inline-flex; align-items: center; justify-content: center; flex: none; box-shadow: var(--shadow-sm); }
.lh-quality-cta__t { font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: var(--fs-lg); color: var(--brand-primary); letter-spacing: -0.02em; }
.lh-prose strong { color: var(--brand-primary); font-weight: var(--fw-bold); white-space: nowrap; }

/* Nosotros stats card */
.lh-stats-card { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 1.4rem; background: var(--lh-navy-tint); border-radius: var(--radius-lg); }
.lh-stat { text-align: center; }
.lh-stat__k { font-family: var(--font-display); font-weight: var(--fw-extrabold); font-size: clamp(1.5rem,3vw,2rem); line-height: 1; letter-spacing: -0.02em; color: var(--brand-primary); }
.lh-stat__v { margin-top: 8px; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: var(--fw-semibold); font-family: var(--font-display); color: var(--text-muted); }

/* Benefit list (vertical, used on conversion panels) */
.lh-blist { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.lh-blist li { display: flex; gap: 14px; align-items: flex-start; }
.lh-blist__icon { flex: none; width: 40px; height: 40px; border-radius: var(--radius-md); display: inline-flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.16); color: var(--brand-bright); }
.lh-blist__t { font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: 1rem; color: #fff; }
.lh-blist__d { font-size: 0.9rem; line-height: 1.5; color: rgba(255,255,255,0.7); margin-top: 2px; }
.lh-panel-callout { margin-top: 30px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.14); display: flex; align-items: center; gap: 14px; }
.lh-panel-callout__icon { width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.16); display: inline-flex; align-items: center; justify-content: center; flex: none; color: var(--brand-bright); }
.lh-panel-callout__k { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.lh-panel-callout__v { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 1.2rem; color: #fff; }
.lh-panel-callout__v a { color: #fff; }

/* Empleo why grid */
.lh-why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; }
.lh-why-card { padding: 1.85rem; display: flex; flex-direction: column; gap: 14px; }
.lh-why-card__icon { width: 52px; height: 52px; border-radius: var(--radius-md); background: var(--lh-navy-tint); color: var(--brand-primary); display: inline-flex; align-items: center; justify-content: center; }
.lh-why-card h3 { font-size: var(--fs-lg); }
.lh-why-card p { font-size: 0.95rem; line-height: 1.6; color: var(--text-body); }
.lh-side-note { display: flex; gap: 14px; align-items: flex-start; background: var(--lh-navy-tint); border-radius: var(--radius-lg); padding: 1.25rem 1.4rem; }
.lh-side-note .lh-ico { color: var(--brand-primary); flex: none; }
.lh-side-note p { color: var(--text-strong); font-size: 0.92rem; line-height: 1.55; }

/* Contact info rows */
.lh-cinfo { display: flex; flex-direction: column; gap: 18px; }
.lh-cinfo__row { display: flex; gap: 14px; align-items: flex-start; }
.lh-cinfo__chip { flex: none; width: 44px; height: 44px; border-radius: var(--radius-md); background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); display: inline-flex; align-items: center; justify-content: center; color: var(--brand-bright); }
.lh-cinfo__label { font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.lh-cinfo__office { padding-left: 14px; border-left: 2px solid var(--brand-bright); margin-top: 8px; }
.lh-cinfo__office + .lh-cinfo__office { margin-top: 12px; }
.lh-cinfo__office strong { display: block; font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 0.95rem; color: rgba(255,255,255,0.9); margin-bottom: 3px; }
.lh-cinfo__office span { color: rgba(255,255,255,0.78); font-size: 0.9rem; line-height: 1.5; }
.lh-cinfo__val { color: rgba(255,255,255,0.9); font-size: 0.98rem; margin-top: 2px; }
.lh-cinfo__val a { color: var(--brand-bright); }
.lh-contact-callout { margin-top: auto; display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius-lg); padding: 18px 20px; }
.lh-contact-callout__icon { width: 46px; height: 46px; border-radius: 50%; background: var(--grad-cyan-line); display: inline-flex; align-items: center; justify-content: center; flex: none; color: #fff; box-shadow: 0 4px 12px rgba(41,169,224,0.4); }

/* Form: select chevron, card heading, CV dropzone, success */
.lh-select-wrap { position: relative; }
.lh-select-wrap select { appearance: none; -webkit-appearance: none; padding-right: 2.5rem; cursor: pointer; }
.lh-select-wrap .lh-select-caret { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); pointer-events: none; color: var(--text-muted); }
.lh-form-card h2 { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--fs-xl); color: var(--text-heading); margin: 0 0 6px; letter-spacing: -0.02em; }
.lh-form-card__sub { color: var(--text-body); margin-bottom: 24px; font-size: 0.97rem; }
.lh-dropzone { border: 1.5px dashed var(--border-strong); border-radius: var(--radius-md); padding: 1.85rem; text-align: center; color: var(--text-muted); background: #fafbfc; cursor: pointer; transition: border-color var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out); }
.lh-dropzone:hover, .lh-dropzone.has-file { border-color: var(--brand-bright); background: var(--lh-cyan-tint); }
.lh-dropzone .lh-ico { color: var(--brand-secondary); }
.lh-dropzone__name { margin-top: 10px; font-size: 0.92rem; color: var(--text-strong); }
.lh-dropzone__hint { margin-top: 4px; font-size: 0.8rem; }
.lh-rgpd-title { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 0.92rem; color: var(--text-strong); margin-bottom: 10px; }
.lh-captcha { display: inline-flex; align-items: center; gap: 12px; padding: 12px 14px; border: 1px solid var(--border-default); border-radius: var(--radius-md); background: #f9fafb; max-width: 300px; }
.lh-captcha__box { width: 28px; height: 28px; border: 2px solid #c1c1c1; border-radius: 4px; background: #fff; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; color: var(--lh-blue); flex: none; }
.lh-captcha__label { font-size: 0.9rem; color: var(--text-strong); }
.lh-captcha__brand { margin-left: auto; text-align: center; color: var(--text-muted); font-size: 0.6rem; line-height: 1.1; }
.lh-form-success { padding: clamp(2rem,5vw,3rem); text-align: center; background: var(--lh-navy-tint); border-radius: var(--radius-lg); }
.lh-form-success__icon { width: 64px; height: 64px; border-radius: 50%; background: var(--grad-navy-soft); color: #fff; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 18px; box-shadow: var(--shadow-md); }

/* Legal (override) — left-accent sections + bullet/def cards + info table */
.lh-legal { max-width: 980px; margin: 0 auto; }
.lh-legal__section { margin-top: clamp(2.25rem, 4vw, 3rem); }
.lh-legal__section > h2 { font-size: clamp(1.15rem,2.2vw,1.5rem); letter-spacing: -0.015em; line-height: 1.25; color: var(--text-heading); margin: 0 0 1rem; padding-left: 16px; border-left: 4px solid var(--brand-primary); }
.lh-legal__section p { font-size: 1rem; line-height: 1.72; margin: 0 0 1rem; color: var(--text-body); text-align: left; }
.lh-legal__bullets { list-style: none; margin: 0.5rem 0 1.25rem; padding: 0; display: grid; gap: 12px; }
.lh-legal__bullets li { display: flex; align-items: flex-start; gap: 12px; font-size: 1rem; line-height: 1.55; color: var(--text-strong); background: var(--surface-tint); border: 1px solid var(--border-default); border-radius: var(--radius-md); padding: 13px 16px; }
.lh-legal__bullets li::before { content: ""; flex: none; width: 9px; height: 9px; margin-top: 7px; border-radius: 50%; background: var(--brand-primary); }
.lh-defblock { margin: 0 0 1rem; padding-left: 16px; border-left: 2px solid var(--border-default); }
.lh-defblock strong { font-family: var(--font-display); font-weight: var(--fw-bold); color: var(--text-heading); }
.lh-infotable { border: 1px solid var(--border-default); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.lh-infotable__head { background: var(--lh-navy-tint); padding: 16px 20px; font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 1.02rem; color: var(--text-heading); }
.lh-infotable__row { display: grid; grid-template-columns: 230px 1fr; gap: 8px; padding: 15px 20px; border-top: 1px solid var(--border-default); font-size: 0.98rem; line-height: 1.5; }
.lh-infotable__row dt { font-weight: var(--fw-semibold); color: var(--text-heading); }
.lh-infotable__row dd { margin: 0; color: var(--text-strong); }
.lh-infotable__row dd a { color: var(--brand-primary); font-weight: var(--fw-semibold); }
@media (max-width: 600px) { .lh-infotable__row { grid-template-columns: 1fr; } .lh-iso-seal { height: 110px; } }

/* Mobile drawer (header) */
.lh-mobile-drawer { background: #fff; border-bottom: 1px solid var(--border-default); padding: 8px 0 18px; box-shadow: var(--shadow-md); }
.lh-mobile-drawer__inner { display: flex; flex-direction: column; }
.lh-mobile-drawer a { padding: 13px 4px; font-family: var(--font-display); font-weight: 500; color: var(--text-strong); border-bottom: 1px solid var(--lh-grey-100); }
.lh-mobile-drawer__label { padding: 14px 4px 6px; font-family: var(--font-display); font-weight: 600; color: var(--brand-secondary); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.14em; }
.lh-mobile-drawer a.svc { padding: 11px 4px 11px 16px; font-family: var(--font-body); font-weight: 400; color: var(--text-body); border-bottom: 0; }
