/* ==========================================================================
   Srijemuš La Vita — ONEPAGE LANDING (.lp-*)
   Editorial apothecary: deep forest ink + warm ochre accent on cream paper.
   Layered ON TOP of the theme. Design tokens (--forest-*, --ochre-*, --cream-*,
   --font-*, --radius-*, --shadow-*) already live in :root — consumed, not redeclared.
   Owns ONLY .lp-* (+ body variant rules). The .pp-* order form is owned elsewhere.
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. PER-VARIANT ACCENT THEMING
   Forest green stays the structural ink everywhere; only the ACCENT shifts.
   -------------------------------------------------------------------------- */
.lp-body {
  /* default = warm cleanse (ochre/gold) */
  --lp-topbar-height: 36px;
  --lp-accent: var(--ochre-500);
  --lp-accent-deep: var(--ochre-700);
  --lp-accent-soft: rgba(184, 135, 74, 0.14);
  --lp-accent-ink: var(--ochre-700);
  --lp-accent-glow: rgba(184, 135, 74, 0.28);
  --lp-radius-feel: var(--radius-lg);
}

.lp--holesterol {
  --lp-accent: #b8874a;
  --lp-accent-deep: #8a5e20;
  --lp-accent-soft: rgba(184, 135, 74, 0.14);
  --lp-accent-ink: #8a5e20;
  --lp-accent-glow: rgba(184, 135, 74, 0.30);
}

.lp--pritisak {
  /* calm regulate — deep forest/teal accent */
  --lp-accent: #2a6a44;
  --lp-accent-deep: #14452c;
  --lp-accent-soft: rgba(42, 106, 68, 0.13);
  --lp-accent-ink: #1d5134;
  --lp-accent-glow: rgba(42, 106, 68, 0.28);
}

.lp--wellness {
  --lp-accent: #2a6a44;
  --lp-accent-deep: #14452c;
  --lp-accent-soft: rgba(42, 106, 68, 0.13);
  --lp-accent-ink: #1d5134;
  --lp-accent-glow: rgba(42, 106, 68, 0.28);
}

.lp--deca {
  /* friendly family — softer warm honey/amber, slightly rounder */
  --lp-accent: #c8a368;
  --lp-accent-deep: #a07b33;
  --lp-accent-soft: rgba(200, 163, 104, 0.18);
  --lp-accent-ink: #8a5e20;
  --lp-accent-glow: rgba(200, 163, 104, 0.32);
  --lp-radius-feel: var(--radius-xl);
}

/* --------------------------------------------------------------------------
   1. GLOBAL / LAYOUT
   -------------------------------------------------------------------------- */
.lp-body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--cream-100);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.lp.pp {
  background: var(--cream-100);
}

.lp section[id],
.lp-order {
  scroll-margin-top: calc(var(--lp-topbar-height) + 112px);
}

.lp-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: 0.85rem 1.4rem;
  background: var(--forest-800);
  color: var(--cream-50);
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: 0 0 var(--radius-sm) 0;
  text-decoration: none;
}
.lp-skip:focus {
  left: 0;
  outline: 3px solid var(--lp-accent);
  outline-offset: 2px;
}

.lp-container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

/* Focus-visible — warm, consistent across all interactive lp elements */
.lp-body a:focus-visible,
.lp-body button:focus-visible,
.lp-body summary:focus-visible {
  outline: 3px solid var(--lp-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --------------------------------------------------------------------------
   2. BUTTONS
   -------------------------------------------------------------------------- */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: -0.01em;
  min-height: 52px;
  padding: 0 1.7rem;
  border-radius: 12px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.22s ease,
    background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease;
  will-change: transform;
}
.lp-btn svg {
  width: 19px;
  height: 19px;
  flex: none;
}

.lp-btn-lg {
  min-height: 58px;
  padding: 0 2rem;
  font-size: 1.06rem;
}

/* Primary — pressed apothecary button: solid forest with a dark base ledge */
.lp-btn-primary {
  background: var(--forest-700);
  color: var(--cream-50);
  box-shadow: 0 6px 18px -6px rgba(15, 54, 34, 0.45);
}
.lp-btn-primary:hover,
.lp-btn-primary:focus-visible {
  background: var(--forest-800);
  color: var(--cream-50);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -8px rgba(15, 54, 34, 0.5);
}
.lp-btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px -4px rgba(15, 54, 34, 0.45);
}

/* Ghost — quiet forest outline that fills on hover */
.lp-btn-ghost {
  background: transparent;
  color: var(--forest-700);
  border-color: rgba(29, 81, 52, 0.32);
}
.lp-btn-ghost:hover,
.lp-btn-ghost:focus-visible {
  background: var(--forest-700);
  color: var(--cream-50);
  border-color: var(--forest-700);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -10px rgba(15, 54, 34, 0.45);
}
.lp-btn-ghost:hover svg { color: var(--cream-50); }
.lp-btn-ghost:active {
  transform: translateY(0);
}

/* Arrow micro-interaction */
.lp-btn-arrow {
  display: inline-block;
  font-size: 1.05em;
  transition: transform 0.22s ease;
}
.lp-btn:hover .lp-btn-arrow {
  transform: translateY(3px);
}
/* Sticky/horizontal arrows nudge sideways */
.lp-stickybar-btn:hover .lp-btn-arrow {
  transform: translateX(3px);
}

/* --------------------------------------------------------------------------
   3. STICKY TOPBAR + HEADER NAV
   -------------------------------------------------------------------------- */
