/* @bundled in css/rotuval-public.css — do not link directly from templates */
/* ============================================================
   ROTUVAL — Public design system  ·  "Atelier" (light · warm · airy)
   Clean editorial minimalism: warm paper, espresso ink, terracotta
   accent, Fraunces serif display. Every selector and --lp-* variable
   NAME is preserved for backend/JS compatibility; values are new.
   ============================================================ */

body.page-landing {
  font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
}

.page-landing {
  /* ── Monochrome neutrals (aliases → global brand tokens) ── */
  --lp-paper: var(--rv-brand-canvas, #f3f3ee);
  --lp-surface: var(--rv-brand-surface, #ffffff);
  --lp-sand: #e9e9e2;
  --lp-ink: var(--rv-brand-ink, #0c0d0e);
  --lp-ink-soft: #161719;

  /* ── Chartreuse accent (aliases → global brand tokens) ── */
  --lp-clay: var(--rv-brand-accent, #b6cc4f);
  --lp-clay-hover: var(--rv-brand-accent-hover, #a6bc41);
  --lp-clay-deep: var(--rv-brand-accent-deep, #3f4d10);
  --lp-clay-soft: var(--rv-brand-accent-soft, #eef2d6);
  --lp-clay-light: #c6d96e;

  /* ── Legacy variable names mapped to the new palette ── */
  --lp-navy: var(--lp-ink);
  --lp-navy-soft: var(--lp-ink-soft);
  --lp-orange: var(--lp-clay);
  --lp-orange-hover: var(--lp-clay-hover);
  --lp-orange-deep: var(--lp-clay-deep);
  --lp-ember: var(--lp-clay-light);
  --lp-white: var(--lp-surface);
  --lp-gray-50: var(--lp-paper);
  --lp-gray-100: #eeeee8;
  --lp-gray-200: var(--rv-brand-border, #e0e0d8);
  --lp-gray-500: #8a8c84;
  --lp-gray-800: #26282a;
  --lp-text: var(--rv-brand-ink, #0c0d0e);
  --lp-muted: var(--rv-brand-muted, #5e6166);

  /* ── Geometry ── */
  --lp-radius: 12px;
  --lp-radius-lg: 18px;
  --lp-radius-pill: 999px;

  /* ── Elevation (used sparingly; minimalism leans on hairlines) ── */
  --lp-shadow-sm: 0 1px 2px rgba(33, 28, 22, 0.04);
  --lp-shadow: 0 2px 8px rgba(33, 28, 22, 0.05), 0 16px 40px rgba(33, 28, 22, 0.06);
  --lp-shadow-lg: 0 8px 20px rgba(33, 28, 22, 0.07), 0 32px 64px rgba(33, 28, 22, 0.1);
  --lp-shadow-accent: 0 8px 24px rgba(182, 204, 79, 0.22);

  --lp-font-body: 'Inter', system-ui, sans-serif;
  --lp-font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;

  font-family: var(--lp-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--lp-text);
  background: var(--lp-paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'kern' 1, 'liga' 1;
}

.page-landing *,
.page-landing *::before,
.page-landing *::after {
  box-sizing: border-box;
}

.page-landing ::selection {
  background: rgba(182, 204, 79, 0.18);
  color: var(--lp-text);
}

/* Fraunces serif for display headings — Inter for everything else */
.page-landing .lp-display,
.page-landing .lp-hero__title,
.page-landing .lp-showcase__header-main h2,
.page-landing .lp-showcase__body h3,
.page-landing .lp-section-head h2,
.page-landing .lp-faq__intro h2,
.page-landing .lp-cta-band h2,
.page-landing .lp-quality__item h3 {
  font-family: var(--lp-font-display);
  font-weight: 600;
  letter-spacing: -0.015em;
  font-optical-sizing: auto;
}

.page-landing .lp-hero__stat strong {
  font-family: var(--lp-font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.page-landing p,
.page-landing li,
.page-landing label,
.page-landing input,
.page-landing select,
.page-landing textarea,
.page-landing .lp-btn,
.page-landing .lp-header__nav a,
.page-landing .lp-showcase__tags span,
.page-landing .lp-showcase__header-desc,
.page-landing .lp-faq__item summary,
.page-landing .lp-faq__answer {
  font-family: var(--lp-font-body);
  letter-spacing: normal;
}

/* Hide reCAPTCHA badge (form still protected) */
.page-landing .grecaptcha-badge,
body.page-landing .grecaptcha-badge {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Shared eyebrow / kicker */
.page-landing .lp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lp-clay-deep);
}

.page-landing .lp-kicker::before {
  content: '';
  width: 1.75rem;
  height: 1px;
  background: var(--lp-clay);
}

.lp-container {
  width: 100%;
  max-width: 76rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 640px) {
  .lp-container {
    padding: 0 2rem;
  }
}

/* ── Reveal on scroll (progressive enhancement) ── */
.page-landing .lp-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.page-landing .lp-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ── Buttons ── */
.page-landing .lp-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.7rem;
  border-radius: var(--lp-radius-pill);
  font-family: var(--lp-font-body);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
              background 0.2s ease, box-shadow 0.25s ease, border-color 0.2s ease, color 0.2s ease;
}

.page-landing .lp-btn:hover {
  transform: translateY(-2px);
}

.page-landing .lp-btn:active {
  transform: translateY(0);
}

.page-landing .lp-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(182, 204, 79, 0.4);
}

.page-landing .lp-btn svg {
  transition: transform 0.25s ease;
}

/* Primary = electric lime (ink text for contrast) */
.page-landing .lp-btn--orange {
  color: var(--lp-ink);
  font-weight: 700;
  background: var(--lp-clay);
  box-shadow: var(--lp-shadow-accent);
}

.page-landing .lp-btn--orange:hover {
  background: var(--lp-clay-hover);
  box-shadow: 0 12px 30px rgba(182, 204, 79, 0.4);
}

.page-landing .lp-btn--orange:hover svg {
  transform: translateX(3px);
}

/* Secondary = ink outline (used over light backgrounds) */
.page-landing .lp-btn--outline {
  color: var(--lp-text);
  background: transparent;
  border: 1px solid var(--lp-gray-200);
}

.page-landing .lp-btn--outline:hover {
  background: var(--lp-surface);
  border-color: var(--lp-ink);
}

.page-landing .lp-btn--outline-dark {
  color: var(--lp-text);
  background: var(--lp-surface);
  border: 1px solid var(--lp-gray-200);
}

.page-landing .lp-btn--outline-dark:hover {
  border-color: var(--lp-clay);
  color: var(--lp-clay-deep);
}

/* Ink variant for dark sections */
.page-landing .lp-btn--ink {
  color: var(--lp-ink);
  background: var(--lp-surface);
}

.page-landing .lp-btn--ink:hover {
  background: #f3ece2;
}

.page-landing .lp-btn--block {
  width: 100%;
}

/* ── Header (transparent over the light hero) ── */
.lp-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1rem 0;
  background: rgba(12, 13, 14, 0.92);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.lp-header.is-scrolled {
  padding: 0.7rem 0;
  background: rgba(12, 13, 14, 0.98);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.lp-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lp-header__logo img {
  display: block;
  height: 2.1rem;
  width: auto;
}

.lp-header__logo span {
  font-family: var(--lp-font-display);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: #fff;
}

.lp-header__nav {
  display: none;
  align-items: center;
  gap: 2.25rem;
  margin-left: auto;
  margin-right: 1.5rem;
}

.lp-header__nav a {
  position: relative;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.4;
  color: #f3f3ee;
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.18s, color 0.18s;
}

.lp-header__nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--lp-clay);
  transition: width 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.lp-header__nav a:hover {
  opacity: 1;
}

.lp-header__nav a:hover::after,
.lp-header__nav a.is-active::after {
  width: 100%;
}

.lp-header__nav a.is-active {
  opacity: 1;
  color: var(--lp-clay-light);
}

.lp-header__cta {
  display: none;
  margin-left: auto;
  padding: 0.7rem 1.4rem;
  font-size: 0.88rem;
}

.lp-header__toggle {
  display: flex;
  margin-left: auto;
  padding: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s;
}

.lp-header__toggle:hover {
  border-color: var(--lp-clay);
  background: rgba(255, 255, 255, 0.12);
}

@media (min-width: 1024px) {
  .lp-header__nav {
    display: flex;
  }

  .lp-header__cta {
    display: inline-flex;
    margin-left: 0;
  }

  .lp-header__toggle {
    display: none;
  }
}

.lp-header__nav.is-open {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.2rem;
  position: absolute;
  top: calc(100% + 0.7rem);
  left: 1.5rem;
  right: 1.5rem;
  padding: 0.85rem;
  background: var(--lp-ink-soft);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--lp-radius-lg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.lp-header__nav.is-open a {
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  opacity: 1;
}

.lp-header__nav.is-open a:hover {
  background: rgba(255, 255, 255, 0.06);
}

.lp-header__nav.is-open a::after {
  display: none;
}

@media (min-width: 1024px) {
  .lp-header__nav.is-open {
    position: static;
    flex-direction: row;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    margin-top: 0;
  }
}

/* ── Hero (light · airy · editorial) ── */
.lp-hero {
  position: relative;
  margin-top: -4.8rem;
  background: var(--lp-paper);
  color: var(--lp-text);
  padding: 8rem 0 4rem;
  overflow: hidden;
}

/* soft warm wash + faint grid, very subtle */
.lp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 45% at 85% 0%, rgba(182, 204, 79, 0.08), transparent 60%),
    radial-gradient(ellipse 45% 50% at 0% 100%, rgba(198, 217, 110, 0.06), transparent 55%);
  pointer-events: none;
}

.lp-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .lp-hero {
    padding: 9.5rem 0 5rem;
  }

  .lp-hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
  }
}

.lp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.95rem;
  margin-bottom: 1.5rem;
  border-radius: var(--lp-radius-pill);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lp-clay-deep);
  background: var(--lp-clay-soft);
  border: 1px solid rgba(182, 204, 79, 0.18);
}

.lp-hero__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--lp-clay);
}

.lp-hero__rating {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.lp-hero__stars {
  display: flex;
  gap: 0.12rem;
  color: var(--lp-clay);
}

.lp-hero__rating span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--lp-muted);
}

.lp-hero__title {
  margin: 0 0 1.5rem;
  font-size: clamp(2.8rem, 6vw, 4.75rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--lp-text);
}

.lp-hero__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--lp-clay);
}

