/* Letnja biznis transformacija — Solvion home-v3 tokens */
:root {
  --ink: #0f1210;
  --navy-900: #0f1210;
  --navy-800: #1e3a2b;
  --paper: #f4f1ea;
  --paper-2: #efe9dc;
  --paper-3: #c4bba8;
  --paper-cream: #e8e0cd;
  --clay: #a8432e;
  --clay-2: #b8893e;
  --muted-dark: #6b6458;
  --muted-light: #a8a195;
  --f-display: "Fraunces", Georgia, serif;
  --f-body: "Inter Tight", system-ui, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, monospace;
  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 64px);
  --r: 0;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body.letnja-landing {
  margin: 0;
  padding: 0 !important;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

body.letnja-landing img { max-width: 100%; display: block; }
body.letnja-landing a { color: inherit; }

.lbt .wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.lbt .block { padding: clamp(64px, 9vw, 120px) 0; }
.lbt .block--dark { background: var(--navy-900); color: var(--paper); }
.lbt .block--tint { background: var(--paper-2); }

.lbt .skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--clay); color: #fff; padding: 10px 16px; z-index: 99;
}
.lbt .skip:focus { left: 8px; top: 8px; }
.lbt :focus-visible { outline: 2px solid var(--clay-2); outline-offset: 3px; }

.lbt .eyebrow {
  font-family: var(--f-mono); font-size: 12px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--clay); margin: 0 0 18px;
}
.lbt .block--dark .eyebrow { color: var(--clay-2); }

.lbt h1, .lbt h2, .lbt h3, .lbt h4 {
  font-family: var(--f-display); font-weight: 400;
  letter-spacing: -.022em; line-height: 1.08; margin: 0;
}
.lbt h1 { font-size: clamp(38px, 6.2vw, 68px); }
.lbt h2 { font-size: clamp(29px, 4.1vw, 46px); line-height: 1.12; }
.lbt h3 { font-size: clamp(19px, 2vw, 23px); font-weight: 500; letter-spacing: -.012em; line-height: 1.3; }
.lbt h4 { font-size: 16px; font-weight: 500; letter-spacing: -.005em; }

.lbt .lead {
  font-size: clamp(18px, 1.9vw, 21px); line-height: 1.55;
  color: var(--muted-dark); max-width: 62ch;
}
.lbt .block--dark .lead { color: var(--muted-light); }
.lbt .narrow { max-width: 70ch; }
.lbt p { margin: 0 0 18px; }
.lbt strong { font-weight: 600; }

.lbt .btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-body); font-weight: 500; font-size: 16px;
  padding: 16px 28px; border-radius: var(--r); border: 1.5px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.lbt .btn:hover { transform: translateY(-2px); }