.lp-topbar {
  position: sticky;
  top: 0;
  z-index: 80;
  height: var(--lp-topbar-height);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0 clamp(1rem, 4vw, 2rem);
  background: var(--forest-900);
  color: var(--cream-50);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 6px 22px rgba(15, 54, 34, 0.16);
}
.lp-topbar-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex: none;
  color: var(--lp-accent);
}
.lp-topbar-ic svg {
  width: 18px;
  height: 18px;
  display: block;
}

.lp-header {
  position: sticky;
  top: var(--lp-topbar-height);
  z-index: 70;
  background: rgba(250, 246, 237, 0.82);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--color-border);
  padding: 0.68rem 0;
  transition: padding 0.25s ease, box-shadow 0.25s ease,
    background-color 0.25s ease;
}
.lp-header.is-stuck {
  padding: 0.48rem 0;
  background: rgba(250, 246, 237, 0.94);
  box-shadow: 0 6px 24px rgba(15, 54, 34, 0.08);
}

.lp-header-inner {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1rem, 2.6vw, 2rem);
}

.lp-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.lp-logo img {
  height: 44px;
  width: auto;
  display: block;
  transition: height 0.25s ease;
}
.lp-header.is-stuck .lp-logo img {
  height: 38px;
}

.lp-header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.7rem, 2vw, 1.3rem);
  min-width: max-content;
}

.lp-header-trust {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-text-light);
}

.lp-header-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lp-accent);
  flex: none;
  box-shadow: 0 0 0 0 var(--lp-accent-glow);
  animation: lp-pulse 2.4s ease-out infinite;
}

.lp-header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--forest-700);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.lp-header-phone svg {
  width: 18px;
  height: 18px;
  color: var(--lp-accent);
  flex: none;
}
.lp-header-phone:hover {
  color: var(--forest-900);
}

.lp-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.15rem;
  min-height: 40px;
  border-radius: 999px;
  background: var(--lp-accent);
  color: var(--forest-900);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 10px var(--lp-accent-glow);
  transition: transform 0.18s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.lp-header-cta:hover,
.lp-header-cta:focus-visible {
  transform: translateY(-1px);
  background: var(--lp-accent-deep);
  color: var(--cream-50);
  box-shadow: 0 6px 16px var(--lp-accent-glow);
}
/* On forest-accent variants the pill needs cream text for contrast. */
.lp--pritisak .lp-header-cta,
.lp--wellness .lp-header-cta {
  color: var(--cream-50);
}

.lp-header-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(29, 81, 52, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  color: var(--forest-900);
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.lp-header-menu-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.lp-header-menu-toggle:hover,
.lp-header-menu-toggle:focus-visible {
  background: var(--cream-50);
  border-color: rgba(29, 81, 52, 0.28);
  transform: translateY(-1px);
}
.lp-header.is-menu-open .lp-header-menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.lp-header.is-menu-open .lp-header-menu-toggle span:nth-child(2) {
  opacity: 0;
}
.lp-header.is-menu-open .lp-header-menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.lp-header-nav {
  width: 100%;
  min-width: 0;
  margin: 0;
  padding-inline: 0;
}
.lp-header-nav-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.2rem, 0.6vw, 0.55rem);
  overflow-x: visible;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0;
}
.lp-header-nav-track::-webkit-scrollbar {
  display: none;
}
.lp-nav-link {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 0.42rem;
  border-radius: 0;
  color: rgba(20, 69, 44, 0.72);
  background: transparent;
  border: 0;
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.18s ease, transform 0.18s ease;
}
.lp-nav-link::after {
  content: "";
  position: absolute;
  left: 0.42rem;
  right: 0.42rem;
  bottom: 0.28rem;
  height: 2px;
  border-radius: 999px;
  background: var(--lp-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.18s ease;
}
.lp-nav-link:hover,
.lp-nav-link:focus-visible,
.lp-nav-link.is-active {
  background: transparent;
  color: var(--forest-900);
}
.lp-nav-link:hover {
  transform: translateY(-1px);
}
.lp-nav-link:hover::after,
.lp-nav-link:focus-visible::after,
.lp-nav-link.is-active::after {
  transform: scaleX(1);
}
.lp-nav-link[href="#pp-order"] {
  display: none;
}

/* --------------------------------------------------------------------------
   4. HERO
   -------------------------------------------------------------------------- */
.lp-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(120% 95% at 88% 8%, rgba(184, 135, 74, 0.10), transparent 60%),
    linear-gradient(180deg, var(--cream-50) 0%, var(--cream-100) 70%, var(--cream-100) 100%);
}
/* Faint forest photo as a textured top-right corner — never behind the copy */
.lp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--lp-hero-bg);
  background-size: cover;
  background-position: center right;
  opacity: 0.10;
  -webkit-mask-image: radial-gradient(120% 120% at 100% 0%, #000 0%, transparent 62%);
  mask-image: radial-gradient(120% 120% at 100% 0%, #000 0%, transparent 62%);
  pointer-events: none;
}

.lp-hero-grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}

.lp-hero-inner {
  position: relative;
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 920px) {
  .lp-hero-inner {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.lp-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Eyebrow — shared across sections */
.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--lp-accent-ink);
  margin-bottom: 1rem;
}
.lp-eyebrow-rule {
  display: inline-block;
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: var(--lp-accent);
  flex: none;
}
.lp-eyebrow.is-center {
  justify-content: center;
}
.lp-eyebrow.is-gold {
  color: var(--ochre-300);
}
.lp-eyebrow.is-gold .lp-eyebrow-rule {
  background: var(--ochre-400);
}