.lp-hero__lead {
  margin: 0 0 1.75rem;
  font-size: 1.12rem;
  line-height: 1.65;
  color: var(--lp-muted);
  max-width: 32rem;
}

.lp-hero__perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.5rem;
  margin: 1.75rem 0 2.25rem;
  padding: 0;
  list-style: none;
}

.lp-hero__perks li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--lp-text);
}

.lp-hero__perks svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  padding: 3px;
  border-radius: 999px;
  color: var(--lp-clay-deep);
  background: var(--lp-clay-soft);
}

.lp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.75rem;
}

.lp-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--lp-gray-200);
}

.lp-hero__stat strong {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--lp-text);
}

.lp-hero__stat span {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--lp-muted);
  line-height: 1.4;
}

.lp-hero__visual {
  position: relative;
  border-radius: var(--lp-radius-lg);
  overflow: hidden;
  box-shadow: var(--lp-shadow-lg);
  min-height: 320px;
}

.lp-hero__visual #image-slider {
  min-height: 320px !important;
  border-radius: var(--lp-radius-lg);
}

@media (min-width: 1024px) {
  .lp-hero__visual {
    min-height: 500px;
  }

  .lp-hero__visual #image-slider {
    min-height: 500px !important;
  }
}

/* Hero slider — auto-advance crossfade (backend slides) */
.lp-hero__visual #image-slider .lp-slide-img {
  opacity: 0 !important;
  z-index: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}