.lbt .btn--primary { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.lbt .btn--primary:hover { background: var(--clay); border-color: var(--clay); color: var(--paper); }
.lbt .hdr .btn--primary,
.lbt .hero .btn--primary,
.lbt .block--dark .btn--primary,
.lbt .sticky .btn--primary {
  background: var(--clay-2); color: var(--ink); border-color: var(--clay-2);
}
.lbt .hdr .btn--primary:hover,
.lbt .hero .btn--primary:hover,
.lbt .block--dark .btn--primary:hover,
.lbt .sticky .btn--primary:hover {
  background: var(--clay); border-color: var(--clay); color: var(--paper);
}
.lbt .btn--ghost { border-color: currentColor; background: transparent; }
.lbt .btn--ghost:hover { background: rgba(244, 241, 234, .08); }
.lbt .block--tint .btn--ghost:hover,
.lbt .block:not(.block--dark) .btn--ghost:hover { background: rgba(15, 18, 16, .06); }
.lbt .btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.lbt .fill {
  position: relative; display: block;
  border: 1.5px dashed var(--clay); border-radius: var(--r);
  background: rgba(168, 67, 46, .06);
  padding: 26px 20px 18px; margin: 16px 0;
  font-family: var(--f-mono); font-size: 14px; line-height: 1.55; color: var(--clay);
}
.lbt .fill::before {
  content: "DOPUNITI"; position: absolute; top: -9px; left: 14px;
  background: var(--clay); color: #fff; font-family: var(--f-mono);
  font-size: 10px; letter-spacing: .14em; padding: 2px 8px; border-radius: 2px;
}
.lbt .block--dark .fill,
.lbt .pcard .fill {
  border-color: var(--clay-2); color: var(--clay-2); background: rgba(184, 137, 62, .08);
}
.lbt .block--dark .fill::before,
.lbt .pcard .fill::before { background: var(--clay-2); color: var(--ink); }

/* Header */
.lbt .hdr {
  position: sticky; top: 0; z-index: 40;
  background: rgba(15, 18, 16, .94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(244, 241, 234, .09);
}
.lbt .hdr__in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; height: 66px;
}
.lbt .hdr__logo {
  text-decoration: none; display: flex; align-items: center; gap: 10px;
}
.lbt .hdr__logo-img { display: flex; align-items: center; line-height: 0; }
.lbt .hdr__logo-img img { max-height: 34px; width: auto; display: block; }
.lbt .hdr__logo-name {
  font-family: var(--f-display); font-size: 1.25rem; font-weight: 600;
  color: var(--paper); letter-spacing: 3px; line-height: 1;
}
.lbt .hdr__nav { display: flex; gap: 26px; align-items: center; }
.lbt .hdr__nav a {
  font-family: var(--f-mono); font-size: 12.5px; letter-spacing: .06em;
  text-transform: uppercase; color: var(--muted-light); text-decoration: none;
}
.lbt .hdr__nav a:hover { color: var(--paper); }
.lbt .hdr .btn { padding: 11px 20px; font-size: 14px; }
@media (max-width: 900px) { .lbt .hdr__nav { display: none; } }

/* Hero */
.lbt .hero {
  background: var(--navy-900); color: var(--paper);
  padding: clamp(56px, 8vw, 96px) 0 0; overflow: hidden;
}
.lbt .hero__grid {
  display: grid; grid-template-columns: 1.08fr .92fr;
  gap: clamp(36px, 5vw, 72px); align-items: start;
}
@media (max-width: 980px) { .lbt .hero__grid { grid-template-columns: 1fr; } }

.lbt .hero h1 { margin-bottom: 22px; }
.lbt .hero h1 em { font-style: italic; color: var(--clay); font-weight: 300; }
.lbt .hero__sub {
  font-size: clamp(17px, 1.9vw, 20px); line-height: 1.55;
  color: var(--muted-light); max-width: 52ch; margin-bottom: 32px;
}
.lbt .hero__note {
  font-family: var(--f-mono); font-size: 13px; color: var(--muted-light); margin-top: 16px;
}

.lbt .doc {
  background: var(--paper-cream); color: var(--ink); border-radius: var(--r);
  border: 1px solid var(--paper-3);
  box-shadow: 20px 20px 0 -1px var(--paper-3);
  padding: 26px 26px 20px; position: relative;
}
.lbt .doc__top {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted-dark); border-bottom: 2px solid var(--ink);
  padding-bottom: 10px; margin-bottom: 4px;
}
.lbt .doc__ttl {
  font-family: var(--f-display); font-weight: 400; font-size: 20px;
  letter-spacing: -.02em; margin: 14px 0; color: var(--ink);
}
.lbt .doc__list { list-style: none; margin: 0; padding: 0; counter-reset: d; }
.lbt .doc__list li {
  counter-increment: d; display: flex; gap: 14px; align-items: baseline;
  padding: 9px 0; border-bottom: 1px solid var(--paper-3);
  font-size: 14.5px; line-height: 1.4;
  opacity: 0; transform: translateY(6px); animation: lbtDocIn .5s ease forwards;
}
.lbt .doc__list li::before {
  content: counter(d, decimal-leading-zero); font-family: var(--f-mono); font-size: 11px;
  color: var(--clay); flex: 0 0 auto; letter-spacing: .04em;
}
.lbt .doc__list li:nth-child(1) { animation-delay: .15s; }
.lbt .doc__list li:nth-child(2) { animation-delay: .23s; }
.lbt .doc__list li:nth-child(3) { animation-delay: .31s; }
.lbt .doc__list li:nth-child(4) { animation-delay: .39s; }
.lbt .doc__list li:nth-child(5) { animation-delay: .47s; }
.lbt .doc__list li:nth-child(6) { animation-delay: .55s; }
.lbt .doc__list li:nth-child(7) { animation-delay: .63s; }
.lbt .doc__list li:nth-child(8) { animation-delay: .71s; border-bottom: none; }
@keyframes lbtDocIn { to { opacity: 1; transform: none; } }
.lbt .doc__foot {
  margin-top: 14px; padding-top: 12px; border-top: 2px solid var(--ink);
  font-family: var(--f-mono); font-size: 11.5px; letter-spacing: .06em;
  color: var(--muted-dark); display: flex; justify-content: space-between;
}