.lp-hero-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(2.4rem, 5.2vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--forest-900);
  margin: 0 0 1.1rem;
}
.lp-hero-title em {
  font-style: italic;
  color: var(--lp-accent);
  text-decoration: none;
}
.lp--pritisak .lp-hero-title em {
  color: var(--forest-600);
}

.lp-hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.6vw, 1.18rem);
  line-height: 1.6;
  color: var(--color-text);
  max-width: 46ch;
  margin: 0 0 1.6rem;
}

.lp-hero-desc {
  font-family: var(--font-body);
  font-size: clamp(0.98rem, 1.25vw, 1.06rem);
  line-height: 1.65;
  color: var(--color-text-light);
  max-width: 58ch;
  margin: -0.75rem 0 1.55rem;
}

.lp-hero-checks {
  list-style: none;
  margin: 0 0 1.8rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.lp-hero-checks li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: clamp(0.98rem, 1.4vw, 1.04rem);
  line-height: 1.45;
  color: var(--color-text);
}
.lp-hero-checks strong {
  color: var(--forest-900);
  font-weight: 600;
}
.lp-check-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--lp-accent-soft);
  color: var(--lp-accent-deep);
  flex: none;
  margin-top: 1px;
}
.lp-check-ic svg {
  width: 15px;
  height: 15px;
}

.lp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.7rem;
}

.lp-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
}
.lp-badge svg {
  width: 16px;
  height: 16px;
  color: var(--lp-accent);
  flex: none;
}

/* --- Hero visual: apothecary plate holding the floating product --- */
.lp-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lp-hero-frame {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(70% 70% at 50% 38%, var(--cream-50) 0%, var(--cream-200) 78%),
    var(--forest-100);
  border: 1px solid rgba(29, 81, 52, 0.10);
  box-shadow: 0 30px 70px rgba(15, 54, 34, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
/* Concentric ring detail inside the plate */
.lp-hero-frame::after {
  content: "";
  position: absolute;
  inset: clamp(14px, 4%, 26px);
  border-radius: calc(var(--radius-xl) - 8px);
  border: 1.5px solid rgba(29, 81, 52, 0.10);
  pointer-events: none;
}

.lp-hero-frame-glow {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--lp-accent-glow) 0%, transparent 68%);
  filter: blur(28px);
  z-index: 0;
  pointer-events: none;
}

.lp-hero-img {
  position: relative;
  z-index: 1;
  width: 80%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 34px rgba(15, 54, 34, 0.28));
  animation: lp-float 6s ease-in-out infinite;
  transition: opacity 0.3s ease;
}
.lp-hero-img.is-swapping {
  opacity: 0.35;
}

/* Play pill overlapping the frame bottom */
.lp-hero-play {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1rem 0.45rem 0.5rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--cream-50);
  color: var(--forest-800);
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform 0.18s ease, box-shadow 0.22s ease;
}
.lp-hero-play:hover {
  transform: translateX(-50%) translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.lp-hero-play-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--forest-700);
  color: var(--cream-50);
  flex: none;
}
.lp-hero-play-ic svg {
  width: 15px;
  height: 15px;
  margin-left: 1px;
}
.lp-hero-play-label {
  font-size: 0.88rem;
  font-weight: 600;
}

/* Gold medal seal, top-right, slightly rotated */
.lp-hero-seal {
  position: absolute;
  top: 8px;
  right: 4px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem 0.5rem 0.6rem;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--ochre-300), var(--ochre-500));
  color: var(--ochre-700);
  box-shadow: 0 10px 22px rgba(138, 94, 32, 0.30);
  transform: rotate(6deg);
}
.lp-hero-seal svg {
  width: 24px;
  height: 24px;
  color: var(--ochre-700);
  flex: none;
}
.lp-hero-seal span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  font-size: 0.66rem;
  color: var(--ochre-700);
}
.lp-hero-seal strong {
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 600;
  color: #4a3210;
}

/* --------------------------------------------------------------------------
   5. TRUST STRIP (forest band)
   -------------------------------------------------------------------------- */
.lp-trust {
  background: var(--forest-900);
  background-image: linear-gradient(180deg, var(--forest-800), var(--forest-900));
  padding: clamp(2rem, 4vw, 2.6rem) 0;
  color: var(--cream-100);
}
.lp-trust-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.2rem, 3vw, 2rem);
}
@media (min-width: 720px) {
  .lp-trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.lp-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
  position: relative;
}
/* hairline dividers between columns on wide screens */
@media (min-width: 720px) {
  .lp-stat:not(:last-child)::after {
    content: "";
    position: absolute;
    right: calc(clamp(1.2rem, 3vw, 2rem) / -2);
    top: 12%;
    height: 76%;
    width: 1px;
    background: rgba(245, 239, 225, 0.14);
  }
}
.lp-stat-num {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1;
  color: var(--ochre-300);
}
.lp--pritisak .lp-stat-num {
  color: var(--ochre-300);
}
.lp-stat-label {
  font-size: 0.82rem;
  line-height: 1.3;
  color: var(--forest-100);
  letter-spacing: 0.01em;
}

/* --------------------------------------------------------------------------
   6. SECTION SCAFFOLD
   -------------------------------------------------------------------------- */