.lp-hero__visual #image-slider .lp-slide-img.lp-slide--active {
  opacity: 1 !important;
  z-index: 1;
}

.lp-hero__visual #image-slider .lp-slide-dot {
  width: 0.4rem;
  background: rgba(255, 255, 255, 0.55);
  transition: width 0.3s ease, background 0.3s ease;
}

.lp-hero__visual #image-slider .lp-slide-dot.lp-slide-dot--active {
  width: 1.2rem;
  background: var(--lp-clay-light);
}

/* ── Client ticker ── */
.lp-clients {
  padding: 2.5rem 0;
  background: var(--lp-paper);
  border-bottom: 1px solid var(--lp-gray-200);
}

.lp-clients__label-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.lp-clients__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lp-muted);
  background: transparent;
  border: none;
}

.lp-clients__label svg {
  color: var(--lp-clay);
  flex-shrink: 0;
}

.lp-clients__viewport {
  overflow: hidden;
  min-height: 3.5rem;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.lp-clients__track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 3.5rem;
  animation: lpClientScroll 48s linear infinite;
}

.lp-clients__viewport:hover .lp-clients__track {
  animation-play-state: paused;
}

@keyframes lpClientScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.lp-clients__item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.lp-clients__item:hover {
  transform: scale(1.1);
}