.lbt .facts {
  border-top: 1px solid rgba(244, 241, 234, .12);
  margin-top: clamp(48px, 6vw, 80px);
}
.lbt .facts__in { display: grid; grid-template-columns: repeat(5, 1fr); }
@media (max-width: 860px) { .lbt .facts__in { grid-template-columns: repeat(2, 1fr); } }
.lbt .fact { padding: 24px 22px 26px; border-right: 1px solid rgba(244, 241, 234, .12); }
.lbt .fact:last-child { border-right: none; }
@media (max-width: 860px) {
  .lbt .fact {
    border-right: 1px solid rgba(244, 241, 234, .12);
    border-bottom: 1px solid rgba(244, 241, 234, .12);
  }
}
.lbt .fact__k {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted-light); margin-bottom: 8px;
}
.lbt .fact__v {
  font-family: var(--f-display); font-weight: 400; font-size: 19px;
  letter-spacing: -.015em; color: var(--paper);
}
.lbt .fact__v small {
  display: block; font-family: var(--f-body); font-weight: 400;
  font-size: 13px; color: var(--muted-light); letter-spacing: 0; margin-top: 3px;
}

/* Situacija */
.lbt .sit__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 4vw, 64px); margin-top: 44px;
}
@media (max-width: 860px) { .lbt .sit__grid { grid-template-columns: 1fr; } }
.lbt .quote {
  border-left: 3px solid var(--clay); padding: 4px 0 4px 22px;
  font-family: var(--f-display); font-weight: 400; font-style: italic;
  font-size: clamp(19px, 2.3vw, 25px); line-height: 1.35; letter-spacing: -.015em;
}
.lbt .sym { list-style: none; margin: 0; padding: 0; }
.lbt .sym li {
  display: flex; gap: 14px; padding: 14px 0;
  border-bottom: 1px solid var(--paper-3); font-size: 16px; line-height: 1.5;
}
.lbt .sym li:last-child { border-bottom: none; }
.lbt .sym li::before { content: "↓"; font-family: var(--f-mono); color: var(--clay); flex: 0 0 auto; }

/* Fit */
.lbt .fit {
  display: grid; grid-template-columns: 1.25fr .75fr;
  gap: clamp(24px, 3vw, 44px); margin-top: 44px;
}
@media (max-width: 860px) { .lbt .fit { grid-template-columns: 1fr; } }
.lbt .card {
  background: var(--paper); border: 1px solid var(--paper-3);
  border-radius: var(--r); padding: clamp(24px, 3vw, 36px);
}
.lbt .card--no { background: transparent; border-style: dashed; }
.lbt .card h3 { margin-bottom: 8px; }
.lbt .card__tag {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; margin-bottom: 14px; color: var(--clay);
}
.lbt .card--no .card__tag { color: var(--muted-dark); }
.lbt .ticks { list-style: none; margin: 14px 0 0; padding: 0; }
.lbt .ticks li { position: relative; padding: 8px 0 8px 26px; font-size: 16px; line-height: 1.5; }
.lbt .ticks li::before {
  content: "→"; position: absolute; left: 0; top: 8px;
  font-family: var(--f-mono); color: var(--clay);
}
.lbt .card--no .ticks li::before { content: "×"; color: var(--muted-dark); }