.lp-section {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.lp-section-head {
  max-width: 720px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.lp-section-head.is-center {
  margin-inline: auto;
  text-align: center;
}

.lp-h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  line-height: 1.14;
  letter-spacing: -0.015em;
  color: var(--forest-900);
  margin: 0 0 0.7rem;
}
.lp-h2.is-light {
  color: var(--cream-50);
}

.lp-lead {
  font-family: var(--font-body);
  font-size: clamp(1.02rem, 1.6vw, 1.12rem);
  line-height: 1.6;
  color: var(--color-text-light);
  margin: 0;
}
.lp-lead.is-light {
  color: var(--cream-200);
}

/* --------------------------------------------------------------------------
   7. PROBLEM / SOLUTION
   -------------------------------------------------------------------------- */
.lp-problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.2rem, 3vw, 2rem);
}
@media (min-width: 760px) {
  .lp-problem-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.lp-problem-col {
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border: 1px solid var(--color-border);
}
.lp-problem-issues {
  background: var(--cream-100);
}
.lp-problem-solution {
  background: var(--color-white);
  border-color: rgba(29, 81, 52, 0.16);
  border-left: 4px solid var(--lp-accent);
  box-shadow: var(--shadow-sm);
}

.lp-problem-h {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.2rem, 2.2vw, 1.35rem);
  color: var(--forest-900);
  margin: 0 0 0.8rem;
}

.lp-problem-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.lp-problem-col li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.6rem 0;
  font-size: 1rem;
  line-height: 1.45;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
}
.lp-problem-col li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.lp-li-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex: none;
  margin-top: 1px;
}
.lp-li-ic svg {
  width: 14px;
  height: 14px;
}
.lp-li-x {
  background: rgba(155, 76, 56, 0.12);
  color: #9b4c38; /* desaturated brick / terracotta */
}
.lp-li-check {
  background: var(--lp-accent-soft);
  color: var(--lp-accent-deep);
}

/* --------------------------------------------------------------------------
   8. MECHANISM — 3 numbered steps
   -------------------------------------------------------------------------- */
.lp-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.2rem, 3vw, 2rem);
}
@media (min-width: 760px) {
  .lp-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lp-step {
  position: relative;
  overflow: hidden;
  background: var(--cream-50);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
/* subtle top accent */
.lp-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--lp-accent);
  opacity: 0.85;
}
.lp-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.lp-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--lp-accent-soft);
  color: var(--lp-accent-deep);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 1.1rem;
}

.lp-step-body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.lp-step-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lp-accent-ink);
}
.lp-step-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.18rem, 2.2vw, 1.28rem);
  color: var(--forest-900);
  margin: 0;
}
.lp-step-body p {
  margin: 0.25rem 0 0;
  color: var(--color-text);
  line-height: 1.55;
}

.lp-mechanism-note {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  max-width: 640px;
  margin: clamp(1.8rem, 4vw, 2.5rem) auto 0;
  padding: 1rem 1.4rem;
  border-radius: 999px;
  background: var(--forest-100);
  color: var(--forest-900);
  font-size: 0.98rem;
  line-height: 1.45;
  text-align: left;
}
.lp-mechanism-note svg {
  width: 22px;
  height: 22px;
  color: var(--lp-accent);
  flex: none;
}

/* --------------------------------------------------------------------------
   9. SCIENCE — dark, image-backed band
   -------------------------------------------------------------------------- */
.lp-science {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: var(--forest-900);
  background-image: var(--lp-science-bg);
  background-size: cover;
  background-position: center;
  padding: clamp(3rem, 7vw, 5rem) 0;
}
.lp-science-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(100deg,
      rgba(15, 54, 34, 0.95) 0%,
      rgba(15, 54, 34, 0.88) 42%,
      rgba(20, 69, 44, 0.78) 100%);
  pointer-events: none;
}
.lp-science-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
@media (min-width: 880px) {
  .lp-science-inner {
    grid-template-columns: 1fr 1fr;
  }
}
.lp-science-copy {
  color: var(--cream-100);
}

.lp-facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.9rem, 2vw, 1.2rem);
}
.lp-fact {
  background: rgba(245, 239, 225, 0.06);
  border: 1px solid rgba(245, 239, 225, 0.14);
  border-radius: var(--radius-md);
  padding: clamp(1.1rem, 2.5vw, 1.5rem);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.lp-fact-num {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1;
  color: var(--ochre-300);
  margin-bottom: 0.35rem;
}
.lp-fact-label {
  display: block;
  font-size: 0.86rem;
  line-height: 1.4;
  color: var(--cream-200);
}

/* --------------------------------------------------------------------------
   10. TESTIMONIALS
   -------------------------------------------------------------------------- */
.lp-tgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.2rem, 3vw, 2rem);
}
@media (min-width: 980px) {
  .lp-tgrid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lp-tcard {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--cream-50);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.lp-tcard:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
/* faint serif quote watermark */
.lp-tcard::before {
  content: "\201C";
  position: absolute;
  top: -0.35rem;
  right: 0.6rem;
  font-family: var(--font-heading);
  font-size: 5.5rem;
  line-height: 1;
  color: var(--lp-accent);
  opacity: 0.10;
  pointer-events: none;
}

.lp-tcard-stars {
  display: flex;
  gap: 0.1rem;
  margin-bottom: 0.85rem;
}
.lp-tcard-stars svg {
  width: 16px;
  height: 16px;
  color: var(--ochre-500);
}

.lp-tcard-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--color-dark);
  margin: 0 0 1.3rem;
}

.lp-tcard-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}
.lp-tcard-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex: none;
  background: linear-gradient(145deg, var(--forest-600), var(--forest-800));
  color: var(--cream-50);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.15rem;
  line-height: 1;
}
.lp-tcard-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.lp-tcard-meta strong {
  display: block;
  color: var(--forest-900);
  font-weight: 600;
  font-size: 0.98rem;
}
.lp-tcard-meta span {
  font-size: 0.82rem;
  color: var(--color-text-light);
}

/* --------------------------------------------------------------------------
   11. AUTHORITY / DOCTORS
   -------------------------------------------------------------------------- */