.lp-clients__logo {
  height: 1.85rem;
  width: auto;
  max-width: 7rem;
  object-fit: contain;
  filter: grayscale(1) opacity(0.55);
  transition: filter 0.3s;
}

.lp-clients__item:hover .lp-clients__logo {
  filter: none;
}

/* ── Section heads ── */
.lp-section-head {
  text-align: center;
  max-width: 46rem;
  margin: 0 auto 3.5rem;
}

.lp-section-head .lp-kicker {
  justify-content: center;
  margin-bottom: 1.1rem;
}

.lp-section-head h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--lp-text);
}

.lp-section-head p {
  margin: 0 auto;
  max-width: 40rem;
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--lp-muted);
}

/* ── Services showcase ── */
.lp-showcase {
  padding: 6rem 0;
  background: var(--lp-surface);
  border-bottom: 1px solid var(--lp-gray-200);
}

.lp-showcase__header {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
  align-items: end;
}

@media (min-width: 768px) {
  .lp-showcase__header {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    margin-bottom: 4rem;
    text-align: left;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
}

.lp-showcase__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lp-clay-deep);
}

.lp-showcase__eyebrow::before {
  content: '';
  width: 1.75rem;
  height: 1px;
  background: var(--lp-clay);
}

.lp-showcase__header-main h2 {
  margin: 0;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.05;
  color: var(--lp-text);
}

.lp-showcase__header-desc {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--lp-muted);
}

.lp-showcase__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .lp-showcase__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .lp-showcase__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

/* Minimal card: hairline frame, generous space, quiet hover */
.lp-showcase__card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--lp-surface);
  border: 1px solid var(--lp-gray-200);
  border-radius: var(--lp-radius-lg);
  overflow: hidden;
  transition: box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.3s ease;
  height: 100%;
}

.lp-showcase__card:hover {
  box-shadow: var(--lp-shadow);
  transform: translateY(-4px);
  border-color: rgba(182, 204, 79, 0.3);
}

.lp-showcase__media {
  position: relative;
  min-height: 13rem;
  overflow: hidden;
  background: var(--lp-paper);
}

.lp-showcase__media img {
  display: block;
  width: 100%;
  height: 13rem;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (min-width: 1024px) {
  .lp-showcase__media {
    min-height: 13.5rem;
  }

  .lp-showcase__media img {
    height: 13.5rem;
  }
}

.lp-showcase__card:hover .lp-showcase__media img {
  transform: scale(1.05);
}

.lp-showcase__num {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  font-family: var(--lp-font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--lp-text);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--lp-gray-200);
  backdrop-filter: blur(4px);
}

.lp-showcase__media--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 70% 25%, rgba(182, 204, 79, 0.08), transparent 60%),
    var(--lp-sand);
}

.lp-showcase__placeholder-icon {
  color: var(--lp-clay);
  opacity: 0.5;
  width: 48px;
  height: 48px;
}

.lp-showcase__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.75rem;
}

/* Hide duplicate icon when card already has a photo */
.lp-showcase__card:has(.lp-showcase__media img) .lp-showcase__icon {
  display: none;
}

.lp-showcase__icon {
  width: 2.6rem;
  height: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 12px;
}

.lp-showcase__icon--warm {
  color: var(--lp-clay-deep);
  background: var(--lp-clay-soft);
}

.lp-showcase__icon--cool {
  color: #0e7490;
  background: rgba(14, 116, 144, 0.1);
}

.lp-showcase__body h3 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.25rem, 1.7vw, 1.45rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--lp-text);
}

.lp-showcase__body p {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--lp-muted);
  flex: 1;
}

.lp-showcase__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.lp-showcase__tags span {
  padding: 0.3rem 0.75rem;
  border-radius: var(--lp-radius-pill);
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--lp-muted);
  background: var(--lp-paper);
  border: 1px solid var(--lp-gray-200);
}

.lp-showcase__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  margin-top: auto;
  padding-bottom: 2px;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--lp-clay-deep);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: gap 0.25s ease, color 0.2s ease, border-color 0.2s ease;
}

.lp-showcase__cta:hover {
  gap: 0.7rem;
  color: var(--lp-clay);
  border-color: var(--lp-clay);
}

.lp-showcase__cta svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.lp-showcase__cta:hover svg {
  transform: translate(2px, -2px);
}