/* Sesije */
.lbt .ses { margin-top: 52px; border-top: 1px solid rgba(244, 241, 234, .14); }
.lbt .ses__row {
  display: grid; grid-template-columns: 78px 1fr 1fr;
  gap: clamp(16px, 2.4vw, 36px); padding: 26px 0;
  border-bottom: 1px solid rgba(244, 241, 234, .14); align-items: start;
}
@media (max-width: 860px) { .lbt .ses__row { grid-template-columns: 56px 1fr; gap: 16px; } }
.lbt .ses__n {
  font-family: var(--f-mono); font-size: 12px; letter-spacing: .1em;
  color: var(--clay-2); padding-top: 5px;
}
.lbt .ses__main h3 { margin-bottom: 8px; }
.lbt .ses__main p { color: var(--muted-light); font-size: 15.5px; margin: 0; }
.lbt .ses__out {
  border-left: 2px solid var(--clay); padding-left: 16px;
  font-size: 14.5px; color: var(--paper);
}
@media (max-width: 860px) { .lbt .ses__out { grid-column: 2; margin-top: 12px; } }
.lbt .ses__out span {
  display: block; font-family: var(--f-mono); font-size: 10.5px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--muted-light); margin-bottom: 6px;
}
.lbt .phase {
  display: inline-block; font-family: var(--f-mono); font-size: 10px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted-light);
  border: 1px solid rgba(244, 241, 234, .22); padding: 2px 8px; border-radius: 2px; margin-bottom: 10px;
}

/* Rezultat */
.lbt .gap-demo { display: flex; flex-direction: column; gap: 7px; margin: 22px 0 8px; max-width: 320px; }
.lbt .gap-demo i { height: 13px; background: var(--navy-800); border-radius: 2px; display: block; }
.lbt .gap-demo i.g { background: transparent; border: 1.5px dashed var(--clay); }
.lbt .gap-cap { font-family: var(--f-mono); font-size: 12.5px; color: var(--clay); letter-spacing: .03em; }

.lbt .gets {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 40px); margin-top: 44px;
}
@media (max-width: 760px) { .lbt .gets { grid-template-columns: 1fr; } }
.lbt .get { border-top: 2px solid var(--ink); padding-top: 16px; }
.lbt .get h4 { margin-bottom: 6px; }
.lbt .get p { font-size: 15.5px; color: var(--muted-dark); margin: 0; }
.lbt .get--bonus { border-top-color: var(--clay); }
.lbt .get--bonus h4::after {
  content: "UKLJUČENO"; font-family: var(--f-mono); font-size: 9.5px; letter-spacing: .12em;
  background: var(--clay); color: #fff; padding: 2px 7px; border-radius: 2px;
  margin-left: 10px; vertical-align: 2px;
}

/* Predavač */
.lbt .bio {
  display: grid; grid-template-columns: 340px 1fr;
  gap: clamp(28px, 4vw, 60px); align-items: start; margin-top: 40px;
}
@media (max-width: 860px) { .lbt .bio { grid-template-columns: 1fr; } }
.lbt .bio__photo {
  aspect-ratio: 4 / 5; border-radius: var(--r); overflow: hidden;
  background: var(--navy-800); border: 1px solid rgba(244, 241, 234, .15);
}
.lbt .bio__photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.lbt .creds { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 10px; }
.lbt .creds li {
  display: flex; gap: 12px; font-size: 15.5px; line-height: 1.5; color: var(--muted-light);
}
.lbt .creds li::before { content: "—"; color: var(--clay-2); flex: 0 0 auto; }

/* Cena + forma */
.lbt .price {
  display: grid; grid-template-columns: .85fr 1.15fr;
  gap: clamp(28px, 4vw, 56px); margin-top: 44px; align-items: start;
}
@media (max-width: 900px) { .lbt .price { grid-template-columns: 1fr; } }
.lbt .pcard {
  background: var(--navy-900); color: var(--paper); border-radius: var(--r);
  padding: clamp(26px, 3vw, 38px); position: sticky; top: 86px;
}
@media (max-width: 900px) { .lbt .pcard { position: static; } }
.lbt .pcard__amt {
  font-family: var(--f-display); font-weight: 400; font-size: 52px;
  letter-spacing: -.03em; line-height: 1; margin: 6px 0 4px;
}
.lbt .pcard__note {
  font-family: var(--f-mono); font-size: 12.5px; color: var(--muted-light); letter-spacing: .03em;
}
.lbt .pcard hr { border: none; border-top: 1px solid rgba(244, 241, 234, .16); margin: 22px 0; }
.lbt .pcard ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.lbt .pcard li { font-size: 15px; color: var(--muted-light); display: flex; gap: 11px; }
.lbt .pcard li::before { content: "✓"; color: var(--clay-2); flex: 0 0 auto; }