.lp-docs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3rem);
}
.lp-doc {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
  max-width: 220px;
  margin: 0;
}
.lp-doc-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--cream-200);
  box-shadow: 0 0 0 4px var(--cream-50), 0 0 0 6px var(--lp-accent-soft),
    var(--shadow-md);
  border: 2px solid var(--lp-accent);
}
.lp-doc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lp-doc figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.lp-doc figcaption strong {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--forest-900);
}
.lp-doc figcaption span {
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--color-text-light);
}

/* --------------------------------------------------------------------------
   12. ORDER WRAPPER — light additions only (DO NOT restyle .pp-*)
   -------------------------------------------------------------------------- */
.lp-order {
  scroll-margin-top: 84px;
}

.lp-order-securenote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.84rem;
  color: var(--color-text-light);
  text-align: center;
}
.lp-order-securenote svg {
  width: 16px;
  height: 16px;
  flex: none;
}

.lp-order-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  max-width: 480px;
  margin: 0 auto;
  padding: clamp(1.8rem, 4vw, 2.6rem);
  background: var(--cream-50);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.lp-order-fallback p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--cream-100);
}

/* --------------------------------------------------------------------------
   13. GUARANTEE
   -------------------------------------------------------------------------- */
.lp-guarantee-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.2rem, 3vw, 1.8rem);
}
@media (min-width: 760px) {
  .lp-guarantee-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.lp-guarantee-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.7rem;
  background: var(--cream-50);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.lp-guarantee-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.lp-guarantee-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--lp-accent-soft);
  color: var(--lp-accent-deep);
  margin-bottom: 0.3rem;
}
.lp-guarantee-ic svg {
  width: 26px;
  height: 26px;
}
.lp-guarantee-card h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--forest-900);
  margin: 0;
}
.lp-guarantee-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--color-text-light);
}

/* --------------------------------------------------------------------------
   14. FAQ — native <details>/<summary>
   -------------------------------------------------------------------------- */
.lp-faq-inner {
  max-width: 760px;
  margin-inline: auto;
}
.lp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.lp-faq-item {
  background: var(--cream-50);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.22s ease, border-color 0.22s ease;
}
.lp-faq-item[open] {
  border-left: 3px solid var(--lp-accent);
  box-shadow: var(--shadow-sm);
}

.lp-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  padding: clamp(1rem, 2.5vw, 1.3rem);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1rem, 2vw, 1.08rem);
  color: var(--forest-900);
  list-style: none;
}
.lp-faq-q::-webkit-details-marker {
  display: none;
}

/* CSS chevron via borders, rotates on open */
.lp-faq-chevron {
  position: relative;
  width: 14px;
  height: 14px;
  flex: none;
  transition: transform 0.25s ease;
}
.lp-faq-chevron::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 1px;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--lp-accent);
  border-bottom: 2px solid var(--lp-accent);
  transform: rotate(45deg);
}
.lp-faq-item[open] .lp-faq-chevron {
  transform: rotate(180deg);
}

.lp-faq-a {
  padding: 0 clamp(1rem, 2.5vw, 1.3rem) clamp(1rem, 2.5vw, 1.3rem);
  color: var(--color-text);
  line-height: 1.7;
}
.lp-faq-a p {
  margin: 0;
}

/* --------------------------------------------------------------------------
   15. MINI FOOTER
   -------------------------------------------------------------------------- */
.lp-footer {
  background: var(--forest-900);
  color: var(--cream-100);
  padding-top: clamp(3rem, 6vw, 4rem);
}
.lp-footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 3rem);
  padding-bottom: clamp(2.2rem, 5vw, 3rem);
}
@media (min-width: 760px) {
  .lp-footer-inner {
    grid-template-columns: 1.2fr 1fr;
  }
}
@media (min-width: 1040px) {
  .lp-footer-inner {
    grid-template-columns: 1.1fr 0.95fr 1.15fr;
  }
}

.lp-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
/* Safe cream-chip approach so a dark logo stays legible on forest */
.lp-footer-logo {
  height: 44px;
  width: auto;
  display: block;
  padding: 0.5rem 0.75rem;
  background: var(--cream-50);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  box-sizing: content-box;
}
.lp-footer-brand p {
  margin: 0;
  max-width: 44ch;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--cream-200);
}
.lp-footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ochre-300);
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.lp-footer-phone svg {
  width: 20px;
  height: 20px;
  flex: none;
}
.lp-footer-phone:hover {
  color: var(--ochre-200);
}

.lp-footer-trust {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  justify-content: center;
}
.lp-footer-trust p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--cream-200);
}
.lp-footer-trust strong {
  color: var(--cream-50);
  font-weight: 600;
}
.lp-footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
}
.lp-footer-company {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--cream-200);
}
.lp-footer-company strong {
  color: var(--cream-50);
  font-weight: 600;
}
.lp-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  margin-top: 0.2rem;
}
.lp-footer-links a {
  color: var(--ochre-300);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
}
.lp-footer-links a:hover {
  color: var(--ochre-200);
}

.lp-disclaimer {
  border-top: 1px solid rgba(245, 239, 225, 0.12);
  margin-top: 0;
  padding-block: clamp(1.4rem, 3vw, 2rem);
}
.lp-disclaimer p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--cream-200);
  opacity: 0.8;
}
.lp-copy {
  margin-top: 0.6rem !important;
  font-size: 0.74rem !important;
}

/* --------------------------------------------------------------------------
   16. STICKY MOBILE ORDER BAR
   -------------------------------------------------------------------------- */