/* ── Back to top ── */
.lp-back-top {
  position: fixed;
  right: 1.75rem;
  bottom: 1.75rem;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #fff;
  background: var(--lp-ink);
  box-shadow: var(--lp-shadow);
  cursor: pointer;
  opacity: 0;
  transform: translateY(14px) scale(0.9);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.4, 0.64, 1), background 0.2s ease;
}

.lp-back-top.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.lp-back-top:hover {
  background: var(--lp-clay);
  transform: translateY(-3px) scale(1.05);
}

.lp-back-top[hidden] {
  display: flex !important;
}

/* ── Quality grid ── */
.lp-quality {
  padding: 6rem 0;
  background: var(--lp-paper);
}

.lp-quality__grid {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--lp-gray-200);
  border-left: 1px solid var(--lp-gray-200);
}

@media (min-width: 640px) {
  .lp-quality__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .lp-quality__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Editorial grid: cells separated by hairlines, not floating cards */
.lp-quality__item {
  position: relative;
  padding: 2.25rem;
  background: transparent;
  border-right: 1px solid var(--lp-gray-200);
  border-bottom: 1px solid var(--lp-gray-200);
  transition: background 0.3s ease;
}

.lp-quality__item:hover {
  background: var(--lp-surface);
}

.lp-quality__icon {
  width: 2.85rem;
  height: 2.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border-radius: 14px;
  background: var(--lp-clay-soft);
  color: var(--lp-clay-deep);
}

.lp-quality__item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--lp-text);
}

.lp-quality__item p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--lp-muted);
}

/* ── CTA band (the one intentional dark moment) ── */
.lp-cta-band {
  position: relative;
  background: var(--lp-ink);
  color: #f6f1ea;
  padding: 4.5rem 0;
  overflow: hidden;
}

.lp-cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 90% at 88% 50%, rgba(182, 204, 79, 0.28), transparent 60%),
    radial-gradient(ellipse 40% 70% at 5% 30%, rgba(198, 217, 110, 0.1), transparent 55%);
  pointer-events: none;
}

.lp-cta-band__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .lp-cta-band__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.lp-cta-band h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 600;
  line-height: 1.15;
  color: #fff;
}

.lp-cta-band p {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(246, 241, 234, 0.7);
}

/* Make the CTA button read as cream-on-dark here */
.lp-cta-band .lp-btn--orange {
  background: #fff;
  color: var(--lp-ink);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.lp-cta-band .lp-btn--orange:hover {
  background: var(--lp-clay);
  color: #fff;
}

/* ── FAQ (quiet hairline accordion) ── */
.lp-faq {
  padding: 6rem 0;
  background: var(--lp-surface);
  border-top: 1px solid var(--lp-gray-200);
}

.lp-faq__layout {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .lp-faq__layout {
    grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
    gap: 5rem;
    align-items: start;
  }
}

.lp-faq__intro {
  position: sticky;
  top: 6.5rem;
}

.lp-faq__intro h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--lp-text);
}

.lp-faq__intro p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--lp-muted);
  line-height: 1.65;
  max-width: 24rem;
}

.lp-faq__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--lp-gray-200);
}

.lp-faq__item {
  border: none;
  border-bottom: 1px solid var(--lp-gray-200);
  border-radius: 0;
  overflow: hidden;
  background: transparent;
}

.lp-faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 0.25rem;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--lp-text);
  cursor: pointer;
  list-style: none;
  transition: color 0.15s;
}

.lp-faq__item summary:hover {
  color: var(--lp-clay-deep);
}

.lp-faq__item summary::-webkit-details-marker {
  display: none;
}

.lp-faq__item summary::after {
  content: '';
  flex-shrink: 0;
  width: 1.4rem;
  height: 1.4rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%230c0d0e' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.1rem;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.lp-faq__item[open] summary::after {
  transform: rotate(135deg);
}

.lp-faq__item .lp-faq__answer {
  padding: 0 0 1.4rem;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--lp-muted);
  max-width: 40rem;
}

/* ── Contact ── */
.lp-contact {
  position: relative;
  padding: 6rem 0;
  background: var(--lp-paper);
  overflow: hidden;
  scroll-margin-top: 5.5rem;
}

.lp-contact .lp-section-head {
  margin-bottom: 3.5rem;
}

.lp-contact__grid {
  position: relative;
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .lp-contact__grid {
    grid-template-columns: 1fr 1.15fr;
    gap: 3.5rem;
    align-items: start;
  }
}

