/* ---- SNOVI service landing pages (lp-*) ----
   Shared by /uslugi/*.html and /en/services/*.html.
   Loads after pure.css (fonts, vars, reset, the .cta block styles).
   Minimalist, matching the strategy page: pure black, white type,
   muted-white secondary text, thin hairline separators. No eyebrow
   labels, no red text — red survives only as the CTA hover dot that
   pure.css owns. No loader, no kinetic menu: these pages are entered
   from search and must paint instantly. */

html { scroll-behavior: smooth; background: #000; }
body {
  background: #000;
  color: #fff;
  margin: 0;
  overflow-x: clip;
}

/* Atmosphere: a whisper of warm black, no red wash. */
.lp-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(1200px 820px at 100% -20%, rgba(28, 7, 7, 0.5) 0%, transparent 68%);
}
.lp-page { position: relative; z-index: 1; }

/* ---- Header ---- */
.lp-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1.1rem, 2.5vw, 1.8rem) clamp(1.25rem, 4vw, 3rem);
}
.lp-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: #fff;
  font-family: var(--ff-display);
  font-size: 1.05rem;
  letter-spacing: 0.14em;
}
.lp-logo img { height: 1.05em; width: auto; display: block; }
.lp-header-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.2rem);
}
.lp-header-nav a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-family: var(--ff-display);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: color 0.25s;
}
.lp-header-nav a:hover { color: #fff; }
.lp-header-nav .lp-nav-pill {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.7rem 1.3rem;
  transition: border-color 0.25s, color 0.25s;
}
.lp-header-nav .lp-nav-pill:hover { border-color: rgba(255, 255, 255, 0.55); color: #fff; }

/* ---- Hero ---- */
.lp-hero {
  min-height: 92svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem clamp(1.25rem, 4vw, 3rem) 3rem;
}
.lp-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 7.2vw, 6.2rem);
  line-height: 0.94;
  font-weight: 400;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 clamp(1.3rem, 3vh, 2.2rem);
  max-width: 18ch;
}
.lp-lead {
  font-family: var(--ff-body);
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  line-height: 1.5;
  letter-spacing: 0.005em;
  color: rgba(255, 255, 255, 0.52);
  max-width: 34rem;
  margin: 0 0 clamp(2rem, 5vh, 3.2rem);
}
.lp-hero-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2.4rem;
}
.lp-arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-family: var(--ff-display);
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 0.45rem;
  transition: color 0.25s, border-color 0.25s;
}
.lp-arrow-link svg {
  width: 1em;
  height: 1em;
  opacity: 0.5;
  transition: transform 0.3s, opacity 0.3s;
}
.lp-arrow-link:hover { color: #fff; border-color: rgba(255, 255, 255, 0.6); }
.lp-arrow-link:hover svg { transform: translate(3px, -3px); opacity: 1; }
.lp-quiet-link {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-family: var(--ff-display);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition: color 0.25s;
}
.lp-quiet-link:hover { color: #fff; }

/* Dots after headings — white, just punctuation. */
.lp-dot { color: #fff; }

/* ---- Sections ---- */
.lp-section {
  padding: clamp(3.5rem, 9vh, 6.5rem) clamp(1.25rem, 4vw, 3rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.lp-section h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 4.8vw, 3.6rem);
  line-height: 0.97;
  font-weight: 400;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 clamp(2rem, 5vh, 3.4rem);
  max-width: 24ch;
}

/* Included — numbered editorial grid */
.lp-inc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  column-gap: clamp(1.5rem, 4vw, 3.5rem);
  list-style: none;
  padding: 0;
  margin: 0;
}
.lp-inc {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  padding: 1.5rem 0 2.1rem;
}
.lp-inc-num {
  font-family: var(--ff-body);
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  color: rgba(255, 255, 255, 0.35);
  display: block;
  margin-bottom: 0.8rem;
}
.lp-inc h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 0.7rem;
}
.lp-inc p {
  font-family: var(--ff-body);
  font-size: 0.94rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* Process — compact numbered rows */
.lp-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 clamp(2rem, 5vh, 3rem);
  max-width: 46rem;
}
.lp-steps li {
  display: flex;
  align-items: baseline;
  gap: clamp(1rem, 3vw, 2rem);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  padding: 1.15rem 0;
}
.lp-steps .lp-step-num {
  font-family: var(--ff-body);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.35);
  min-width: 2.2rem;
}
.lp-steps .lp-step-name {
  font-family: var(--ff-display);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
  min-width: clamp(7rem, 18vw, 11rem);
}
.lp-steps .lp-step-desc {
  font-family: var(--ff-body);
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 640px) {
  .lp-steps li { flex-wrap: wrap; }
  .lp-steps .lp-step-desc { flex-basis: 100%; }
}

/* Why — three statements */
.lp-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: clamp(1.8rem, 4vw, 3rem);
}
.lp-why h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: #fff;
  margin: 0 0 0.8rem;
}
.lp-why h3 em {
  font-style: normal;
  color: inherit;
}
.lp-why p {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.52);
  margin: 0;
  max-width: 30rem;
}

/* FAQ */
.lp-faq-wrap { max-width: 50rem; }
.lp-faq {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}
.lp-faq:last-of-type { border-bottom: 1px solid rgba(255, 255, 255, 0.13); }
.lp-faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.3rem 0;
  font-family: var(--ff-display);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.25s;
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after {
  content: "+";
  font-family: var(--ff-display);
  font-size: 1.4em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
  transition: transform 0.3s, color 0.25s;
}
.lp-faq[open] summary::after { transform: rotate(45deg); }
.lp-faq summary:hover { color: #fff; }
.lp-faq summary:hover::after { color: #fff; }
.lp-faq p {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  padding: 0 0 1.5rem;
  max-width: 44rem;
}

/* Footer */
.lp-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: clamp(2rem, 5vh, 3rem) clamp(1.25rem, 4vw, 3rem) clamp(2.5rem, 6vh, 3.5rem);
}
.lp-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-bottom: 1.6rem;
}
.lp-footer-nav a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-family: var(--ff-display);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: color 0.25s;
}
.lp-footer-nav a:hover { color: #fff; }
.lp-footer-fine {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.32);
  margin: 0;
}

/* Reveal on scroll */
.lp-rev {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.lp-rev.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .lp-rev { opacity: 1; transform: none; transition: none; }
}