.lp-stickybar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem clamp(1rem, 4vw, 1.5rem);
  padding-bottom: calc(0.7rem + env(safe-area-inset-bottom, 0px));
  background: var(--cream-50);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -6px 24px rgba(15, 54, 34, 0.14);
  transform: translateY(110%);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
/* JS removes the [hidden] attr, then toggles .is-visible to slide it up */
.lp-stickybar.is-visible {
  transform: none;
}
@media (min-width: 980px) {
  .lp-stickybar {
    display: none !important;
  }
}

.lp-stickybar-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}
.lp-stickybar-label {
  font-size: 0.74rem;
  color: var(--color-text-light);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 46vw;
}
.lp-stickybar-price {
  font-size: 0.92rem;
  color: var(--color-text);
}
.lp-stickybar-price strong {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--forest-900);
}
.lp-stickybar-btn {
  min-height: 46px;
  padding: 0 1.2rem;
  flex: none;
}

/* --------------------------------------------------------------------------
   17. MOTION
   -------------------------------------------------------------------------- */

/* Scroll-reveal stagger — the .pp stylesheet drives opacity/translate via
   [data-reveal] → .is-visible. We only add the per-card delay here. */
.lp-step[data-reveal],
.lp-tcard[data-reveal] {
  transition-delay: var(--lp-step-delay, 0s);
}

/* Hero orchestrated entrance — first load only (NOT scroll reveal) */
@keyframes lp-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes lp-rise-scale {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes lp-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes lp-pulse {
  0% {
    box-shadow: 0 0 0 0 var(--lp-accent-glow);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(0, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

.lp-hero-copy > .lp-eyebrow,
.lp-hero-title,
.lp-hero-sub,
.lp-hero-desc,
.lp-hero-checks,
.lp-hero-actions,
.lp-hero-badges {
  animation: lp-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.lp-hero-copy > .lp-eyebrow { animation-delay: 0.05s; }
.lp-hero-title { animation-delay: 0.15s; }
.lp-hero-sub { animation-delay: 0.27s; }
.lp-hero-desc { animation-delay: 0.34s; }
.lp-hero-checks { animation-delay: 0.43s; }
.lp-hero-actions { animation-delay: 0.55s; }
.lp-hero-badges { animation-delay: 0.67s; }

.lp-hero-visual {
  animation: lp-rise-scale 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.2s;
}

/* --------------------------------------------------------------------------
   18. REDUCED MOTION
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .lp-body *,
  .lp-body *::before,
  .lp-body *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .lp-hero-img {
    animation: none !important;
  }
  .lp-header-dot {
    animation: none !important;
  }
  .lp-stickybar {
    transition: none !important;
  }
}

/* --------------------------------------------------------------------------
   12. MOBILE HARDENING (max-width — pravi telefoni 360–560px)
   Agentov layout je mobile-first (min-width); ovdje samo rasterećujemo
   minimalni header na uskim ekranima. Sticky donja traka nosi glavni CTA.
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .lp-header {
    padding: 0.5rem 0 0.45rem;
  }
  .lp-header-inner {
    grid-template-columns: auto auto;
    row-gap: 0;
    column-gap: 0.75rem;
  }
  .lp-logo {
    grid-column: 1;
    grid-row: 1;
  }
  .lp-header-right {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    gap: 0.5rem;
  }
  .lp-header-nav {
    display: none;
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 0.62rem;
    width: 100%;
    padding: 0.55rem 0 0;
    background: transparent;
    border: 0;
    border-top: 1px solid rgba(29, 81, 52, 0.12);
    border-radius: 0;
    box-shadow: none;
  }
  .lp-header.is-menu-open .lp-header-nav {
    display: block;
  }
  .lp-header-nav-track {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 0;
    overflow-x: visible;
    padding-bottom: 0;
    background: rgba(255, 255, 255, 0.56);
    border: 1px solid rgba(29, 81, 52, 0.12);
    border-radius: 14px;
    overflow: hidden;
  }
  .lp-nav-link {
    justify-content: flex-start;
    border-radius: 0;
    color: var(--forest-800);
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(29, 81, 52, 0.1);
    min-height: 44px;
    padding: 0 1rem;
    font-size: 0.92rem;
  }
  .lp-nav-link:last-child {
    border-bottom: 0;
  }
  .lp-header-menu-toggle {
    display: inline-flex;
  }
  .lp-header-phone {
    width: 42px;
    height: 42px;
    justify-content: center;
    border: 1px solid rgba(29, 81, 52, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.52);
  }
  .lp-header-phone span {
    display: none;
  }
  .lp-header-phone svg {
    width: 19px;
    height: 19px;
  }
  .lp-header-cta {
    display: none;
  }
  .lp-nav-link::after {
    display: none;
  }
  .lp-nav-link:hover,
  .lp-nav-link:focus-visible,
  .lp-nav-link.is-active {
    background: var(--forest-800);
    border-color: var(--forest-800);
    color: var(--cream-50);
  }
  .lp-nav-link[href="#pp-order"] {
    display: inline-flex;
    background: var(--lp-accent);
    border-color: transparent;
    color: var(--forest-900);
    justify-content: center;
    margin: 0.5rem;
    min-height: 42px;
    border-radius: 999px;
  }
  .lp--pritisak .lp-nav-link[href="#pp-order"] {
    color: var(--cream-50);
  }
  .lp-nav-link[href="#pp-order"]:hover,
  .lp-nav-link[href="#pp-order"]:focus-visible,
  .lp-nav-link[href="#pp-order"].is-active {
    background: var(--lp-accent-deep);
    border-color: transparent;
    color: var(--cream-50);
  }
}

/* Hero na mobilnom: slika proizvoda PRVA (iznad naslova/teksta).
   Desktop (≥920px) ostaje 2 kolone — tekst lijevo, slika desno. */
@media (max-width: 919px) {
  .lp-hero-visual { order: -1; }
  .lp-hero-frame { max-width: 380px; }
}

@media (max-width: 560px) {
  .lp-body {
    --lp-topbar-height: 32px;
  }
  .lp-topbar {
    gap: 0.35rem;
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    padding-inline: 0.75rem;
  }
  .lp-topbar-ic,
  .lp-topbar-ic svg {
    width: 16px;
    height: 16px;
  }
  /* Na telefonu glavni CTA nosi sticky donja traka — header ostaje logo + telefon. */
  .lp-header-cta { display: none; }
  .lp-header-inner {
    padding-inline: 0.75rem;
  }
  .lp-header-right { gap: 0.5rem; }
  .lp-header-phone { font-size: 0.92rem; }
  .lp-logo img { height: 38px; }
  .lp-header.is-stuck .lp-logo img { height: 34px; }
  .lp-header-nav {
    padding-inline: 0;
  }
  .lp-nav-link {
    min-height: 43px;
    padding: 0 0.95rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 400px) {
  /* Malo smanji hero naslov da diše na najužim ekranima. */
  .lp-hero-title { font-size: clamp(2rem, 8.6vw, 2.45rem); }
  .lp-btn-lg { padding: 0 1.5rem; }
}

/* --------------------------------------------------------------------------
   13. STUDIJA SLUČAJA / SIMPOZIJUM (.lp-study)
   -------------------------------------------------------------------------- */
.lp-study { background: var(--cream-50); }
.lp-study-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3.2rem);
  align-items: center;
}
@media (min-width: 880px) {
  .lp-study-inner { grid-template-columns: 1.05fr 0.95fr; }
}
.lp-study-team {
  list-style: none;
  margin: 1.8rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}
.lp-study-team li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.7rem 0.9rem;
  background: var(--cream-100);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}
.lp-study-team li.has-photo {
  flex-direction: column;
  justify-content: center;
  gap: 0.65rem;
  padding: 1rem 0.9rem;
  text-align: center;
}
.lp-study-team-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--lp-accent-soft);
  color: var(--lp-accent-deep);
  flex: none;
}
.lp-study-team-ic svg { width: 19px; height: 19px; }
.lp-study-team-photo {
  display: block;
}
.lp-study-team-photo-img {
  display: block;
  width: 78px;
  height: 78px;
  border: 2px solid rgba(201, 164, 94, 0.65);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 24px rgba(18, 49, 41, 0.14);
}
.lp-study-team-meta { display: flex; flex-direction: column; line-height: 1.25; }
.lp-study-team li.has-photo .lp-study-team-meta { align-items: center; }
.lp-study-team-meta strong { font-family: var(--font-heading); color: var(--forest-900); font-size: 1.02rem; }
.lp-study-team-meta span { font-size: 0.86rem; color: var(--color-text-light); }

.lp-study-figs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.8rem, 2vw, 1.1rem);
}
.lp-study-figs .lp-study-fig:first-child { grid-column: 1 / -1; }
.lp-study-fig { margin: 0; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.lp-study-fig img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 16 / 10; }