.lp-contact__cards {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--lp-gray-200);
}

.lp-contact__card {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.5rem 0.25rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--lp-gray-200);
  border-radius: 0;
  transition: padding-left 0.25s ease;
}

.lp-contact__card:hover {
  padding-left: 0.75rem;
}

.lp-contact__card-icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--lp-clay-soft);
  color: var(--lp-clay-deep);
}

.lp-contact__card strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.35;
  margin-bottom: 0.3rem;
  color: var(--lp-muted);
}

.lp-contact__card span,
.lp-contact__card a {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--lp-text);
  text-decoration: none;
  line-height: 1.5;
}

.lp-contact__card a:hover {
  color: var(--lp-clay-deep);
}

/* ── Form ── */
.lp-form-card {
  background: var(--lp-surface);
  border: 1px solid var(--lp-gray-200);
  border-radius: var(--lp-radius-lg);
  padding: 2rem;
  box-shadow: var(--lp-shadow);
  position: relative;
  overflow: hidden;
}

.lp-form-card--compact {
  padding: 1.6rem;
}

.lp-form-card__head--compact {
  margin-bottom: 1rem;
}

.lp-form-card__head--compact h3 {
  margin: 0;
  font-family: var(--lp-font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--lp-text);
}

.lp-form--compact {
  gap: 0.85rem;
}

.lp-form__row--3 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .lp-form__row--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
  }
}

.lp-form--compact .lp-form__row {
  gap: 0.85rem;
}

.lp-form--compact .lp-form__field label {
  font-size: 0.8rem;
  margin-bottom: 0.35rem;
}

.lp-form--compact .lp-form__field input,
.lp-form--compact .lp-form__field select,
.lp-form--compact .lp-form__field textarea {
  padding: 0.7rem 0.9rem;
  font-size: 0.9rem;
}

.lp-form--compact .lp-form__field textarea {
  min-height: 5rem;
}

.lp-form__upload--compact {
  margin-top: 0.25rem;
  padding: 0.75rem 0.95rem;
  font-size: 0.82rem;
}

.lp-form__upload--compact svg {
  width: 16px;
  height: 16px;
}

.lp-form__captcha--compact {
  min-height: 0;
  margin: 0.25rem 0;
  transform: scale(0.95);
  transform-origin: left center;
}

.page-landing .lp-btn--compact {
  padding: 0.85rem 1.2rem;
  font-size: 0.92rem;
  margin-top: 0.35rem;
}

.lp-form__legal--compact {
  margin: 0.35rem 0 0;
  font-size: 0.72rem;
  text-align: left;
}

.lp-form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 2.5rem 1.5rem;
  text-align: center;
  color: #15803d;
}

.lp-form-card__head {
  margin-bottom: 1.1rem;
}

.lp-form-card__head h3 {
  margin: 0 0 0.35rem;
  font-family: var(--lp-font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--lp-text);
  letter-spacing: -0.015em;
}

.lp-form-card__head p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--lp-muted);
}

.lp-form {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.lp-form__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.lp-form__row {
  display: grid;
  gap: 0.95rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .lp-form__row {
    grid-template-columns: 1fr 1fr;
  }
}

.lp-form__field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 0.45rem;
  color: var(--lp-text);
}

.lp-form__required {
  color: var(--lp-clay);
  font-weight: 700;
}

.lp-form__optional {
  font-weight: 400;
  color: var(--lp-muted);
}

.lp-form__hint {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  color: var(--lp-muted);
}

.lp-form__field input,
.lp-form__field select,
.lp-form__field textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
  font-family: var(--lp-font-body);
  border: 1px solid var(--lp-gray-200);
  border-radius: 10px;
  background: var(--lp-paper);
  color: var(--lp-text);
  transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
}

.lp-form__field input::placeholder,
.lp-form__field textarea::placeholder {
  color: #a89c8a;
}

.lp-form__field input:focus,
.lp-form__field select:focus,
.lp-form__field textarea:focus {
  outline: none;
  border-color: var(--lp-clay);
  background: var(--lp-surface);
  box-shadow: 0 0 0 3px rgba(182, 204, 79, 0.14);
}