.lbt .form {
  background: var(--paper); border: 1px solid var(--paper-3);
  border-radius: var(--r); padding: clamp(24px, 3vw, 38px);
}
.lbt .fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 620px) { .lbt .fgrid { grid-template-columns: 1fr; } }
.lbt .f { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.lbt .f--full { grid-column: 1 / -1; }
.lbt .f label {
  font-family: var(--f-mono); font-size: 11.5px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted-dark);
}
.lbt .f input,
.lbt .f select,
.lbt .f textarea {
  font-family: var(--f-body); font-size: 16px; padding: 12px 14px;
  border: 1px solid var(--paper-3); border-radius: var(--r);
  background: var(--paper-2); color: var(--ink); width: 100%;
}
.lbt .f textarea { min-height: 110px; resize: vertical; }
.lbt .f input:focus,
.lbt .f select:focus,
.lbt .f textarea:focus { border-color: var(--clay); background: var(--paper); outline: none; }
.lbt .consent {
  display: flex; gap: 11px; align-items: flex-start;
  font-size: 13.5px; color: var(--muted-dark); line-height: 1.5; margin: 6px 0 20px;
}
.lbt .consent input {
  margin-top: 4px; flex: 0 0 auto; width: 16px; height: 16px; accent-color: var(--clay);
}
.lbt .form__after {
  font-family: var(--f-mono); font-size: 12.5px; color: var(--muted-dark); margin-top: 14px;
}

/* FAQ */
.lbt .faq { margin-top: 40px; border-top: 1px solid var(--paper-3); }
.lbt .faq details { border-bottom: 1px solid var(--paper-3); }
.lbt .faq summary {
  cursor: pointer; list-style: none; padding: 20px 40px 20px 0; position: relative;
  font-family: var(--f-display); font-weight: 500; font-size: 17.5px; letter-spacing: -.01em;
}
.lbt .faq summary::-webkit-details-marker { display: none; }
.lbt .faq summary::after {
  content: "+"; position: absolute; right: 6px; top: 18px;
  font-family: var(--f-mono); font-size: 22px; color: var(--clay);
}
.lbt .faq details[open] summary::after { content: "–"; }
.lbt .faq__a { padding: 0 40px 22px 0; color: var(--muted-dark); font-size: 16px; max-width: 78ch; }
.lbt .faq__a p:last-child { margin-bottom: 0; }

/* Final + footer */
.lbt .final { text-align: center; }
.lbt .final h2 { max-width: 20ch; margin: 0 auto 20px; }
.lbt .final .lead { margin: 0 auto 32px; }
.lbt .final .btn-row { justify-content: center; }

.lbt .ftr {
  background: var(--navy-900); color: var(--muted-light); padding: 52px 0 40px; font-size: 14px;
}
.lbt .ftr__in {
  display: flex; flex-wrap: wrap; gap: 26px;
  justify-content: space-between; align-items: flex-start;
}
.lbt .ftr a { color: var(--muted-light); text-decoration: none; margin-right: 20px; }
.lbt .ftr a:hover { color: var(--paper); }
.lbt .ftr__brand {
  font-family: var(--f-display); font-weight: 500; font-size: 19px;
  color: var(--paper); letter-spacing: -.02em;
}

.lbt .sticky {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; display: none;
  background: var(--navy-900); border-top: 1px solid rgba(244, 241, 234, .14);
  padding: 11px 16px; align-items: center; justify-content: space-between; gap: 12px;
}
.lbt .sticky span {
  font-family: var(--f-mono); font-size: 12px; color: var(--muted-light); line-height: 1.35;
}
.lbt .sticky .btn { padding: 12px 18px; font-size: 14px; }
@media (max-width: 760px) {
  .lbt .sticky { display: flex; }
  body.letnja-landing { padding-bottom: 72px !important; }
}

@media (prefers-reduced-motion: reduce) {
  .lbt *, .lbt *::before, .lbt *::after {
    animation: none !important; transition: none !important; scroll-behavior: auto !important;
  }
  .lbt .doc__list li { opacity: 1; transform: none; }
}