/* --------------------------------------------------------------------------
   14. KAKO SE KORISTE KAPSULE (.lp-usage)
   -------------------------------------------------------------------------- */
.lp-usage { background: var(--cream-100); }
.lp-usage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3.5vw, 2.4rem);
  align-items: start;
}
@media (min-width: 900px) {
  .lp-usage-grid { grid-template-columns: 0.82fr 1.18fr; }
  .lp-dosage-card { position: sticky; top: 92px; }
}

/* Dosage card — forest plate */
.lp-dosage-card {
  background: linear-gradient(165deg, var(--forest-800), var(--forest-900));
  color: var(--cream-100);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow-lg);
}
.lp-dosage-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.85rem 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(245, 239, 225, 0.1);
  color: var(--ochre-300);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.lp-dosage-pill svg { width: 15px; height: 15px; }
.lp-dosage-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.9rem; }
.lp-dosage-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 1.02rem;
  line-height: 1.45;
  color: var(--cream-100);
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(245, 239, 225, 0.12);
}
.lp-dosage-card li:last-child { border-bottom: none; padding-bottom: 0; }
.lp-dosage-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--ochre-400);
  color: var(--forest-900);
  flex: none;
  margin-top: 1px;
}
.lp-dosage-ic svg { width: 14px; height: 14px; }

/* Timeline — 3 months with progress */
.lp-usage-timeline { list-style: none; margin: 0; padding: 0; display: grid; gap: clamp(1rem, 2.5vw, 1.4rem); }
.lp-usage-step {
  position: relative;
  display: flex;
  gap: clamp(1rem, 2.5vw, 1.4rem);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.2rem, 2.8vw, 1.6rem);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.lp-usage-step:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.lp-usage-step-n {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cream-50);
  background: radial-gradient(circle at 30% 25%, var(--forest-600), var(--forest-800));
  box-shadow: 0 4px 12px -4px rgba(15, 54, 34, 0.5);
}
.lp-usage-step-body { flex: 1; min-width: 0; }
.lp-usage-step-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp-accent-ink);
  margin-bottom: 0.35rem;
}
.lp-usage-step-body p { margin: 0 0 0.9rem; color: var(--color-text); line-height: 1.5; }
.lp-usage-bar {
  height: 9px;
  border-radius: 999px;
  background: var(--cream-200);
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.lp-usage-bar-fill {
  display: block;
  height: 100%;
  width: var(--lp-bar, 0%);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--lp-accent), var(--lp-accent-deep));
  transform-origin: left;
  animation: lp-bar-grow 1.1s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