/* iOS: font-size < 16px triggers auto-zoom on focus — always use 1rem on mobile */
@media (max-width: 767px) {
  .lp-form__field input,
  .lp-form__field select,
  .lp-form__field textarea,
  .lp-form--compact .lp-form__field input,
  .lp-form--compact .lp-form__field select,
  .lp-form--compact .lp-form__field textarea {
    font-size: 1rem;
  }

  /* Reduce compact card outer padding on very narrow phones */
  .lp-form-card--compact {
    padding: 1.25rem;
  }
}

.lp-form.hidden {
  display: none !important;
}

.lp-form__upload {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.25rem;
  padding: 1rem 1.1rem;
  border: 1.5px dashed rgba(182, 204, 79, 0.4);
  border-radius: 10px;
  background: rgba(182, 204, 79, 0.05);
  color: var(--lp-muted);
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s;
}

.lp-form__upload:hover {
  background: rgba(182, 204, 79, 0.09);
  border-color: var(--lp-clay);
}

.lp-form__upload svg {
  flex-shrink: 0;
  color: var(--lp-clay);
}

.lp-form__upload-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.lp-form__preview {
  position: relative;
  margin-bottom: 0.65rem;
  height: 6.5rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--lp-gray-200);
}

.lp-form__preview.hidden {
  display: none;
}

.lp-form__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-form__preview-remove {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border: none;
  border-radius: 999px;
  background: rgba(33, 28, 22, 0.72);
  color: #fff;
  cursor: pointer;
  transition: background 0.15s;
}

.lp-form__preview-remove:hover {
  background: #b03028;
}

.lp-form__captcha {
  display: flex;
  justify-content: center;
  min-height: 65px;
}

.lp-form__captcha-notice {
  margin: 0 0 0.75rem;
  padding: 0.8rem 0.95rem;
  border-radius: 10px;
  border: 1px solid #fecaca;
  background: #fef2f2;
  color: #b91c1c;
  font-size: 0.84rem;
  line-height: 1.5;
}

.lp-form__captcha-notice.hidden {
  display: none;
}

.lp-form__captcha-notice a {
  color: var(--lp-clay-deep);
  font-weight: 600;
}

.lp-form__captcha-retry {
  display: inline;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  color: var(--lp-clay-deep);
  font: inherit;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}

.lp-form__field textarea {
  resize: vertical;
  min-height: 5.5rem;
}

.lp-form__legal {
  margin: 0;
  font-size: 0.74rem;
  text-align: center;
  color: var(--lp-muted);
}

.lp-form__legal a {
  color: var(--lp-clay-deep);
  text-decoration: underline;
}

.lp-form-success.hidden {
  display: none;
}

.lp-form-success__title {
  margin: 0;
  font-family: var(--lp-font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--lp-text);
}

.lp-form-success__text {
  margin: 0;
  font-size: 0.92rem;
  color: var(--lp-muted);
}

/* ── Footer (rich, multi-column, corporate) ── */
.lp-footer {
  background: var(--lp-ink);
  color: rgba(226, 233, 245, 0.62);
  padding: 4.5rem 0 2rem;
}

.lp-footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 720px) {
  .lp-footer__top {
    grid-template-columns: 1.5fr 1fr 1.3fr;
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .lp-footer__top {
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
    gap: 2rem;
  }
}

.lp-footer__brand-logo {
  display: inline-block;
  font-family: var(--lp-font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  text-decoration: none;
}

.lp-footer__brand-logo img {
  height: 2.1rem;
  width: auto;
}

.lp-footer__brand p {
  margin: 1rem 0 1.25rem;
  max-width: 24rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(226, 233, 245, 0.6);
}

.lp-footer__social {
  display: flex;
  gap: 0.6rem;
}

.lp-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(226, 233, 245, 0.8);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.lp-footer__social a:hover {
  background: var(--lp-clay);
  border-color: var(--lp-clay);
  color: #fff;
}

.lp-footer__col h4 {
  margin: 0 0 1.1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}

.lp-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.lp-footer__col a {
  font-size: 0.92rem;
  color: rgba(226, 233, 245, 0.62);
  text-decoration: none;
  transition: color 0.18s;
}

.lp-footer__col a:hover {
  color: var(--lp-clay-light);
}

.lp-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(226, 233, 245, 0.62);
}

.lp-footer__contact svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--lp-clay-light);
}

.lp-footer__contact a {
  color: rgba(226, 233, 245, 0.62);
  text-decoration: none;
}

.lp-footer__contact a:hover {
  color: var(--lp-clay-light);
}

.lp-footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.75rem;
  text-align: center;
}