@keyframes lp-bar-grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.lp-usage-metric {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--forest-900);
}
@media (prefers-reduced-motion: reduce) {
  .lp-usage-bar-fill { animation: none; }
}

/* Savjeti accordion — sitno odvajanje od FAQ-a */
.lp-advice { background: var(--cream-50); }

/* --------------------------------------------------------------------------
   15. PROMJENE KOJE ĆETE OSJETITI (.lp-results) — sve u jednom redu, bez ✓
   -------------------------------------------------------------------------- */
.lp-results { background: var(--cream-50); }
.lp-results-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: clamp(0.75rem, 1.6vw, 1.15rem);
  align-items: stretch;
}
.lp-outcome {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: clamp(1.3rem, 2.4vw, 1.7rem) clamp(1.1rem, 2vw, 1.4rem) clamp(1.4rem, 2.4vw, 1.7rem);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
/* tanka akcentna traka na vrhu */
.lp-outcome::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--lp-accent), var(--lp-accent-deep));
}
.lp-outcome:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--lp-accent);
}
.lp-outcome:hover .lp-outcome-ic {
  background: var(--lp-accent);
  color: var(--cream-50);
}
.lp-outcome-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--lp-accent-soft);
  color: var(--lp-accent-deep);
  transition: background-color 0.22s ease, color 0.22s ease;
}
.lp-outcome-ic svg { width: 26px; height: 26px; }
.lp-outcome-rule {
  width: 30px;
  height: 2px;
  border-radius: 2px;
  background: var(--lp-accent);
  opacity: 0.55;
}
.lp-outcome-text {
  margin: 0;
  font-size: clamp(0.95rem, 1.2vw, 1.02rem);
  line-height: 1.42;
  font-weight: 500;
  color: var(--forest-900);
}

/* stagger ulazak kartica kad red postane vidljiv */
.lp-results-row .lp-outcome {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.22s ease, border-color 0.22s ease;
  transition-delay: var(--lp-step-delay, 0s);
}
.lp-results-row.is-visible .lp-outcome { opacity: 1; transform: translateY(0); }

.lp-results-note {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  max-width: 860px;
  margin: clamp(1.5rem, 3vw, 2.2rem) auto 0;
  padding: clamp(1rem, 2vw, 1.25rem) clamp(1.1rem, 2.5vw, 1.5rem);
  background: var(--forest-100);
  border: 1px solid rgba(29, 81, 52, 0.18);
  border-radius: var(--radius-md);
  color: var(--forest-900);
}
.lp-results-note-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex: none;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--forest-700);
  box-shadow: var(--shadow-sm);
}
.lp-results-note-ic svg { width: 19px; height: 19px; }
.lp-results-note strong {
  display: block;
  margin-bottom: 0.25rem;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  color: var(--forest-900);
}
.lp-results-note p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--color-text);
}

/* Mobilno: ostaje JEDAN red, horizontalni snap-scroll */
@media (max-width: 760px) {
  .lp-results-row {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.6rem;
    scrollbar-width: thin;
  }
  .lp-outcome {
    flex: 0 0 72%;
    scroll-snap-align: start;
  }
}
@media (prefers-reduced-motion: reduce) {
  .lp-results-row .lp-outcome { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   16. LANDING-SCOPED pp-* OVERRIDES (ne diraju prave product strane)
   -------------------------------------------------------------------------- */
/* Landing koristi isti origin layout kao produkt stranice; ovde ostaje samo tipografija fact teksta. */
.lp .pp-origin-fact small {
  font-family: var(--font-body);
  font-size: 0.84rem;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255, 255, 255, 0.72);
}

/* Sticky CTA — auto width (centrirani plutajući pill umjesto full-width trake).
   Scoped na .lp-body jer .pp-sticky-cta stoji izvan .lp wrappera. */
.lp-body .pp-sticky-cta {
  left: 50%;
  right: auto;
  width: auto;
  max-width: calc(100% - 1.5rem);
  bottom: clamp(0.75rem, 2vw, 1.25rem);
  transform: translateX(-50%);
  border: 1px solid var(--cream-200);
  border-radius: 999px;
  padding: 0.55rem 0.7rem 0.55rem 0.7rem;
  box-shadow: 0 14px 34px -12px rgba(15, 54, 34, 0.4);
}
.lp-body .pp-sticky-cta.is-hidden { transform: translateX(-50%) translateY(180%); }
.lp-body .pp-sticky-cta-info { flex: 0 1 auto; }
.lp-body .pp-sticky-cta-btn { border-radius: 999px; }

/* --------------------------------------------------------------------------
   16. PROBLEM FOOTNOTE — zaključna poruka ispod "Kada sremuš najviše pomaže"
   -------------------------------------------------------------------------- */
.pp-problem-footnote {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  max-width: 820px;
  margin: clamp(1.6rem, 4vw, 2.4rem) auto 0;
  padding: clamp(1rem, 2.5vw, 1.4rem) clamp(1.2rem, 3vw, 1.7rem);
  background: var(--lp-accent-soft);
  border-left: 4px solid var(--lp-accent);
  border-radius: var(--radius-md, 12px);
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  line-height: 1.6;
  font-weight: 500;
  color: var(--forest-900, #14361f);
  text-align: left;
}
.pp-problem-footnote-ic {
  flex: 0 0 auto;
  display: inline-flex;
  color: var(--lp-accent-deep);
  margin-top: 2px;
}
.pp-problem-footnote-ic svg { width: 22px; height: 22px; }