@media (min-width: 720px) {
  .lp-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.lp-footer__bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.lp-footer__bottom-links a {
  font-size: 0.82rem;
  color: rgba(226, 233, 245, 0.55);
  text-decoration: none;
}

.lp-footer__bottom-links a:hover {
  color: #fff;
}

.lp-footer__copy {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(226, 233, 245, 0.45);
}

/* ============================================================
   Inner pages (servicios · portfolio · contacto)
   Light, airy inner heroes; --color-* aliases for inline styles.
   ============================================================ */
.page-landing {
  --color-primary: var(--lp-ink);
  --color-primary-soft: var(--lp-ink-soft);
  --color-accent: var(--lp-clay);
  --color-accent-hover: var(--lp-clay-hover);
  --color-accent-light: var(--lp-clay-soft);
  --color-text: var(--lp-text);
  --color-muted: var(--lp-muted);
  --color-gray-50: var(--lp-paper);
  --color-gray-100: var(--lp-gray-100);
  --color-gray-200: var(--lp-gray-200);
  --color-gray-500: var(--lp-gray-500);
}

/* Tailwind CDN preflight resets heading sizes — give standalone
   .lp-display headings (inner-page <h1>) an explicit, confident size. */
.page-landing h1.lp-display,
.page-landing .lp-page-hero h1,
.page-landing .lp-hero--inner h1 {
  font-family: var(--lp-font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.02;
  text-transform: uppercase;
  margin: 0;
  color: #fff;
}

/* Inner-page hero — immersive dark (overrides inline .lp-page-hero defs) */
.page-landing .lp-hero--inner,
.page-landing .lp-page-hero {
  position: relative;
  margin-top: 0;
  padding: 5rem 0 4rem;
  background: var(--lp-ink);
  color: #fff;
  text-align: left;
  overflow: hidden;
  border-bottom: none;
}

.page-landing .lp-hero--inner::before,
.page-landing .lp-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 88% 0%, rgba(182, 204, 79, 0.14), transparent 60%),
    linear-gradient(180deg, #131416, var(--lp-ink) 70%);
  pointer-events: none;
}

.page-landing .lp-hero--inner::after,
.page-landing .lp-page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 20%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 20%, #000, transparent 75%);
  opacity: 0.6;
  pointer-events: none;
}

.page-landing .lp-hero--inner > .lp-container,
.page-landing .lp-page-hero > .lp-container {
  position: relative;
  z-index: 1;
}

.page-landing .lp-hero--inner .lp-hero__lead,
.page-landing .lp-page-hero__sub {
  position: relative;
  z-index: 1;
  margin-top: 1.25rem;
  max-width: 42rem;
  font-size: 1.12rem;
  line-height: 1.65;
  color: rgba(243, 243, 238, 0.72);
}

.page-landing .lp-hero--inner .lp-hero__badge {
  margin-bottom: 1.25rem;
}

.page-landing .lp-page-hero__eyebrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lp-clay-light);
}

.page-landing .lp-page-hero__eyebrow::before {
  content: '';
  width: 1.75rem;
  height: 2px;
  background: var(--lp-clay);
}

/* Breadcrumb — light text on the dark inner hero */
.page-landing .lp-breadcrumb {
  position: relative;
  z-index: 1;
  font-size: 0.84rem;
  color: rgba(243, 243, 238, 0.6);
  margin-bottom: 1.25rem;
}

.page-landing .lp-breadcrumb a {
  color: rgba(243, 243, 238, 0.6);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.18s;
}

.page-landing .lp-breadcrumb a:hover {
  color: var(--lp-clay-light);
}

@media (prefers-reduced-motion: reduce) {
  .page-landing *,
  .page-landing *::before,
  .page-landing *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .lp-clients__track {
    animation: none;
  }

  .page-landing .lp-reveal {
    opacity: 1;
    transform: none;
  }
}

/* Footer service-area links (Trabajamos en: Valencia · Paterna · …) */
.lp-footer__areas {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem 0.9rem;
  padding: 1.25rem 0;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(243, 243, 238, 0.12);
  font-size: 0.85rem;
}
.lp-footer__areas-label {
  color: var(--lp-clay, #b6cc4f);
  font-weight: 600;
}
.lp-footer__areas a {
  color: rgba(243, 243, 238, 0.65);
  text-decoration: none;
  transition: color 0.15s ease;
}
.lp-footer__areas a:hover {
  color: #fff;
  text-decoration: underline;
}
