:root {
  --ink: #17202a;
  --navy: #071120;
  --navy-soft: #0f2037;
  --gold: #d8b43f;
  --gold-soft: #f0d782;
  --paper: #fff8ec;
  --cream: #f4eadb;
  --white: #ffffff;
  --muted: #637084;
  --teal: #42b8ad;
  --green: #2f7653;
  --rose: #a56772;
  --blue: #4f86dc;
  --sand: #b88846;
  --earth: #7f7444;
  --moss: #496b47;
  --clay: #b8704d;
  --line: #e6d5ae;
  --shadow: 0 22px 55px rgba(12, 22, 34, 0.14);
  --ease-premium: cubic-bezier(0.19, 1, 0.22, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Book Antiqua", Palatino, "Palatino Linotype", Georgia, serif;
  line-height: 1.52;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 58px);
  color: var(--white);
  background: rgba(7, 17, 32, 0.7);
  border-bottom: 1px solid rgba(216, 180, 63, 0.26);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, box-shadow 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 17, 32, 0.96);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.25);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  transition: transform 220ms var(--ease-premium);
}

.brand:hover {
  transform: translateY(-1px);
}

.brand-mark {
  position: relative;
  display: block;
  width: 52px;
  height: 52px;
  overflow: hidden;
  flex: 0 0 auto;
  background: #071120;
  border: 1px solid rgba(216, 180, 63, 0.46);
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(216, 180, 63, 0.18);
}

.brand-mark img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.55);
  transform-origin: 50% 46%;
}

.brand-mark::before {
  content: "AV";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-weight: 700;
}

.brand-mark::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: -45% auto -45% -80%;
  width: 45%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.48), transparent);
  transform: skewX(-18deg);
}

.brand:hover .brand-mark::after {
  animation: markGlint 900ms var(--ease-premium);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.18rem;
  line-height: 1.1;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.84);
}

.nav a {
  position: relative;
  padding: 8px 0;
  font-size: 0.98rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease-premium);
}

.nav a:hover {
  color: var(--white);
}

.nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 9px 16px !important;
  color: var(--navy) !important;
  background: var(--gold);
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(216, 180, 63, 0.16);
  transition: transform 180ms var(--ease-premium), box-shadow 180ms ease, background 180ms ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(216, 180, 63, 0.24);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switch {
  display: inline-flex;
  padding: 3px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(216, 180, 63, 0.28);
  border-radius: 6px;
}

.language-switch button {
  min-width: 36px;
  min-height: 32px;
  color: rgba(255, 255, 255, 0.8);
  background: transparent;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.language-switch button:hover {
  transform: translateY(-1px);
}

.language-switch button.active {
  color: var(--navy);
  background: var(--gold);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 86vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 17, 32, 0.97) 0%, rgba(7, 17, 32, 0.9) 42%, rgba(7, 17, 32, 0.5) 100%),
    url("datoteke/slike/ozadje-glavne-strani.jpg") center / cover no-repeat;
  border-bottom: 6px solid var(--gold);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0%, rgba(216, 180, 63, 0.1) 48%, transparent 72%);
  mix-blend-mode: screen;
  opacity: 0.72;
  transform: translateX(-8%);
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 122px 0 78px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.service-panel h3,
.investment-card h3,
.flow-grid h3 {
  margin: 0;
  line-height: 1.03;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(4rem, 12vw, 8.4rem);
}

.hero-subtitle {
  max-width: 820px;
  margin: 12px 0 0;
  color: var(--gold-soft);
  font-size: clamp(1.36rem, 3.2vw, 2.35rem);
  font-style: italic;
  font-weight: 700;
}

.hero-copy {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 28px;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 46px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: var(--white);
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
  box-shadow: 0 0 0 rgba(12, 22, 34, 0);
  transition:
    transform 220ms var(--ease-premium),
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 220ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -72%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: skewX(-18deg);
  transition: transform 520ms var(--ease-premium);
}

.button > *,
.button {
  isolation: isolate;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(12, 22, 34, 0.18);
}

.button:hover::before {
  transform: translateX(360%) skewX(-18deg);
}

.button.primary {
  color: var(--navy);
  background: var(--gold);
}

.button.primary:hover {
  background: var(--gold-soft);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(216, 180, 63, 0.7);
  background: rgba(10, 26, 48, 0.42);
}

.button.secondary.light {
  color: var(--navy);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.88);
}

.button.full {
  width: 100%;
}

.service-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 840px;
}

.service-strip a {
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(216, 180, 63, 0.28);
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 220ms var(--ease-premium), border-color 180ms ease, background 180ms ease;
}

.service-strip a:hover,
.service-strip a:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(216, 180, 63, 0.5);
}

.section {
  padding: clamp(64px, 8vw, 104px) 0;
}

.section-inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.section h2 {
  font-size: clamp(2.15rem, 5vw, 4.3rem);
}

.section p {
  color: #536174;
  font-size: 1.04rem;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 32px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.intro {
  background: var(--cream);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.intro-copy {
  padding: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.intro-copy p {
  margin: 0;
}

.intro-copy p + p {
  margin-top: 14px;
}

.services {
  background: var(--paper);
}

.service-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 14px;
}

.service-tabs button {
  position: relative;
  display: grid;
  min-height: 58px;
  overflow: hidden;
  padding: 8px 10px;
  place-items: center;
  color: #3e4b5b;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  font-family: inherit;
  transition:
    transform 180ms var(--ease-premium),
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.service-tabs button::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 7px;
  left: 12px;
  height: 2px;
  background: rgba(7, 17, 32, 0.3);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms var(--ease-premium);
}

.service-tabs button:hover,
.service-tabs button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(216, 180, 63, 0.72);
  box-shadow: 0 10px 24px rgba(12, 22, 34, 0.08);
}

.service-tabs button.active {
  color: var(--navy);
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 12px 28px rgba(216, 180, 63, 0.18);
}

.service-tabs button.active::after {
  transform: scaleX(1);
}

.service-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1fr);
  gap: clamp(24px, 4vw, 52px);
  min-height: 318px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 6px solid var(--gold);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 240ms var(--ease-premium), box-shadow 240ms ease, border-color 200ms ease;
}

.service-panel.has-promo {
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.92fr) minmax(210px, 0.5fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: center;
}

/* Izrecna postavitev, da promocijski list ostane v svojem stolpcu tudi takrat,
   ko je v panelu dodana poudarjena kartica cez celotno sirino. */
.service-panel.has-promo > .service-panel-copy {
  grid-column: 1;
  grid-row: 1;
}

.service-panel.has-promo > ul {
  grid-column: 2;
  grid-row: 1;
}

.service-panel.has-promo > .service-promo-preview {
  grid-column: 3;
  grid-row: 1;
}

.service-panel.has-promo > .service-spotlight,
.service-panel.has-promo > .service-metrics {
  grid-column: 1 / -1;
}

.service-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.service-panel.is-fresh {
  animation: panelReveal 520ms var(--ease-premium) both;
}

.service-panel:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 70px rgba(12, 22, 34, 0.17);
}

.service-panel.accent-teal {
  border-top-color: var(--teal);
}

.service-panel.accent-blue {
  border-top-color: var(--blue);
}

.service-panel.accent-green {
  border-top-color: var(--green);
}

.service-panel.accent-sand {
  border-top-color: var(--sand);
}

.service-panel.accent-rose {
  border-top-color: var(--rose);
}

.service-panel.accent-earth {
  border-top-color: var(--earth);
}

.service-panel.accent-property {
  border-top-color: #2f9b96;
}

.small-label {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.service-panel h3 {
  max-width: 560px;
  font-size: clamp(1.9rem, 4vw, 3.3rem);
}

.service-panel p {
  max-width: 580px;
}

.service-detail-link {
  margin-top: 10px;
}

.service-panel ul {
  display: grid;
  gap: 12px;
  align-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-panel li {
  position: relative;
  padding: 14px 16px 14px 42px;
  color: #3e4b5b;
  background: #fbf5e9;
  border: 1px solid #ead9b5;
  border-radius: 8px;
  font-weight: 700;
  transition: transform 180ms var(--ease-premium), border-color 180ms ease, background 180ms ease;
}

.service-panel li:hover {
  transform: translateX(3px);
  background: #fff9ef;
  border-color: #dec68e;
}

.service-panel li::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 18px;
  width: 9px;
  height: 9px;
  background: var(--gold);
  border-radius: 50%;
}

.service-promo-preview {
  display: grid;
  width: 100%;
  max-width: 258px;
  padding: 0;
  justify-self: center;
  align-self: center;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: center;
}

.service-promo-frame {
  display: block;
  overflow: hidden;
  aspect-ratio: 1055 / 1491;
  background: var(--cream);
  border: 1px solid rgba(216, 180, 63, 0.56);
  border-radius: 6px;
  box-shadow: 0 18px 38px rgba(12, 22, 34, 0.18);
  transition: transform 260ms var(--ease-premium), box-shadow 260ms ease, border-color 180ms ease;
}

.service-promo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-promo-caption {
  display: block;
  margin-top: 12px;
  line-height: 1.32;
  text-align: center;
}

.service-promo-caption strong,
.service-promo-caption span {
  display: block;
}

.service-promo-caption strong {
  color: var(--gold);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.service-promo-caption span {
  margin-top: 3px;
  color: #3e4b5b;
  font-weight: 700;
}

.service-promo-preview:hover .service-promo-frame,
.service-promo-preview:focus-visible .service-promo-frame {
  transform: translateY(-4px) scale(1.012);
  border-color: var(--gold);
  box-shadow: 0 24px 48px rgba(12, 22, 34, 0.24);
}

.service-promo-preview:focus-visible {
  outline: 3px solid rgba(216, 180, 63, 0.72);
  outline-offset: 6px;
}

.service-metrics {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 6px;
}

.service-metrics article {
  padding: 16px 18px;
  background: linear-gradient(135deg, rgba(127, 116, 68, 0.12), rgba(255, 248, 236, 0.92));
  border: 1px solid rgba(127, 116, 68, 0.24);
  border-radius: 8px;
}

.service-metrics strong {
  display: block;
  color: var(--earth);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1;
}

.service-metrics span {
  display: block;
  margin-top: 8px;
  color: #536174;
  font-weight: 700;
}

.service-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 16px;
  padding: 18px 20px;
  background: rgba(7, 17, 32, 0.94);
  border: 1px solid rgba(216, 180, 63, 0.34);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(7, 17, 32, 0.18);
}

.service-note p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

.investment {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 17, 32, 0.98), rgba(7, 17, 32, 0.9)),
    url("datoteke/slike/investicije-slika.png") center / cover no-repeat;
  border-top: 1px solid rgba(216, 180, 63, 0.25);
  border-bottom: 1px solid rgba(216, 180, 63, 0.25);
}

.investment p {
  color: rgba(255, 255, 255, 0.76);
}

.investment-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.doc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.investment-card {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 38px);
  background: rgba(15, 32, 55, 0.88);
  border: 1px solid rgba(216, 180, 63, 0.38);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
  transition: transform 260ms var(--ease-premium), box-shadow 260ms ease;
}

.investment-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 42%);
  opacity: 0.66;
}

.investment-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 32px 76px rgba(0, 0, 0, 0.38);
}

.investment-card > * {
  position: relative;
  z-index: 1;
}

.investment-card h3 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 3.15rem);
}

.investment-card p {
  margin-bottom: 22px;
}

.investment-points {
  display: grid;
  gap: 8px;
}

.investment-points span {
  padding: 10px 12px;
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  font-weight: 700;
  transition: transform 180ms var(--ease-premium), border-color 180ms ease, background 180ms ease;
}

.investment-points span:hover {
  transform: translateX(3px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(216, 180, 63, 0.28);
}

.money-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  margin-top: clamp(46px, 7vw, 82px);
  padding: clamp(24px, 4vw, 40px);
  background: rgba(7, 17, 32, 0.74);
  border: 1px solid rgba(216, 180, 63, 0.34);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.money-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent, rgba(216, 180, 63, 0.08), transparent);
  transform: translateX(-100%);
}

.money-panel.is-visible::before {
  animation: panelSweep 1300ms 240ms var(--ease-premium) both;
}

.money-copy h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.7rem, 3.6vw, 3rem);
  line-height: 1.05;
}

.money-copy small {
  display: block;
  max-width: 580px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
}

.money-visual {
  display: grid;
  gap: 14px;
}

.money-bars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.money-bars article {
  position: relative;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  transition: transform 220ms var(--ease-premium), border-color 180ms ease, background 180ms ease;
}

.money-bars article:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(216, 180, 63, 0.26);
}

.money-bars span,
.cash-impact span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.money-bars strong {
  display: block;
  margin: 8px 0 12px;
  color: var(--gold-soft);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.money-bars small {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.55);
}

.money-track {
  height: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.money-track i {
  display: block;
  width: var(--bar);
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  border-radius: inherit;
}

body.motion-ready .money-track i {
  width: 0;
}

body.motion-ready .money-panel.is-visible .money-track i {
  width: var(--bar);
  transition: width 1100ms 220ms var(--ease-premium);
}

.cash-impact {
  display: grid;
  grid-template-columns: minmax(130px, 0.8fr) auto minmax(190px, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px;
  background: rgba(255, 248, 236, 0.96);
  border: 1px solid rgba(216, 180, 63, 0.38);
  border-radius: 8px;
  transition: transform 220ms var(--ease-premium), box-shadow 220ms ease;
}

.cash-impact:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.13);
}

.cash-impact span {
  color: #5d6877;
}

.cash-impact strong {
  color: #9e5d66;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  line-height: 1;
  text-align: center;
}

.investment-quiz {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(360px, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
  margin-top: 18px;
  padding: clamp(24px, 4vw, 40px);
  color: var(--ink);
  background: rgba(255, 248, 236, 0.98);
  border: 1px solid rgba(216, 180, 63, 0.44);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(12, 22, 34, 0.12);
}

.quiz-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.75rem, 3.8vw, 3rem);
  line-height: 1.05;
}

.quiz-copy p {
  color: #536174;
}

.quiz-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.quiz-form label {
  display: grid;
  gap: 7px;
  color: #374253;
  font-size: 0.92rem;
  font-weight: 700;
}

.quiz-form input,
.quiz-form select,
.quiz-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fffdfa;
  border: 1px solid #d9c9a8;
  border-radius: 6px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.quiz-form input:focus,
.quiz-form select:focus,
.quiz-form textarea:focus {
  outline: 0;
  background: var(--white);
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(216, 180, 63, 0.16);
}

.quiz-form textarea {
  resize: vertical;
}

.full-field,
.quiz-form .button,
.quiz-form .form-status {
  grid-column: 1 / -1;
}

.flow {
  background: var(--cream);
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.flow-grid article {
  min-height: 220px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 220ms var(--ease-premium), border-color 180ms ease, box-shadow 220ms ease;
}

.flow-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 180, 63, 0.74);
  box-shadow: 0 18px 42px rgba(12, 22, 34, 0.12);
}

.flow-grid span {
  color: var(--gold);
  font-weight: 700;
}

.flow-grid h3 {
  margin-top: 10px;
  font-size: 1.45rem;
}

.flow-grid p {
  margin-bottom: 0;
  font-size: 0.98rem;
}

.contact {
  background: var(--paper);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 440px);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 12px;
  max-width: 520px;
  margin-top: 22px;
}

.booking-button {
  margin-top: 18px;
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 220ms var(--ease-premium), border-color 180ms ease, box-shadow 220ms ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 12px 26px rgba(12, 22, 34, 0.1);
}

.contact-card span {
  color: var(--muted);
  font-weight: 700;
}

.contact-card strong {
  color: var(--navy);
}

.contact-form {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 22px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 240ms var(--ease-premium), box-shadow 240ms ease;
}

.contact-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 70px rgba(12, 22, 34, 0.17);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #374253;
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fffdfa;
  border: 1px solid #d9c9a8;
  border-radius: 6px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 0;
  background: var(--white);
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(216, 180, 63, 0.16);
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--green) !important;
  font-size: 0.92rem !important;
  font-weight: 700;
}

.privacy-note {
  margin: 0;
  padding: 12px;
  color: #566171 !important;
  background: #fff8ec;
  border: 1px solid #e6d5ae;
  border-radius: 6px;
  font-size: 0.82rem !important;
}

.service-notice {
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--gold);
  background: rgba(197, 145, 48, 0.08);
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.materials-body {
  background: #efe5cd;
}

.materials-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 12%, rgba(216, 180, 63, 0.2), transparent 34%),
    radial-gradient(circle at 84% 18%, rgba(73, 107, 71, 0.16), transparent 32%),
    linear-gradient(90deg, rgba(239, 229, 205, 0.97), rgba(255, 248, 236, 0.94)),
    url("datoteke/slike/ozadje-glavne-strani.jpg") center / cover no-repeat;
}

.materials-world {
  position: relative;
  overflow: hidden;
  padding: 132px 0 84px;
}

.materials-world::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(73, 107, 71, 0.09), transparent 36%),
    linear-gradient(250deg, rgba(139, 84, 45, 0.12), transparent 48%),
    repeating-linear-gradient(0deg, rgba(93, 60, 28, 0.035) 0 1px, transparent 1px 12px);
}

.materials-intro {
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
}

.materials-intro h1 {
  max-width: 900px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.6rem, 7vw, 6.4rem);
  line-height: 0.98;
}

.materials-intro p:not(.section-kicker) {
  max-width: 760px;
  color: #536174;
  font-size: clamp(1.06rem, 2vw, 1.24rem);
}

.package-offer {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  width: min(1420px, calc(100% - 36px));
  margin-bottom: 24px;
  padding: clamp(24px, 4vw, 38px);
  color: var(--white);
  background:
    linear-gradient(112deg, rgba(7, 17, 32, 0.98), rgba(31, 76, 69, 0.96) 68%, rgba(108, 71, 31, 0.94));
  border: 1px solid rgba(232, 203, 116, 0.52);
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(12, 22, 34, 0.22);
}

.package-offer-bottom {
  margin-top: clamp(28px, 5vw, 64px);
  margin-bottom: 0;
}

.package-offer::before {
  content: "";
  position: absolute;
  inset: 8px;
  pointer-events: none;
  border: 1px solid rgba(255, 244, 210, 0.16);
  border-radius: 5px;
}

.package-copy {
  position: relative;
}

.package-copy .small-label {
  color: #f4d98d;
}

.package-copy h2 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.02;
}

.package-copy p:last-child {
  max-width: 780px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.06rem;
  line-height: 1.65;
}

.package-action {
  position: relative;
  display: grid;
  min-width: 220px;
  justify-items: end;
  text-align: right;
}

.discount-badge {
  margin-bottom: 6px;
  padding: 6px 10px;
  color: #251a0a;
  background: #f4d98d;
  border-radius: 5px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.package-action s {
  color: rgba(255, 255, 255, 0.58);
  font-size: 1.1rem;
}

.package-action > strong {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1;
}

.package-action small {
  margin: 5px 0 16px;
  color: #f4d98d;
  font-weight: 700;
}

.materials-layout {
  position: relative;
  z-index: 1;
  display: block;
  width: min(1600px, calc(100% - 28px));
}

.knowledge-map {
  position: relative;
  min-height: clamp(780px, 58vw, 1020px);
  overflow: hidden;
  contain: layout paint;
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 26%, rgba(160, 112, 56, 0.2) 0 12%, transparent 13%),
    radial-gradient(circle at 74% 34%, rgba(73, 107, 71, 0.13) 0 11%, transparent 12%),
    radial-gradient(circle at 36% 76%, rgba(79, 134, 220, 0.13) 0 12%, transparent 13%),
    repeating-radial-gradient(circle at 50% 50%, rgba(103, 67, 31, 0.045) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(18deg, rgba(83, 54, 26, 0.035) 0 1px, transparent 1px 23px),
    linear-gradient(135deg, #ead1a0 0%, #f7e9c4 28%, #e3c38c 62%, #f1dba9 100%);
  border: 1px solid rgba(99, 64, 30, 0.46);
  border-radius: 7px;
  box-shadow:
    inset 0 0 0 12px rgba(107, 68, 31, 0.08),
    inset 0 0 64px rgba(80, 45, 17, 0.24),
    0 34px 92px rgba(12, 22, 34, 0.22);
  clip-path: polygon(1.2% 2.4%, 98.2% 0.8%, 99% 95.6%, 96.4% 98.8%, 3.1% 98.2%, 0.8% 93.8%);
}

.knowledge-map::before,
.knowledge-map::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.knowledge-map::before {
  inset: 18px;
  border: 2px solid rgba(110, 70, 31, 0.23);
  border-radius: 5px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 244, 210, 0.46),
    inset 0 0 38px rgba(85, 51, 22, 0.14);
}

.knowledge-map::after {
  inset: 0;
  background:
    radial-gradient(circle at 7% 9%, rgba(80, 45, 17, 0.28) 0 2px, transparent 3px),
    radial-gradient(circle at 92% 86%, rgba(80, 45, 17, 0.18) 0 2px, transparent 3px),
    linear-gradient(90deg, rgba(73, 42, 18, 0.16), transparent 14%, transparent 86%, rgba(73, 42, 18, 0.18)),
    linear-gradient(180deg, rgba(255, 244, 210, 0.34), transparent 22%, transparent 72%, rgba(73, 42, 18, 0.15));
  opacity: 0.78;
}

.map-path {
  position: absolute;
  inset: 2%;
  z-index: 2;
  width: 96%;
  height: 96%;
  overflow: visible;
}

.map-path-shadow,
.map-path-line,
.map-path-highlight {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.map-path-shadow {
  stroke: rgba(83, 50, 19, 0.28);
  stroke-width: 52;
}

.map-path-line {
  stroke: #7c4a22;
  stroke-dasharray: 2 28;
  stroke-width: 16;
  filter: drop-shadow(0 6px 8px rgba(73, 42, 18, 0.22));
}

.map-path-highlight {
  stroke: rgba(255, 232, 168, 0.32);
  stroke-dasharray: 1 42;
  stroke-width: 7;
}

.future-path-haze,
.future-path-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.future-path-haze {
  stroke: rgba(255, 244, 210, 0.68);
  stroke-width: 92;
  filter: blur(12px);
  opacity: 0.72;
}

.future-path-line {
  stroke: rgba(99, 58, 25, 0.6);
  stroke-dasharray: 3 34;
  stroke-width: 13;
  filter: blur(0.7px);
  opacity: 0.56;
}

.map-feature {
  position: absolute;
  z-index: 1;
  display: block;
  pointer-events: none;
  border-radius: 8px;
}

.island-a,
.island-b,
.island-c {
  background:
    radial-gradient(circle at 44% 36%, rgba(255, 240, 190, 0.92) 0 16%, transparent 17%),
    radial-gradient(circle at 56% 62%, rgba(103, 128, 75, 0.24) 0 30%, transparent 31%),
    linear-gradient(135deg, rgba(175, 121, 57, 0.28), rgba(99, 129, 74, 0.12));
  border: 1px solid rgba(104, 68, 32, 0.18);
  border-radius: 48% 52% 46% 54%;
}

.island-a {
  top: 12%;
  left: 8%;
  width: 26%;
  height: 18%;
  transform: rotate(-8deg);
}

.island-b {
  right: 7%;
  bottom: 11%;
  width: 27%;
  height: 20%;
  transform: rotate(8deg);
}

.island-c {
  top: 53%;
  left: 56%;
  width: 20%;
  height: 14%;
  transform: rotate(-15deg);
}

.folded-corner {
  right: 0;
  bottom: 0;
  width: 170px;
  height: 150px;
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(99, 64, 30, 0.22) 49%, rgba(255, 242, 203, 0.6) 52%, rgba(205, 157, 92, 0.22) 100%);
  border-radius: 0;
}

.waves-a,
.waves-b {
  width: 22%;
  height: 17%;
  background:
    radial-gradient(ellipse at 14% 50%, transparent 0 36%, rgba(56, 96, 106, 0.3) 37% 44%, transparent 45%),
    radial-gradient(ellipse at 42% 50%, transparent 0 36%, rgba(56, 96, 106, 0.24) 37% 44%, transparent 45%),
    radial-gradient(ellipse at 70% 50%, transparent 0 36%, rgba(56, 96, 106, 0.2) 37% 44%, transparent 45%);
  opacity: 0.82;
}

.waves-a {
  top: 10%;
  right: 18%;
  transform: rotate(-9deg);
}

.waves-b {
  left: 18%;
  bottom: 14%;
  transform: rotate(12deg);
}

.mountains-a {
  top: 20%;
  left: 42%;
  width: 25%;
  height: 13%;
  background:
    repeating-linear-gradient(160deg, rgba(82, 54, 28, 0.16) 0 2px, transparent 2px 12px),
    linear-gradient(180deg, rgba(99, 64, 30, 0.12), transparent);
  clip-path: polygon(0 78%, 12% 32%, 22% 74%, 36% 18%, 50% 78%, 64% 26%, 78% 72%, 92% 36%, 100% 78%, 100% 100%, 0 100%);
  transform: rotate(-4deg);
}

.palm-a {
  right: 30%;
  top: 64%;
  width: 110px;
  height: 90px;
  background:
    radial-gradient(ellipse at 40% 18%, rgba(73, 107, 71, 0.3) 0 12px, transparent 13px),
    radial-gradient(ellipse at 62% 20%, rgba(73, 107, 71, 0.24) 0 12px, transparent 13px),
    linear-gradient(80deg, transparent 47%, rgba(96, 63, 30, 0.42) 48% 52%, transparent 53%);
  transform: rotate(10deg);
}

.compass-rose-small {
  left: 72%;
  bottom: 20%;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(96, 63, 30, 0.24);
  border-radius: 50%;
  background:
    conic-gradient(from 45deg, transparent 0 12%, rgba(96, 63, 30, 0.18) 12% 13%, transparent 13% 37%, rgba(96, 63, 30, 0.18) 37% 38%, transparent 38% 62%, rgba(96, 63, 30, 0.18) 62% 63%, transparent 63% 87%, rgba(96, 63, 30, 0.18) 87% 88%, transparent 88%),
    radial-gradient(circle, rgba(255, 240, 196, 0.46), transparent 62%);
}

.map-label {
  position: absolute;
  z-index: 2;
  color: rgba(76, 48, 22, 0.82);
  font-size: clamp(0.84rem, 1.2vw, 1.02rem);
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0;
  pointer-events: none;
  text-shadow: 0 1px 0 rgba(255, 244, 210, 0.5);
}

.label-aha {
  top: 18%;
  left: 12%;
  transform: rotate(-9deg);
}

.label-focus {
  right: 14%;
  bottom: 19%;
  transform: rotate(8deg);
}

.label-questions {
  top: 26%;
  left: 48%;
  transform: rotate(-5deg);
}

.label-practice {
  left: 58%;
  top: 60%;
  transform: rotate(7deg);
}

.field-a {
  top: 9%;
  left: 7%;
  width: 28%;
  height: 22%;
  background:
    repeating-linear-gradient(90deg, rgba(73, 107, 71, 0.14) 0 5px, transparent 5px 18px),
    rgba(255, 248, 236, 0.28);
  transform: rotate(-8deg);
}

.field-b {
  right: 10%;
  bottom: 12%;
  width: 30%;
  height: 24%;
  background:
    repeating-linear-gradient(0deg, rgba(216, 180, 63, 0.14) 0 4px, transparent 4px 16px),
    rgba(255, 248, 236, 0.3);
  transform: rotate(7deg);
}

.terrace-a {
  top: 35%;
  right: 11%;
  width: 21%;
  height: 14%;
  border: 1px solid rgba(73, 107, 71, 0.16);
  background: rgba(73, 107, 71, 0.1);
  transform: rotate(-14deg);
}

.terrace-b {
  bottom: 10%;
  left: 11%;
  width: 22%;
  height: 12%;
  border: 1px solid rgba(127, 116, 68, 0.18);
  background: rgba(184, 112, 77, 0.12);
  transform: rotate(10deg);
}

.water-line {
  top: 14%;
  right: -8%;
  width: 42%;
  height: 70%;
  border: 18px solid rgba(79, 134, 220, 0.14);
  border-left: 0;
  border-radius: 0 48% 48% 0;
  transform: rotate(10deg);
}

.ridge-a {
  top: 6%;
  left: 41%;
  width: 34%;
  height: 16%;
  background:
    repeating-linear-gradient(168deg, rgba(7, 17, 32, 0.08) 0 2px, transparent 2px 15px),
    rgba(255, 255, 255, 0.16);
  clip-path: polygon(0 58%, 13% 18%, 25% 54%, 38% 12%, 52% 58%, 68% 16%, 82% 50%, 100% 20%, 100% 100%, 0 100%);
  transform: rotate(-4deg);
}

.ridge-b {
  right: 6%;
  bottom: 42%;
  width: 25%;
  height: 12%;
  background:
    repeating-linear-gradient(156deg, rgba(73, 107, 71, 0.11) 0 2px, transparent 2px 13px),
    rgba(255, 248, 236, 0.22);
  clip-path: polygon(0 70%, 18% 22%, 34% 66%, 53% 18%, 70% 62%, 100% 28%, 100% 100%, 0 100%);
  transform: rotate(9deg);
}

.grove-a {
  top: 22%;
  left: 12%;
  width: 18%;
  height: 17%;
  background:
    radial-gradient(circle at 18% 34%, rgba(73, 107, 71, 0.28) 0 8px, transparent 9px),
    radial-gradient(circle at 44% 24%, rgba(73, 107, 71, 0.24) 0 7px, transparent 8px),
    radial-gradient(circle at 70% 46%, rgba(73, 107, 71, 0.26) 0 8px, transparent 9px),
    radial-gradient(circle at 36% 68%, rgba(73, 107, 71, 0.22) 0 6px, transparent 7px);
}

.garden-a {
  right: 24%;
  bottom: 8%;
  width: 18%;
  height: 18%;
  background:
    linear-gradient(90deg, transparent 48%, rgba(127, 116, 68, 0.18) 48% 52%, transparent 52%),
    linear-gradient(0deg, transparent 48%, rgba(127, 116, 68, 0.18) 48% 52%, transparent 52%),
    rgba(255, 248, 236, 0.22);
  border: 1px solid rgba(127, 116, 68, 0.18);
  transform: rotate(-9deg);
}

.map-marker-runner {
  position: absolute;
  z-index: 3;
  top: 82%;
  left: 10%;
  width: 20px;
  height: 20px;
  background:
    radial-gradient(circle, #fff3a7 0 34%, #d8b43f 35% 62%, #8f5524 63%);
  border: 2px solid rgba(255, 244, 210, 0.86);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(73, 42, 18, 0.26);
}

.map-compass {
  position: absolute;
  top: 28px;
  left: calc(50% - 41px);
  z-index: 4;
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  color: var(--navy);
  background:
    radial-gradient(circle, rgba(255, 244, 210, 0.86), rgba(214, 164, 92, 0.42));
  border: 1px solid rgba(96, 63, 30, 0.36);
  border-radius: 50%;
  box-shadow: 0 14px 32px rgba(73, 42, 18, 0.16);
  font-weight: 700;
  transform: rotate(-8deg);
}

.map-compass::before,
.map-compass::after {
  content: "";
  position: absolute;
  background: rgba(127, 116, 68, 0.34);
}

.map-compass::before {
  width: 1px;
  height: 48px;
}

.map-compass::after {
  width: 48px;
  height: 1px;
}

.map-compass span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  background: rgba(255, 248, 236, 0.92);
  border-radius: 50%;
}

.future-treasure {
  position: absolute;
  z-index: 3;
  top: 7%;
  left: 94%;
  display: grid;
  width: 118px;
  justify-items: center;
  color: rgba(91, 50, 20, 0.64);
  pointer-events: none;
  text-align: center;
  text-shadow: 0 1px 0 rgba(255, 244, 210, 0.64);
  transform: translate(-50%, -50%) rotate(-8deg);
}

.future-treasure::before {
  content: "";
  position: absolute;
  inset: -22px -28px;
  z-index: -1;
  background: radial-gradient(circle, rgba(255, 244, 210, 0.78), rgba(255, 244, 210, 0.26) 48%, transparent 72%);
  filter: blur(5px);
}

.future-treasure strong {
  font-size: clamp(3.8rem, 7vw, 6.8rem);
  line-height: 0.78;
}

.future-treasure small {
  max-width: 110px;
  margin-top: 8px;
  font-size: 0.76rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.15;
}

.map-station {
  position: absolute;
  z-index: 4;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
}

.map-station {
  display: grid;
  gap: 8px;
  justify-items: center;
  min-width: 150px;
  padding: 0;
  color: var(--navy);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.station-ring {
  position: absolute;
  z-index: -1;
  width: 116px;
  height: 92px;
  border: 1px solid rgba(105, 66, 30, 0.42);
  border-radius: 50% 44% 52% 42%;
  background:
    radial-gradient(circle at 42% 40%, rgba(255, 246, 214, 0.62), transparent 54%),
    linear-gradient(135deg, rgba(137, 82, 36, 0.2), rgba(255, 248, 224, 0.22));
  box-shadow: 0 16px 34px rgba(73, 42, 18, 0.16);
  transform: translateY(-2px) rotate(-7deg);
}

.station-pin {
  position: relative;
  display: grid;
  width: 78px;
  height: 60px;
  place-items: center;
  background:
    linear-gradient(90deg, rgba(93, 48, 24, 0.22) 0 12px, transparent 12px),
    linear-gradient(135deg, #f8e4a4, #d6a846 58%, #a96b2d);
  border: 3px solid rgba(255, 239, 194, 0.86);
  border-radius: 8px 18px 18px 8px;
  box-shadow: 0 18px 38px rgba(73, 42, 18, 0.28);
  transform: rotate(-7deg);
  transition: transform 220ms var(--ease-premium), box-shadow 220ms ease;
}

.station-pin::before {
  content: "";
  position: absolute;
  top: 10px;
  right: 9px;
  bottom: 9px;
  left: 18px;
  width: auto;
  height: auto;
  background:
    linear-gradient(#9a6a2e, #9a6a2e) 8px 9px / 22px 1px no-repeat,
    linear-gradient(#9a6a2e, #9a6a2e) 8px 17px / 30px 1px no-repeat,
    linear-gradient(#9a6a2e, #9a6a2e) 8px 25px / 18px 1px no-repeat;
  background-color: rgba(255, 250, 232, 0.78);
  border: 1px solid rgba(93, 48, 24, 0.24);
  border-radius: 4px 10px 10px 4px;
  box-shadow: inset 4px 0 0 rgba(214, 168, 70, 0.18);
}

.station-pin::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 10px;
  width: 8px;
  height: 46px;
  background:
    linear-gradient(180deg, rgba(117, 57, 31, 0.68), rgba(117, 57, 31, 0.32));
  border-radius: 999px;
  opacity: 0.8;
}

.station-number {
  position: relative;
  z-index: 2;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  margin-left: auto;
  margin-right: 11px;
  color: #fff8ec;
  background: #7c4a22;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(73, 42, 18, 0.24);
  font-size: 0.82rem;
  font-weight: 700;
}

.station-price {
  position: absolute;
  z-index: 5;
  top: -18px;
  left: calc(50% + 24px);
  display: grid;
  gap: 0;
  min-width: 74px;
  padding: 6px 9px;
  color: #fff9ed;
  background: linear-gradient(135deg, #9e4f36, #7a3e2b);
  border: 1px solid rgba(255, 239, 194, 0.82);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(73, 42, 18, 0.28);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
  white-space: nowrap;
}

.station-price small {
  display: block;
  color: rgba(255, 239, 194, 0.86);
  font-size: 0.62rem;
  text-transform: uppercase;
}

.station-label {
  max-width: 188px;
  padding: 7px 10px;
  color: #4d2f16;
  background: rgba(255, 244, 210, 0.94);
  border: 1px solid rgba(105, 66, 30, 0.34);
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(73, 42, 18, 0.16);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: transform 220ms var(--ease-premium), border-color 180ms ease;
}

.map-station:hover .station-pin,
.map-station.selected .station-pin {
  transform: translateY(-4px) rotate(-2deg) scale(1.06);
  box-shadow: 0 24px 48px rgba(73, 42, 18, 0.34);
}

.map-station:hover .station-label,
.map-station.selected .station-label {
  transform: translateY(-2px);
  border-color: var(--gold);
}

body.station-dialog-open {
  overflow: hidden;
}

.station-dialog-layer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  padding: 20px;
  place-items: center;
  opacity: 0;
  transition: opacity 220ms ease;
}

.station-dialog-layer[hidden] {
  display: none;
}

.station-dialog-layer.is-open {
  opacity: 1;
}

.station-dialog-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  background: rgba(7, 17, 32, 0.72);
  border: 0;
  backdrop-filter: blur(7px);
  cursor: pointer;
}

.station-modal {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  max-height: calc(100dvh - 40px);
  overflow: auto;
  overscroll-behavior: contain;
  padding: clamp(20px, 3vw, 32px);
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 14%, rgba(216, 180, 63, 0.14), transparent 28%),
    repeating-linear-gradient(0deg, rgba(102, 67, 31, 0.035) 0 1px, transparent 1px 12px),
    rgba(255, 248, 226, 0.985);
  border: 1px solid rgba(105, 66, 30, 0.34);
  border-radius: 8px;
  box-shadow:
    inset 0 0 36px rgba(105, 66, 30, 0.08),
    0 30px 90px rgba(12, 22, 34, 0.3);
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition: opacity 220ms ease, transform 260ms var(--ease-premium);
}

.station-modal.is-open {
  opacity: 1;
  transform: none;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #4d2f16;
  background: rgba(255, 244, 210, 0.96);
  border: 1px solid rgba(105, 66, 30, 0.28);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}

.station-modal [data-station-detail] {
  display: block;
}

.station-cover {
  display: grid;
  min-height: 238px;
  align-content: space-between;
  margin: 0;
  padding: 18px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(87, 44, 25, 0.34) 0 18%, transparent 18%),
    radial-gradient(circle at 78% 18%, rgba(255, 244, 210, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(7, 17, 32, 0.94), rgba(73, 107, 71, 0.9));
  border: 1px solid rgba(216, 180, 63, 0.5);
  border-radius: 7px;
  box-shadow: 0 18px 42px rgba(12, 22, 34, 0.22);
}

.station-cover.has-image {
  display: block;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: var(--white);
  border-color: rgba(216, 180, 63, 0.56);
}

.station-cover img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.station-cover.bundle-cover {
  width: min(760px, 100%);
  margin: 22px auto;
  padding: 10px;
  background: #f5ead0;
}

.bundle-cover-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.bundle-cover-grid img {
  border: 1px solid rgba(91, 57, 26, 0.2);
  border-radius: 3px;
  box-shadow: 0 8px 18px rgba(39, 26, 12, 0.16);
}

.bundle-cover-grid img:last-child {
  grid-column: auto;
  width: 100%;
}

.station-cover span,
.station-cover small {
  color: var(--gold-soft);
  font-weight: 700;
}

.station-cover.tone-gold {
  background:
    linear-gradient(90deg, rgba(87, 44, 25, 0.32) 0 18%, transparent 18%),
    linear-gradient(135deg, #76511f, #d8b43f);
}

.station-cover.tone-rose {
  background:
    linear-gradient(90deg, rgba(87, 44, 25, 0.32) 0 18%, transparent 18%),
    linear-gradient(135deg, #6e3f35, #a56772);
}

.station-cover.tone-blue {
  background:
    linear-gradient(90deg, rgba(19, 47, 68, 0.36) 0 18%, transparent 18%),
    linear-gradient(135deg, #17354d, #4f86dc);
}

.station-cover.tone-green {
  background:
    linear-gradient(90deg, rgba(38, 59, 31, 0.36) 0 18%, transparent 18%),
    linear-gradient(135deg, #294d34, #2f7653);
}

.station-cover.tone-navy {
  background:
    linear-gradient(90deg, rgba(87, 44, 25, 0.28) 0 18%, transparent 18%),
    linear-gradient(135deg, #071120, #495c3a);
}

.station-cover strong {
  font-size: 1.55rem;
  line-height: 1.06;
}

.station-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.8rem, 4vw, 2.65rem);
  line-height: 1.04;
}

.station-copy p {
  color: #536174;
}

.material-preview {
  margin: clamp(22px, 3vw, 32px) 0;
  padding: clamp(16px, 2.5vw, 24px);
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.96), rgba(244, 232, 204, 0.72));
  border: 1px solid rgba(105, 66, 30, 0.24);
  border-radius: 7px;
}

.material-preview h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.2;
}

.material-page-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2.4vw, 24px);
  width: min(940px, 100%);
  margin: 0 auto;
}

.material-page-preview {
  display: grid;
  min-width: 0;
  padding: 0;
  color: var(--navy);
  background: transparent;
  border: 0;
  cursor: zoom-in;
  font-family: inherit;
  text-align: left;
}

.material-page-preview img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2480 / 3508;
  object-fit: contain;
  background: #fff;
  border: 1px solid rgba(105, 66, 30, 0.28);
  border-radius: 4px;
  box-shadow: 0 18px 44px rgba(42, 29, 15, 0.18);
  transition: transform 220ms var(--ease-premium), box-shadow 220ms ease, border-color 180ms ease;
}

.material-page-preview span {
  display: block;
  margin-top: 9px;
  color: #63401e;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.material-page-preview:hover img,
.material-page-preview:focus-visible img {
  border-color: var(--gold);
  box-shadow: 0 24px 58px rgba(42, 29, 15, 0.24);
  transform: translateY(-3px);
}

.material-page-preview:focus-visible {
  outline: 3px solid rgba(216, 180, 63, 0.74);
  outline-offset: 6px;
}

.station-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
}

.station-date {
  display: inline-flex;
  color: var(--earth) !important;
  font-weight: 700;
}

.material-price {
  display: inline-grid;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 5px 12px;
  color: var(--navy);
  background: var(--gold);
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(216, 180, 63, 0.18);
  font-size: 1.05rem;
  line-height: 1.08;
  text-align: center;
}

.material-price small {
  color: rgba(7, 17, 32, 0.78);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.price-note {
  display: inline-flex;
  margin: 8px 0 0;
  padding: 8px 10px;
  color: #6c4721 !important;
  background: rgba(255, 244, 210, 0.7);
  border: 1px solid rgba(105, 66, 30, 0.18);
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 700;
}

.station-promise {
  padding: 11px 12px;
  background: #fff8ec;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 700;
}

.order-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.order-form[hidden] {
  display: none;
}

.order-form label {
  display: grid;
  gap: 7px;
  color: #374253;
  font-size: 0.92rem;
  font-weight: 700;
}

.order-form label:first-child,
.order-form .privacy-note,
.order-form .button,
.order-form .form-status {
  grid-column: 1 / -1;
}

.order-form input {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fffdfa;
  border: 1px solid #d9c9a8;
  border-radius: 6px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.order-form input:focus {
  outline: 0;
  background: var(--white);
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(216, 180, 63, 0.16);
}

.materials-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(340px, 1.25fr) auto;
  gap: clamp(18px, 3.2vw, 42px);
  align-items: center;
  width: min(1420px, calc(100% - 36px));
  margin-bottom: 26px;
  padding: clamp(20px, 3vw, 28px);
  background:
    linear-gradient(150deg, rgba(255, 253, 248, 0.96), rgba(255, 248, 236, 0.9) 58%, rgba(221, 232, 214, 0.72)),
    rgba(255, 253, 248, 0.94);
  border: 1px solid rgba(216, 180, 63, 0.32);
  border-radius: 8px;
  box-shadow: 0 28px 72px rgba(12, 22, 34, 0.15);
}

.materials-panel h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.65rem, 2.6vw, 2.5rem);
  line-height: 1.08;
}

.materials-panel p {
  margin: 0;
  color: #48576a;
  line-height: 1.68;
}

.materials-panel-heading {
  display: grid;
  gap: 8px;
}

.materials-panel-heading .small-label {
  margin: 0;
}

.materials-panel-actions {
  display: grid;
  min-width: 190px;
  gap: 12px;
}

.material-counters {
  display: grid;
  gap: 10px;
}

.material-counters article {
  padding: 14px 16px;
  background:
    linear-gradient(135deg, rgba(255, 248, 236, 0.94), rgba(255, 253, 248, 0.96));
  border: 1px solid rgba(216, 180, 63, 0.34);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(12, 22, 34, 0.08);
}

.material-counters strong {
  display: block;
  color: var(--earth);
  font-size: 2.35rem;
  line-height: 1;
}

.material-counters span {
  display: block;
  margin-top: 7px;
  color: #536174;
  font-weight: 700;
}

/* ===== Navedba avtorskih pravic v nogi ===== */
.footer-copyright {
  display: block;
  margin-top: 6px;
  opacity: 0.72;
  font-size: 0.72rem;
  letter-spacing: 0.01em;
}

/* ===== Opozorilo, da so prikazani rezultati demo ===== */
.property-demo-banner {
  grid-column: 1 / -1;
  display: grid;
  gap: 4px;
  margin: 0 0 4px;
  padding: 12px 16px;
  background: rgba(216, 180, 63, 0.16);
  border: 1px solid rgba(216, 180, 63, 0.5);
  border-left: 4px solid #d8b43f;
  border-radius: 6px;
}

.property-demo-banner strong {
  color: #7a5c00;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.property-demo-banner span {
  color: #4c586c;
  font-size: 0.84rem;
  line-height: 1.5;
}

/* ===== Oznaka "v prihodu" na strani AI iskalnika ===== */
.property-soon-badge {
  display: inline-block;
  margin: 0 0 14px;
  padding: 5px 14px;
  color: #0a1a2a;
  background: #d8b43f;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.property-soon-note {
  max-width: 62ch;
  margin: 18px 0 6px;
  padding: 14px 18px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(13, 86, 87, 0.42);
  border-left: 3px solid #d8b43f;
  border-radius: 6px;
  font-size: 0.94rem;
  line-height: 1.6;
}

/* ===== Poudarjena kartica AI iskalnika znotraj AI sekcije ===== */
.service-spotlight {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  justify-items: start;
  margin-top: 6px;
  padding: clamp(18px, 2.4vw, 26px);
  color: var(--white);
  background: linear-gradient(135deg, rgba(13, 86, 87, 0.96), rgba(10, 26, 42, 0.96));
  border: 1px solid rgba(216, 180, 63, 0.45);
  border-radius: 10px;
}

.service-spotlight-badge {
  padding: 4px 12px;
  color: #0a1a2a;
  background: #d8b43f;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.service-spotlight strong {
  font-size: clamp(1.05rem, 1.9vw, 1.25rem);
  line-height: 1.3;
}

.service-spotlight p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  line-height: 1.6;
}

.service-spotlight-cta {
  margin-top: 6px;
}

/* ===== V PRIHODU: zaklenjeno narocanje e-gradiv ===== */
.station-coming-soon {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  padding: 16px 18px;
  background: rgba(13, 86, 87, 0.06);
  border: 1px solid rgba(13, 86, 87, 0.24);
  border-left: 3px solid #0d5657;
  border-radius: 6px;
}

.station-coming-badge {
  justify-self: start;
  padding: 3px 10px;
  color: #0d5657;
  background: rgba(216, 180, 63, 0.22);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.station-coming-soon strong {
  font-size: 1rem;
}

.station-coming-soon p {
  margin: 0;
  color: #4c586c;
  font-size: 0.86rem;
  line-height: 1.5;
}

.station-soon {
  display: block;
  margin-top: 3px;
  color: #d8b43f;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.package-locked-note {
  margin: 8px 0 0;
  color: #4c586c;
  font-size: 0.78rem;
  text-align: center;
}

.package-action .button.primary:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  filter: grayscale(0.35);
}

/* ===== Diskretni vhod v skrivni dostop ===== */
.secret-trigger-row {
  display: flex;
  justify-content: center;
  width: min(1180px, calc(100% - 36px));
  margin: clamp(26px, 4vw, 44px) auto 0;
}

.secret-trigger {
  width: 34px;
  height: 34px;
  padding: 0;
  color: rgba(76, 88, 108, 0.28);
  background: transparent;
  border: 1px solid rgba(76, 88, 108, 0.16);
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition:
    color 260ms var(--ease-premium),
    border-color 260ms var(--ease-premium),
    background 260ms var(--ease-premium);
}

.secret-trigger:hover,
.secret-trigger:focus-visible,
.secret-trigger.is-open {
  color: #0d5657;
  background: rgba(13, 86, 87, 0.07);
  border-color: rgba(13, 86, 87, 0.42);
}

.secret-access[hidden] {
  display: none !important;
}

.secret-access {
  position: relative;
  z-index: 1;
  scroll-margin-top: 118px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: clamp(20px, 3vw, 42px);
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  margin-top: clamp(22px, 3vw, 34px);
  margin-bottom: clamp(24px, 4vw, 48px);
  padding: 16px 18px 16px 22px;
  color: var(--white);
  background:
    linear-gradient(105deg, rgba(7, 17, 32, 0.98), rgba(20, 55, 53, 0.97) 72%, rgba(55, 47, 31, 0.96));
  border: 1px solid rgba(216, 180, 63, 0.34);
  border-radius: 6px;
  box-shadow: 0 16px 36px rgba(12, 22, 34, 0.18);
}

.secret-access::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, var(--gold) 25% 75%, transparent);
}

.secret-access-copy,
.secret-access-form {
  position: relative;
  z-index: 1;
}

.secret-access-copy {
  display: grid;
  grid-template-columns: minmax(165px, auto) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.secret-access-heading .small-label {
  margin: 0 0 4px;
  font-size: 0.7rem;
}

.secret-access-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: 1.14rem;
  line-height: 1.15;
}

.secret-access-copy > p:not(.small-label) {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  line-height: 1.5;
}

.secret-access-form {
  display: grid;
  gap: 5px;
  padding: 0;
}

.secret-access-form label {
  color: #f4d98d;
  font-size: 0.74rem;
  font-weight: 700;
}

.secret-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 7px;
}

.secret-input-row input {
  width: 100%;
  min-height: 40px;
  padding: 8px 11px;
  color: var(--white);
  background: rgba(4, 13, 24, 0.72);
  border: 1px solid rgba(255, 244, 210, 0.28);
  border-radius: 5px;
  font-family: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.secret-input-row .button {
  min-height: 40px;
  padding: 0 16px;
  white-space: nowrap;
}

.secret-input-row input:focus {
  outline: 0;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(216, 180, 63, 0.15);
}

.secret-status {
  min-height: 1.05em;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.74rem;
  line-height: 1.25;
}

.secret-status[data-state="success"] {
  color: #cfe7bd;
}

.secret-status[data-state="error"] {
  color: #ffd4c7;
}

.secret-access-form[aria-busy="true"] input,
.secret-access-form button:disabled {
  cursor: wait;
  opacity: 0.62;
}

@media (max-width: 760px) {
  .secret-access {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .secret-access-copy {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

body.motion-ready .map-path-line {
  animation: pathPulse 2800ms ease-in-out infinite;
  animation-play-state: paused;
}

body.motion-ready .map-station.active .station-pin,
body.motion-ready .map-station:nth-of-type(2) .station-ring,
body.motion-ready .map-station:nth-of-type(3) .station-ring {
  animation: stationBreath 2200ms ease-in-out infinite;
  animation-play-state: paused;
}

body.motion-ready .map-marker-runner {
  animation: routeTravel 7800ms var(--ease-premium) infinite;
  animation-play-state: paused;
}

body.motion-ready .future-path-haze,
body.motion-ready .future-treasure {
  animation: futureMist 4200ms ease-in-out infinite;
  animation-play-state: paused;
}

body.motion-ready .knowledge-map.is-motion-active .map-path-line,
body.motion-ready .knowledge-map.is-motion-active .map-station.active .station-pin,
body.motion-ready .knowledge-map.is-motion-active .map-station:nth-of-type(2) .station-ring,
body.motion-ready .knowledge-map.is-motion-active .map-station:nth-of-type(3) .station-ring,
body.motion-ready .knowledge-map.is-motion-active .map-marker-runner,
body.motion-ready .knowledge-map.is-motion-active .future-path-haze,
body.motion-ready .knowledge-map.is-motion-active .future-treasure {
  animation-play-state: running;
}

.knowledge-map.has-open-station .map-path-line {
  stroke-width: 15;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px clamp(18px, 4vw, 58px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--gold);
  font-size: 1.14rem;
}

.site-footer a {
  color: var(--white);
  font-weight: 700;
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links button {
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 700;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: 18px;
  color: var(--ink);
  background: rgba(255, 250, 240, 0.98);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.cookie-banner strong {
  display: block;
  margin-bottom: 4px;
}

.cookie-banner p {
  margin: 0;
  color: #536174;
}

.cookie-banner a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  flex-shrink: 0;
  gap: 8px;
}

.privacy-content a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
}

.detail-page {
  min-height: 100vh;
  background: var(--paper);
}

.detail-hero {
  padding: 136px 0 72px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 17, 32, 0.98), rgba(7, 17, 32, 0.84)),
    url("datoteke/slike/ozadje-glavne-strani.jpg") center / cover no-repeat;
  border-bottom: 6px solid var(--gold);
}

.detail-hero .section-inner {
  width: min(980px, calc(100% - 36px));
}

.detail-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.02;
}

.detail-lead {
  max-width: 780px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.12rem, 2.2vw, 1.35rem);
}

.detail-content {
  background: var(--cream);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.detail-card {
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(12, 22, 34, 0.08);
  transition: transform 220ms var(--ease-premium), border-color 180ms ease, box-shadow 220ms ease;
}

.detail-card:hover {
  transform: translateY(-3px);
  border-color: rgba(216, 180, 63, 0.68);
  box-shadow: 0 20px 48px rgba(12, 22, 34, 0.12);
}

.detail-card.wide {
  grid-column: 1 / -1;
}

.detail-card h2 {
  margin: 0 0 14px;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
}

.detail-card p {
  margin: 0;
}

.detail-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-card li {
  position: relative;
  padding-left: 24px;
  color: #3e4b5b;
  font-weight: 700;
}

.detail-card li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--gold);
  border-radius: 50%;
}

.detail-promo {
  margin-top: clamp(34px, 6vw, 70px);
}

.detail-promo-heading {
  max-width: 780px;
  margin-bottom: 24px;
}

.detail-promo-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 3.7rem);
  line-height: 1.04;
}

.detail-promo-heading p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.detail-promo-sheet {
  display: grid;
  width: min(960px, 100%);
  overflow: hidden;
  margin: 0 auto;
  padding: 0;
  color: var(--white);
  background: var(--navy);
  border: 1px solid rgba(216, 180, 63, 0.72);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(12, 22, 34, 0.2);
  cursor: zoom-in;
  transition: transform 260ms var(--ease-premium), box-shadow 260ms ease;
}

.detail-promo-sheet img {
  display: block;
  width: 100%;
  height: auto;
}

.detail-promo-action {
  padding: 16px 20px;
  color: var(--gold-soft);
  font-weight: 700;
  text-align: center;
}

.detail-promo-sheet:hover,
.detail-promo-sheet:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 36px 86px rgba(12, 22, 34, 0.26);
}

.detail-promo-sheet:focus-visible {
  outline: 3px solid rgba(216, 180, 63, 0.78);
  outline-offset: 6px;
}

body.promo-lightbox-open {
  overflow: hidden;
}

.promo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  padding: 18px;
  place-items: center;
  opacity: 0;
  transition: opacity 220ms ease;
}

.promo-lightbox[hidden] {
  display: none;
}

.promo-lightbox.is-open {
  opacity: 1;
}

.promo-lightbox-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  background: rgba(3, 8, 15, 0.9);
  border: 0;
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.promo-lightbox-dialog {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(1120px, 100%);
  max-height: calc(100dvh - 36px);
  overflow: hidden;
  flex-direction: column;
  background: #e9e4d9;
  border: 1px solid rgba(216, 180, 63, 0.76);
  border-radius: 8px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.52);
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition: opacity 220ms ease, transform 260ms var(--ease-premium);
}

.promo-lightbox-dialog.is-open {
  opacity: 1;
  transform: none;
}

.promo-lightbox-header {
  z-index: 2;
  display: flex;
  min-height: 66px;
  padding: 12px 14px 12px 20px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--white);
  background: var(--navy);
  border-bottom: 1px solid rgba(216, 180, 63, 0.46);
}

.promo-lightbox-header h2 {
  margin: 0;
  font-size: clamp(1.08rem, 2.4vw, 1.55rem);
  line-height: 1.2;
}

.promo-lightbox-close {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  flex: 0 0 auto;
  place-items: center;
  color: var(--navy);
  background: var(--gold);
  border: 1px solid var(--gold-soft);
  border-radius: 6px;
  cursor: pointer;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease;
}

.promo-lightbox-close:hover,
.promo-lightbox-close:focus-visible {
  transform: scale(1.05);
  background: var(--gold-soft);
}

.promo-lightbox-close:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 2px;
}

.promo-lightbox-scroll {
  overflow: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}

.promo-lightbox-scroll img {
  display: block;
  width: min(1055px, 100%);
  height: auto;
  margin: 0 auto;
}

@media (prefers-reduced-motion: no-preference) {
  .hero {
    animation: heroSettle 1200ms var(--ease-premium) both;
  }

  .hero::before {
    animation: heroSweep 4800ms 460ms var(--ease-premium) both;
  }

  .hero-inner > .eyebrow,
  .hero-inner > h1,
  .hero-subtitle,
  .hero-copy,
  .hero-actions,
  .service-strip a,
  .detail-hero .eyebrow,
  .detail-hero h1,
  .detail-lead,
  .detail-hero .hero-actions {
    animation: riseIn 860ms var(--ease-premium) both;
  }

  .hero-inner > .eyebrow,
  .detail-hero .eyebrow {
    animation-delay: 110ms;
  }

  .hero-inner > h1,
  .detail-hero h1 {
    animation-delay: 200ms;
  }

  .hero-subtitle,
  .detail-lead {
    animation-delay: 310ms;
  }

  .hero-copy {
    animation-delay: 410ms;
  }

  .hero-actions,
  .detail-hero .hero-actions {
    animation-delay: 520ms;
  }

  .service-strip a:nth-child(1) {
    animation-delay: 640ms;
  }

  .service-strip a:nth-child(2) {
    animation-delay: 700ms;
  }

  .service-strip a:nth-child(3) {
    animation-delay: 760ms;
  }

  .service-strip a:nth-child(4) {
    animation-delay: 820ms;
  }

  .service-strip a:nth-child(5) {
    animation-delay: 880ms;
  }

  .service-strip a:nth-child(6) {
    animation-delay: 940ms;
  }

  .cookie-banner {
    animation: riseIn 520ms var(--ease-premium) both;
  }

  body.motion-ready .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
      opacity 760ms var(--ease-premium),
      transform 760ms var(--ease-premium);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
  }

  body.motion-ready .reveal.reveal-soft {
    transform: translateY(22px) scale(0.985);
  }

  body.motion-ready .reveal.reveal-left {
    transform: translateX(-28px);
  }

  body.motion-ready .reveal.reveal-right {
    transform: translateX(28px);
  }

  body.motion-ready .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes panelReveal {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes panelSweep {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(100%);
  }
}

@keyframes heroSweep {
  from {
    opacity: 0;
    transform: translateX(-46%);
  }

  45% {
    opacity: 0.72;
  }

  to {
    opacity: 0.38;
    transform: translateX(34%);
  }
}

@keyframes heroSettle {
  from {
    background-position: center 45%;
  }

  to {
    background-position: center center;
  }
}

@keyframes markGlint {
  from {
    transform: translateX(0) skewX(-18deg);
  }

  to {
    transform: translateX(420%) skewX(-18deg);
  }
}

@keyframes pathPulse {
  0%,
  100% {
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dashoffset: -38;
  }
}

@keyframes stationBreath {
  0%,
  100% {
    filter: saturate(1);
  }

  50% {
    filter: saturate(1.16);
  }
}

@keyframes routeTravel {
  0% {
    top: 84%;
    left: 9%;
    opacity: 0;
  }

  8% {
    opacity: 1;
  }

  38% {
    top: 61%;
    left: 35%;
  }

  78% {
    top: 43%;
    left: 63%;
  }

  92% {
    opacity: 1;
  }

  100% {
    top: 43%;
    left: 63%;
    opacity: 0;
  }
}

@keyframes futureMist {
  0%,
  100% {
    opacity: 0.48;
  }

  50% {
    opacity: 0.74;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

/* Ko je zavihek v ozadju, zaustavimo vse animacije za varcevanje baterije in procesorja. */
body.motion-idle *,
body.motion-idle *::before,
body.motion-idle *::after {
  animation-play-state: paused !important;
}

@media (max-width: 980px) {
  .service-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-panel,
  .intro-grid,
  .investment-layout,
  .contact-layout,
  .money-panel,
  .investment-quiz,
  .materials-layout,
  .materials-panel {
    grid-template-columns: 1fr;
  }

  .service-panel.has-promo {
    grid-template-columns: 1fr;
  }

  /* Na ozjih zaslonih se vse zlozi v en stolpec po vrsti. */
  .service-panel.has-promo > .service-panel-copy,
  .service-panel.has-promo > ul,
  .service-panel.has-promo > .service-promo-preview,
  .service-panel.has-promo > .service-spotlight,
  .service-panel.has-promo > .service-metrics {
    grid-column: auto;
    grid-row: auto;
  }

  .service-promo-preview {
    width: min(360px, 100%);
    max-width: none;
    justify-self: center;
  }

  .flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-grid {
    grid-template-columns: 1fr;
  }

  .package-offer {
    grid-template-columns: 1fr;
  }

  .package-action {
    justify-items: start;
    text-align: left;
  }

  .materials-panel-actions {
    grid-template-columns: minmax(180px, 220px) minmax(220px, max-content);
    align-items: end;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
  }

  .site-header:not([data-header]) {
    flex-wrap: wrap;
    gap: 8px 14px;
  }

  .nav {
    position: absolute;
    top: 72px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: rgba(7, 17, 32, 0.98);
    border: 1px solid rgba(216, 180, 63, 0.28);
    border-radius: 8px;
  }

  .nav.is-open {
    display: flex;
  }

  .site-header:not([data-header]) .nav {
    order: 3;
    position: static;
    display: flex;
    flex: 1 1 auto;
    flex-direction: row;
    flex-basis: 100%;
    gap: 8px;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .site-header:not([data-header]) .nav::-webkit-scrollbar {
    display: none;
  }

  .site-header:not([data-header]) .nav a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .nav a {
    padding: 8px 8px;
    font-size: 0.93rem;
  }

  .site-header:not([data-header]) .nav-cta {
    padding: 8px 10px !important;
  }

  .language-switch button {
    min-width: 34px;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 10px;
    padding: 12px 14px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    display: none;
  }

  .header-actions {
    gap: 5px;
  }

  .language-switch {
    padding: 2px;
  }

  .language-switch button {
    min-width: 29px;
    min-height: 30px;
    padding: 0 3px;
    font-size: 0.75rem;
  }

  [lang="ru"] .privacy-page .detail-hero h1 {
    overflow-wrap: normal;
    font-size: 1.9rem;
  }

  [lang="ru"] .detail-page .detail-hero h1 {
    overflow-wrap: normal;
    font-size: 2.2rem;
  }

  .hero {
    min-height: 82vh;
  }

  .hero-inner {
    width: min(100% - 28px, 1120px);
    padding-top: 108px;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 18vw, 5.2rem);
  }

  .hero-subtitle {
    font-size: 1.28rem;
  }

  .service-tabs,
  .flow-grid,
  .money-bars,
  .cash-impact,
  .quiz-form,
  .service-metrics,
  .order-form,
  .station-modal [data-station-detail] {
    grid-template-columns: 1fr;
  }

  .service-panel {
    padding: 22px;
  }

  .service-panel h3 {
    font-size: 2rem;
  }

  .service-promo-preview {
    width: min(310px, 100%);
  }

  .promo-lightbox {
    padding: 8px;
  }

  .promo-lightbox-dialog {
    width: 100%;
    max-height: calc(100dvh - 16px);
  }

  .promo-lightbox-header {
    min-height: 58px;
    padding: 8px 8px 8px 14px;
  }

  .promo-lightbox-scroll img {
    width: 760px;
    max-width: none;
    margin: 0;
  }

  .service-note {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-card {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-banner,
  .cookie-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .materials-world {
    padding-top: 142px;
  }

  .materials-intro h1 {
    font-size: clamp(2.7rem, 15vw, 4.7rem);
  }

  .knowledge-map {
    min-height: 760px;
  }

  .materials-panel-actions {
    grid-template-columns: 1fr;
  }

  .secret-access {
    gap: 10px;
    padding: 15px 16px 16px 19px;
  }

  .secret-access-copy > p:not(.small-label) {
    font-size: 0.8rem;
  }

  .secret-input-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .secret-input-row .button {
    padding: 0 13px;
  }

  .future-treasure {
    top: 8%;
    left: 86%;
    width: 92px;
  }

  .future-treasure strong {
    font-size: 4.5rem;
  }

  .map-compass {
    top: 24px;
    left: 20px;
    width: 68px;
    height: 68px;
  }

  .map-station {
    left: clamp(104px, var(--x), calc(100% - 104px));
    min-width: 116px;
  }

  .knowledge-map > .map-station:nth-of-type(1) {
    left: 24%;
    top: 86%;
  }

  .knowledge-map > .map-station:nth-of-type(2) {
    left: 46%;
    top: 62%;
  }

  .knowledge-map > .map-station:nth-of-type(3) {
    left: 68%;
    top: 40%;
  }

  .station-ring {
    width: 92px;
    height: 72px;
  }

  .station-pin {
    width: 62px;
    height: 48px;
  }

  .station-pin::before {
    top: 8px;
    right: 8px;
    bottom: 7px;
    left: 15px;
  }

  .station-pin::after {
    top: 6px;
    left: 8px;
    width: 7px;
    height: 36px;
  }

  .station-price {
    top: -16px;
    left: calc(50% + 14px);
    min-width: 66px;
    padding: 5px 7px;
    font-size: 0.78rem;
  }

  .station-price small {
    font-size: 0.56rem;
  }

  .station-label {
    max-width: 138px;
    font-size: 0.74rem;
  }

  .station-dialog-layer {
    padding: 10px;
  }

  .station-modal {
    width: 100%;
    max-height: calc(100dvh - 20px);
    padding: 18px;
  }

  .station-cover.has-image {
    width: min(270px, 100%);
    justify-self: center;
  }

  .station-cover.bundle-cover {
    width: min(300px, 100%);
  }

  .material-preview {
    padding: 14px;
  }

  .material-page-gallery {
    grid-template-columns: 1fr;
    width: min(360px, 100%);
  }

  .bundle-cover-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .bundle-cover-grid img:last-child {
    grid-column: auto;
    width: 100%;
  }
}

/* AI iskalnik nepremicnin */
.property-search-page {
  min-width: 280px;
  color: #17202a;
  background: #f5f4ef;
}

.property-search-page .site-header {
  z-index: 80;
}

.property-hero {
  position: relative;
  min-height: 68vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(4, 13, 25, 0.97) 0%, rgba(4, 18, 31, 0.9) 40%, rgba(4, 22, 35, 0.34) 76%, rgba(4, 13, 25, 0.18) 100%),
    url("datoteke/slike/ai-iskalnik-nepremicnin-ozadje.jpg") center 48% / cover no-repeat;
  isolation: isolate;
}

.property-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(5, 15, 27, 0.08) 55%, rgba(5, 15, 27, 0.92) 100%),
    repeating-linear-gradient(90deg, transparent 0 119px, rgba(255, 255, 255, 0.025) 120px);
  pointer-events: none;
}

.property-hero-inner {
  width: min(1320px, calc(100% - 64px));
  margin: 0 auto;
  padding: 150px 0 96px;
}

.property-hero .eyebrow {
  color: #f0d782;
}

.property-hero h1 {
  max-width: 760px;
  margin: 12px 0 20px;
  color: #fff;
  font-size: 4.8rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.property-hero-lead {
  max-width: 750px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.24rem;
  line-height: 1.65;
}

.property-hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin-top: 36px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  font-weight: 700;
}

.property-hero-signals span {
  position: relative;
  padding-left: 18px;
}

.property-hero-signals span::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 7px;
  height: 7px;
  background: #42b8ad;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(66, 184, 173, 0.76);
}

.property-search-section {
  position: relative;
  z-index: 2;
  width: min(1460px, calc(100% - 48px));
  margin: -46px auto 0;
  padding: 0 0 88px;
}

.property-search-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
  gap: 50px;
  align-items: end;
  padding: 38px 42px 32px;
  color: #fff;
  background: #0a1a2a;
  border: 1px solid rgba(216, 180, 63, 0.35);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.property-search-heading .section-kicker {
  margin: 0 0 8px;
  color: #f0d782;
}

.property-search-heading h2 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: 2.65rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.property-search-heading > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.02rem;
}

.property-app-shell {
  display: grid;
  grid-template-columns: minmax(370px, 0.74fr) minmax(0, 1.5fr);
  min-height: 760px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d9d6ca;
  border-top: 0;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 28px 70px rgba(10, 26, 42, 0.15);
}

.property-filter-panel {
  padding: 34px;
  background: #f7f5ef;
  border-right: 1px solid #dad8cf;
}

.property-filter-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 22px;
  border-bottom: 1px solid #d8d4c8;
}

.property-filter-topline span,
.property-filter-topline strong {
  display: block;
}

.property-filter-topline span {
  margin-bottom: 4px;
  color: #637084;
  font-size: 0.77rem;
  font-weight: 700;
  text-transform: uppercase;
}

.property-filter-topline strong {
  color: #102338;
  font-size: 1.02rem;
}

.saved-search-controls {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto;
  gap: 7px;
  width: min(270px, 100%);
}

.saved-search-controls select,
.saved-search-controls button {
  min-height: 38px;
  border: 1px solid #c9c5b8;
  border-radius: 5px;
}

.saved-search-controls select {
  min-width: 0;
  padding: 6px 30px 6px 10px;
  color: #253345;
  background: #fff;
  font-size: 0.82rem;
}

.saved-search-controls button {
  padding: 6px 12px;
  color: #fff;
  background: #214e51;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
}

.property-filter-form {
  display: grid;
  gap: 25px;
}

.property-filter-form fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.property-filter-form legend,
.property-filter-form label > span {
  display: block;
  margin-bottom: 8px;
  color: #344255;
  font-size: 0.88rem;
  font-weight: 700;
}

.property-segmented {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.property-segmented legend {
  grid-column: 1 / -1;
}

.property-segmented label {
  position: relative;
  min-width: 0;
}

.property-segmented input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.property-segmented label > span {
  display: grid;
  min-height: 48px;
  margin: 0;
  place-items: center;
  color: #445065;
  background: #fff;
  border: 1px solid #c9c5b8;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.property-segmented label:first-of-type > span {
  border-radius: 5px 0 0 5px;
}

.property-segmented label:last-of-type > span {
  border-left: 0;
  border-radius: 0 5px 5px 0;
}

.property-segmented input:checked + span {
  color: #fff;
  background: #123b45;
  border-color: #123b45;
}

.property-segmented input:focus-visible + span {
  outline: 3px solid rgba(216, 180, 63, 0.45);
  outline-offset: 2px;
}

.property-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
}

.property-field-grid label,
.property-description-field,
.property-access-panel label,
.property-checkout-form > label:not(.consent-check) {
  min-width: 0;
}

.property-field-grid .full-field {
  grid-column: 1 / -1;
}

.property-filter-form input,
.property-filter-form select,
.property-filter-form textarea,
.property-checkout-form input,
.property-checkout-form select {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  color: #17202a;
  background: #fff;
  border: 1px solid #c9c5b8;
  border-radius: 5px;
  outline: none;
  transition: border-color 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

.property-filter-form textarea {
  min-height: 112px;
  resize: vertical;
}

.property-filter-form input:focus,
.property-filter-form select:focus,
.property-filter-form textarea:focus,
.property-checkout-form input:focus,
.property-checkout-form select:focus {
  border-color: #2a7775;
  box-shadow: 0 0 0 3px rgba(42, 119, 117, 0.14);
}

.property-description-field small {
  display: block;
  margin-top: 8px;
  color: #697387;
  font-size: 0.78rem;
}

.property-features > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.property-features label {
  position: relative;
}

.property-features input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.property-features label > span {
  min-height: 39px;
  margin: 0;
  padding: 9px 10px 9px 31px;
  color: #4b5668;
  background: #fff;
  border: 1px solid #d7d2c5;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.78rem;
  line-height: 1.28;
}

.property-features label > span::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 10px;
  width: 12px;
  height: 12px;
  border: 1px solid #738093;
  border-radius: 2px;
}

.property-features input:checked + span {
  color: #123b45;
  background: #edf6f3;
  border-color: #72a6a0;
}

.property-features input:checked + span::before {
  background: #26746f;
  border-color: #26746f;
  box-shadow: inset 0 0 0 3px #edf6f3;
}

.property-access-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 12px;
  align-items: end;
  padding: 19px;
  background: #0d2134;
  border: 1px solid rgba(216, 180, 63, 0.42);
  border-radius: 6px;
}

.property-access-panel label > span {
  color: #f0d782;
}

.property-access-panel input {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.24);
}

.property-code-actions {
  display: flex;
  gap: 8px;
}

.property-code-toggle,
.property-code-status {
  min-height: 48px;
  padding: 9px 12px;
  color: #f0d782;
  background: transparent;
  border: 1px solid rgba(216, 180, 63, 0.45);
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
}

.property-code-status {
  color: #102033;
  background: #e6c650;
  border-color: #e6c650;
}

.property-code-toggle:disabled,
.property-code-status:disabled {
  opacity: 0.62;
  cursor: wait;
}

.property-credit-state {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.property-credit-state > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.property-credit-state small {
  color: #f0d782;
}

.property-credit-state[data-state="inactive"] {
  color: #f0d782;
}

.property-credit-state strong {
  color: #fff;
  font-size: 1.08rem;
}

.property-search-submit {
  min-height: 54px;
  width: 100%;
}

.property-form-status {
  min-height: 1.4em;
  margin: -10px 0 0;
  color: #4c5b70;
  font-size: 0.86rem;
}

.property-form-status[data-state="error"] {
  color: #a43e43;
}

.property-form-status[data-state="success"] {
  color: #26714d;
}

.property-form-status[data-state="info"] {
  color: #2f5f88;
}

.property-results-panel {
  min-width: 0;
  padding: 34px 38px 44px;
  background: #fff;
}

.property-results-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
  padding-bottom: 25px;
  border-bottom: 1px solid #dedbd3;
}

.property-results-header span {
  display: block;
  margin-bottom: 7px;
  color: #24706d;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.property-results-header h3 {
  max-width: 680px;
  margin: 0;
  color: #102033;
  font-size: 1.75rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.property-results-actions button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 8px 11px 8px 14px;
  color: #102033;
  background: #fff;
  border: 1px solid #c9c5b8;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 700;
}

.property-results-actions button:disabled {
  opacity: 0.48;
  cursor: not-allowed;
}

.property-results-actions strong {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: #fff;
  background: #214e51;
  border-radius: 50%;
  font-size: 0.78rem;
}

.property-empty-state {
  display: grid;
  align-content: center;
  min-height: 530px;
  max-width: 700px;
  padding: 55px 28px;
}

.property-empty-index {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  place-items: center;
  color: #0d2134;
  background: #e6c650;
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(216, 180, 63, 0.15);
  font-weight: 700;
}

.property-empty-state h4 {
  max-width: 590px;
  margin: 0 0 15px;
  color: #102033;
  font-size: 2.1rem;
  line-height: 1.15;
  letter-spacing: 0;
}

.property-empty-state p {
  max-width: 630px;
  margin: 0 0 22px;
  color: #657187;
  font-size: 1.03rem;
}

.property-empty-state ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.property-empty-state li {
  position: relative;
  padding-left: 22px;
  color: #344255;
  font-weight: 700;
}

.property-empty-state li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 8px;
  background: #42b8ad;
  border-radius: 50%;
}

.property-progress {
  min-height: 300px;
  padding: 70px 24px;
  text-align: center;
}

.property-progress-track {
  width: min(520px, 100%);
  height: 5px;
  overflow: hidden;
  margin: 0 auto 34px;
  background: #e3e1da;
  border-radius: 5px;
}

.property-progress-track i {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #24706d, #d8b43f);
  border-radius: inherit;
  transition: width 900ms var(--ease-premium);
}

.property-progress strong,
.property-progress span {
  display: block;
}

.property-progress strong {
  margin-bottom: 9px;
  color: #102033;
  font-size: 1.5rem;
}

.property-progress span {
  color: #677286;
}

.property-result-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 24px 0 6px;
  overflow: hidden;
  background: #d6d2c6;
  border: 1px solid #d6d2c6;
  border-radius: 6px;
}

.property-result-summary > div {
  min-width: 0;
  padding: 17px;
  background: #f7f5ef;
}

.property-result-summary strong,
.property-result-summary span {
  display: block;
}

.property-result-summary strong {
  overflow: hidden;
  color: #102033;
  font-size: 1.13rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.property-result-summary span {
  margin-top: 4px;
  color: #697387;
  font-size: 0.76rem;
}

.property-source-coverage {
  margin: 18px 0 8px;
  padding: 24px;
  color: #edf5f3;
  background:
    linear-gradient(112deg, rgba(36, 112, 109, 0.28), transparent 48%),
    #0d2134;
  border-top: 3px solid #d8b43f;
  border-radius: 6px;
}

.property-source-coverage header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.property-source-coverage header span {
  display: block;
  margin-bottom: 5px;
  color: #f0d782;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.property-source-coverage header p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.property-source-coverage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.property-source-coverage-grid article {
  min-width: 0;
  padding: 17px;
  background: rgba(255, 255, 255, 0.035);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.property-source-coverage-grid article > div:first-child {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 13px;
}

.property-source-coverage-grid article > div:first-child strong {
  color: #fff;
  font-size: 0.94rem;
}

.property-source-coverage-grid article > div:first-child span {
  flex: 0 0 auto;
  padding: 4px 7px;
  color: #bfe7df;
  background: rgba(66, 184, 173, 0.12);
  border: 1px solid rgba(66, 184, 173, 0.32);
  border-radius: 4px;
  font-size: 0.66rem;
  font-weight: 700;
}

.property-source-coverage-grid article[data-state="no_matches"] > div:first-child span {
  color: #f1d994;
  background: rgba(216, 180, 63, 0.11);
  border-color: rgba(216, 180, 63, 0.32);
}

.property-source-coverage-grid article[data-state="unavailable"] > div:first-child span {
  color: #f0b9a4;
  background: rgba(184, 112, 77, 0.13);
  border-color: rgba(184, 112, 77, 0.34);
}

.property-source-coverage-grid dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.property-source-coverage-grid dl > div {
  display: grid;
  grid-template-columns: minmax(110px, 0.38fr) minmax(0, 1fr);
  gap: 10px;
}

.property-source-coverage-grid dt {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.property-source-coverage-grid dd {
  min-width: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  overflow-wrap: anywhere;
}

.property-source-coverage-note {
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
}

.property-results-list {
  display: grid;
}

.property-result-card {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 24px;
  padding: 31px 4px;
  border-bottom: 1px solid #dfdcd3;
}

.property-result-score {
  position: relative;
  display: grid;
  align-content: center;
  width: 82px;
  height: 82px;
  padding: 10px;
  text-align: center;
  background:
    radial-gradient(circle at center, #fff 55%, transparent 57%),
    conic-gradient(#24706d calc(var(--score) * 1%), #e0ded6 0);
  border-radius: 50%;
}

.property-result-score strong,
.property-result-score span {
  position: relative;
  z-index: 1;
  display: block;
}

.property-result-score strong {
  color: #102033;
  font-size: 1.1rem;
  line-height: 1;
}

.property-result-score span {
  margin-top: 4px;
  color: #687387;
  font-size: 0.64rem;
}

.property-result-main {
  min-width: 0;
}

.property-result-overview {
  display: grid;
  grid-template-columns: minmax(190px, 0.64fr) minmax(0, 1.36fr);
  gap: 22px;
  align-items: start;
  margin-bottom: 20px;
}

.property-result-visual {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  color: inherit;
  background:
    linear-gradient(135deg, rgba(17, 51, 63, 0.98), rgba(31, 111, 106, 0.9)),
    #153d40;
  border: 1px solid rgba(36, 112, 109, 0.28);
  border-radius: 6px;
  box-shadow: 0 14px 30px rgba(15, 32, 49, 0.12);
}

.property-result-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.property-result-visual img {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms var(--ease-premium), opacity 240ms ease;
}

.property-result-visual:hover img {
  transform: scale(1.025);
}

.property-result-image-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  z-index: 1;
  align-content: center;
  justify-items: center;
  gap: 7px;
  padding: 20px;
  color: rgba(255, 255, 255, 0.74);
  text-align: center;
}

.property-result-image-fallback strong {
  color: #f0d782;
  font-family: "Book Antiqua", Palatino, Georgia, serif;
  font-size: 2.2rem;
}

.property-result-image-fallback small {
  font-size: 0.72rem;
  line-height: 1.35;
}

.property-result-visual.is-missing img {
  display: none;
}

.property-result-core {
  min-width: 0;
}

.property-result-source {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 8px;
  color: #26746f;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.property-result-source time {
  color: #7b8390;
  font-weight: 400;
  text-transform: none;
}

.property-result-main h4 {
  margin: 0 0 8px;
  color: #102033;
  font-size: 1.48rem;
  line-height: 1.22;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.property-result-location {
  margin: 0 0 12px;
  color: #657187;
}

.property-result-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 15px;
}

.property-result-meta span {
  padding: 5px 8px;
  color: #283a4d;
  background: #edf2ef;
  border: 1px solid #d5dfdb;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
}

.property-result-copy {
  margin: 0 0 18px;
  color: #4f5d70;
}

.property-result-alternates {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin: -2px 0 18px;
  padding: 11px 13px;
  background: #f4f7f5;
  border-left: 3px solid #d8b43f;
}

.property-result-alternates > strong {
  flex: 0 0 auto;
  color: #344255;
  font-size: 0.75rem;
}

.property-result-alternates > div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.property-result-alternates a {
  color: #0d5657;
  font-size: 0.75rem;
  font-weight: 700;
  text-underline-offset: 3px;
}

.property-result-contact {
  display: grid;
  gap: 11px;
  padding: 14px;
  background: #0d2134;
  border-left: 3px solid #e6c650;
  border-radius: 5px;
}

.property-result-contact > div:first-child > span,
.property-result-contact > div:first-child > strong,
.property-result-contact > div:first-child > small {
  display: block;
}

.property-result-contact > div:first-child > span {
  margin-bottom: 3px;
  color: #f0d782;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.property-result-contact > div:first-child > strong {
  color: #fff;
  font-size: 0.94rem;
  overflow-wrap: anywhere;
}

.property-result-contact > div:first-child > small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.58);
}

.property-result-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.property-result-contact-actions a {
  display: inline-flex;
  min-width: 0;
  flex-direction: column;
  padding: 8px 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  text-decoration: none;
}

.property-result-contact-actions a.property-contact-primary {
  color: #102033;
  background: #e6c650;
  border-color: #e6c650;
}

.property-result-contact-actions span {
  font-size: 0.68rem;
  opacity: 0.74;
}

.property-result-contact-actions strong {
  overflow: hidden;
  max-width: 230px;
  font-size: 0.78rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.property-result-insight {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.property-result-insight > div {
  padding: 15px;
  background: #f4f7f5;
  border-left: 3px solid #3a8b82;
}

.property-result-insight > .property-result-cautions {
  background: #fff7ed;
  border-left-color: #b8704d;
}

.property-result-insight strong {
  display: block;
  margin-bottom: 7px;
  color: #26384a;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.property-result-insight ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding-left: 17px;
  color: #566276;
  font-size: 0.84rem;
}

.property-result-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.property-result-footer > a {
  color: #0d5657;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(13, 86, 87, 0.35);
  text-underline-offset: 4px;
}

.property-result-footer label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4d5869;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
}

.property-result-footer input {
  width: 17px;
  height: 17px;
  accent-color: #24706d;
}

.property-load-more {
  display: grid;
  width: min(100%, 430px);
  min-height: 58px;
  margin: 28px auto 0;
  padding: 10px 18px;
  color: #fff;
  background: #0d5657;
  border: 1px solid #0d5657;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
}

/* Atribut hidden mora vedno skriti preklopljive elemente, tudi ce imajo display: grid. */
.property-load-more[hidden],
.property-result-summary[hidden],
.property-empty-state[hidden],
.property-progress[hidden],
.property-source-coverage[hidden],
.property-results-list[hidden] {
  display: none !important;
}

.property-load-more strong,
.property-load-more span {
  display: block;
}

.property-load-more strong {
  font-size: 0.95rem;
}

.property-load-more span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
}

.property-load-more:hover,
.property-load-more:focus-visible {
  background: #133f48;
  border-color: #d8b43f;
}

.property-source-note {
  max-width: 1050px;
  margin: 20px auto 0;
  color: #657187;
  text-align: center;
  font-size: 0.8rem;
}

.property-method {
  padding: 96px 0;
  color: #fff;
  background: #0a1a2a;
}

.property-method .section-heading {
  max-width: 820px;
}

.property-method .section-kicker {
  color: #f0d782;
}

.property-method h2 {
  color: #fff;
}

.property-method .section-heading > p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.property-method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.property-method-grid article {
  position: relative;
  min-height: 235px;
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.property-method-grid article:last-child {
  border-right: 0;
}

.property-method-grid article > span {
  display: block;
  margin-bottom: 35px;
  color: #42b8ad;
  font-size: 0.86rem;
  font-weight: 700;
}

.property-method-grid h3 {
  margin: 0 0 11px;
  color: #fff;
  font-size: 1.28rem;
}

.property-method-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.94rem;
}

.property-pricing {
  padding: 100px 0;
  background: #f5f4ef;
}

.property-pricing-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
  gap: 50px;
  align-items: end;
}

.property-pricing-heading h2 {
  margin: 6px 0 0;
  color: #102033;
  font-size: 3rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.property-pricing-heading > p {
  margin: 0;
  color: #617084;
}

.property-package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.property-package {
  position: relative;
  display: flex;
  min-height: 470px;
  flex-direction: column;
  padding: 32px;
  background: #fff;
  border: 1px solid #d7d3c7;
  border-top: 4px solid #2b7672;
  border-radius: 7px;
  box-shadow: 0 18px 45px rgba(15, 32, 49, 0.08);
}

.property-package-featured {
  color: #fff;
  background: #0b2031;
  border-color: #b99a36;
  border-top-color: #e4c553;
  box-shadow: 0 26px 60px rgba(8, 27, 43, 0.2);
}

.property-package-label {
  min-height: 1.6em;
  color: #5d6b7d;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.property-package-featured .property-package-label {
  color: rgba(255, 255, 255, 0.66);
}

.property-package-badge {
  position: absolute;
  top: 25px;
  right: 25px;
  padding: 6px 9px;
  color: #102033;
  background: #f0d782;
  border-radius: 4px;
  font-size: 0.74rem;
  font-weight: 700;
}

.property-package-count {
  margin: 24px 0 5px;
  color: #2a7775;
  font-size: 4.5rem;
  line-height: 1;
}

.property-package-featured .property-package-count {
  color: #f0d782;
}

.property-package h3 {
  margin: 0 0 13px;
  color: #102033;
  font-size: 1.55rem;
}

.property-package-featured h3 {
  color: #fff;
}

.property-package > p {
  min-height: 4.7em;
  margin: 0;
  color: #637084;
}

.property-package-validity {
  display: block;
  margin-top: 14px;
  color: #26746f;
  font-size: 0.78rem;
  font-weight: 700;
}

.property-package-featured .property-package-validity {
  color: #f0d782;
}

.property-package-featured > p {
  color: rgba(255, 255, 255, 0.68);
}

.property-package-price {
  display: flex;
  min-height: 84px;
  align-items: center;
  gap: 12px;
  margin: auto 0 22px;
  padding-top: 22px;
  border-top: 1px solid #dfdcd3;
}

.property-package-featured .property-package-price {
  border-top-color: rgba(255, 255, 255, 0.16);
}

.property-package-price strong,
.property-package-price span {
  display: block;
}

.property-package-price strong {
  color: #102033;
  font-size: 2rem;
}

.property-package-featured .property-package-price strong {
  color: #fff;
}

.property-package-price span {
  color: #687387;
  font-size: 0.76rem;
}

.property-package-featured .property-package-price span {
  color: rgba(255, 255, 255, 0.62);
}

.property-package .button {
  width: 100%;
}

.property-payment-note {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 44px;
  margin-top: 25px;
  padding: 28px 30px;
  color: #fff;
  background: #153d40;
  border-left: 5px solid #d8b43f;
  border-radius: 5px;
}

.property-payment-note strong {
  display: block;
  margin-bottom: 6px;
  color: #f0d782;
  font-size: 1.1rem;
}

.property-payment-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.property-crypto-methods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 17px;
}

.property-crypto-methods > span {
  position: relative;
  display: grid;
  min-width: 0;
  padding: 11px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 5px;
}

.property-crypto-methods > span::before {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 7px;
  height: 7px;
  background: #d8b43f;
  border-radius: 50%;
}

.property-crypto-methods > span[data-state="active"]::before {
  background: #53d3a2;
  box-shadow: 0 0 11px rgba(83, 211, 162, 0.68);
}

.property-crypto-methods b,
.property-crypto-methods span,
.property-crypto-methods small,
.property-crypto-methods em {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.property-crypto-methods b {
  color: #f0d782;
  font-size: 1rem;
}

.property-crypto-methods span {
  color: #fff;
  font-size: 0.74rem;
}

.property-crypto-methods small,
.property-crypto-methods em {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.65rem;
  font-style: normal;
}

.property-trust {
  padding: 72px 0;
  background: #fff;
  border-top: 1px solid #e0ddd5;
}

.property-trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 70px;
  align-items: start;
}

.property-trust h2 {
  margin: 8px 0 0;
  color: #102033;
  font-size: 2.35rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.property-trust-points {
  display: grid;
}

.property-trust-points p {
  position: relative;
  margin: 0;
  padding: 17px 0 17px 33px;
  color: #506075;
  border-bottom: 1px solid #dedbd3;
}

.property-trust-points p::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 4px;
  width: 10px;
  height: 10px;
  background: #d8b43f;
  border-radius: 50%;
}

.property-compare-dialog,
.property-checkout-dialog {
  width: min(1050px, calc(100% - 32px));
  max-height: calc(100vh - 40px);
  margin: auto;
  padding: 0;
  overflow: auto;
  color: #17202a;
  background: #fff;
  border: 1px solid rgba(216, 180, 63, 0.7);
  border-radius: 8px;
  box-shadow: 0 35px 110px rgba(0, 0, 0, 0.44);
}

.property-checkout-dialog {
  width: min(720px, calc(100% - 32px));
}

.property-compare-dialog::backdrop,
.property-checkout-dialog::backdrop {
  background: rgba(5, 14, 25, 0.78);
  backdrop-filter: blur(8px);
}

.property-dialog-header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  padding: 25px 28px;
  color: #fff;
  background: #0a1a2a;
  border-bottom: 1px solid rgba(216, 180, 63, 0.38);
}

.property-dialog-header span {
  display: block;
  margin-bottom: 4px;
  color: #f0d782;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.property-dialog-header h2 {
  margin: 0;
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: 0;
}

.property-dialog-header button {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  padding: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 1.5rem;
  line-height: 1;
}

.property-compare-content {
  padding: 28px;
}

.property-compare-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.property-compare-grid article {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 20px;
  background: #f7f5ef;
  border: 1px solid #d8d4c8;
  border-top: 4px solid #24706d;
  border-radius: 6px;
}

.property-compare-grid article > span {
  color: #24706d;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.property-compare-grid h3 {
  margin: 12px 0;
  color: #102033;
  font-size: 1.15rem;
  line-height: 1.25;
}

.property-compare-grid article > strong {
  color: #102033;
  font-size: 1.45rem;
}

.property-compare-grid p {
  color: #647084;
}

.property-compare-grid dl {
  display: grid;
  gap: 8px;
  margin: auto 0 18px;
}

.property-compare-grid dl div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 7px;
  border-bottom: 1px solid #dad6ca;
}

.property-compare-grid dd {
  margin: 0;
  font-weight: 700;
}

.property-compare-grid a {
  color: #0d5657;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.property-checkout-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 28px;
  color: #102033;
  background: #edf4f1;
  border-bottom: 1px solid #d5dfdb;
}

.property-checkout-summary strong {
  font-size: 1.15rem;
}

.property-checkout-summary span {
  font-size: 1.35rem;
  font-weight: 700;
}

.property-checkout-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 28px;
}

.property-checkout-form label > span {
  display: block;
  margin-bottom: 8px;
  color: #344255;
  font-size: 0.86rem;
  font-weight: 700;
}

.property-checkout-form .full-field,
.property-checkout-legal,
.property-checkout-form .button,
.property-checkout-form .property-form-status {
  grid-column: 1 / -1;
}

.property-checkout-form .consent-check {
  align-items: flex-start;
}

.property-checkout-form .consent-check input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: #24706d;
}

.property-checkout-form .consent-check span {
  margin: 0;
  font-weight: 400;
}

.property-checkout-legal {
  margin: 0;
  padding: 15px;
  color: #58677b;
  background: #f7f5ef;
  border-left: 3px solid #d8b43f;
  font-size: 0.82rem;
}

.property-checkout-access {
  padding: 34px;
  color: #fff;
  background: #0d2134;
  border-top: 1px solid rgba(216, 180, 63, 0.32);
}

.property-checkout-access[hidden] {
  display: none;
}

.property-checkout-access .section-kicker {
  color: #f0d782;
}

.property-checkout-access h3 {
  margin: 7px 0 10px;
  color: #fff;
  font-size: 1.8rem;
}

.property-checkout-access > p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.7);
}

.property-checkout-access code {
  display: block;
  margin: 22px 0;
  padding: 18px;
  overflow-wrap: anywhere;
  color: #f0d782;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(216, 180, 63, 0.42);
  border-radius: 5px;
  font-family: Consolas, "Courier New", monospace;
  font-size: 1.25rem;
  letter-spacing: 0;
  text-align: center;
}

.property-checkout-access > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.property-checkout-access .property-form-status {
  margin: 14px 0 0;
  color: #f0d782;
}

@media (prefers-reduced-motion: no-preference) {
  .property-hero-inner > * {
    animation: propertyHeroEnter 800ms var(--ease-premium) both;
  }

  .property-hero-inner > :nth-child(2) {
    animation-delay: 80ms;
  }

  .property-hero-inner > :nth-child(3) {
    animation-delay: 150ms;
  }

  .property-hero-inner > :nth-child(4) {
    animation-delay: 220ms;
  }

  .property-hero-inner > :nth-child(5) {
    animation-delay: 290ms;
  }

  .property-result-card {
    animation: propertyResultEnter 560ms var(--ease-premium) both;
  }

  .property-result-card:nth-child(2) {
    animation-delay: 65ms;
  }

  .property-result-card:nth-child(3) {
    animation-delay: 120ms;
  }

  .property-result-card:nth-child(4) {
    animation-delay: 175ms;
  }
}

@keyframes propertyHeroEnter {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes propertyResultEnter {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (hover: hover) and (pointer: fine) {
  .property-method-grid article::after {
    content: "";
    position: absolute;
    inset: auto 30px 0;
    height: 3px;
    background: #d8b43f;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 420ms var(--ease-premium);
  }

  .property-method-grid article:hover::after {
    transform: scaleX(1);
  }

  .property-package {
    transition: transform 280ms var(--ease-premium), box-shadow 280ms ease;
  }

  .property-package:hover {
    transform: translateY(-5px);
    box-shadow: 0 26px 58px rgba(15, 32, 49, 0.15);
  }

  .property-result-card {
    transition: background 220ms ease;
  }

  .property-result-card:hover {
    background: #fbfaf7;
  }
}

@media (max-width: 1120px) {
  .property-hero h1 {
    font-size: 4rem;
  }

  .property-app-shell {
    grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.2fr);
  }

  .property-filter-panel {
    padding: 28px;
  }

  .property-results-panel {
    padding: 30px;
  }

  .property-result-insight {
    grid-template-columns: 1fr;
  }

  .property-result-overview {
    grid-template-columns: 1fr;
  }

  .property-result-visual {
    width: min(100%, 460px);
  }

  .property-method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .property-method-grid article:nth-child(2) {
    border-right: 0;
  }

  .property-method-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }
}

@media (max-width: 920px) {
  .property-hero {
    min-height: 650px;
    background-position: 64% 48%;
  }

  .property-hero-inner {
    width: min(100% - 42px, 1320px);
    padding-top: 140px;
  }

  .property-hero h1 {
    max-width: 650px;
    font-size: 3.45rem;
  }

  .property-search-section {
    width: min(100% - 28px, 1460px);
  }

  .property-search-heading,
  .property-pricing-heading,
  .property-trust-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .property-app-shell {
    grid-template-columns: 1fr;
  }

  .property-filter-panel {
    border-right: 0;
    border-bottom: 1px solid #dad8cf;
  }

  .property-empty-state {
    min-height: 390px;
  }

  .property-package-grid {
    grid-template-columns: 1fr;
  }

  .property-package {
    min-height: 0;
  }

  .property-package > p {
    min-height: 0;
  }

  .property-package-price {
    margin-top: 30px;
  }

  .property-payment-note {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .property-compare-grid {
    grid-template-columns: 1fr;
  }

  .property-compare-grid article {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  .property-hero {
    min-height: 610px;
    background-position: 68% center;
  }

  .property-hero::before {
    background: linear-gradient(180deg, rgba(5, 15, 27, 0.42) 0%, rgba(5, 15, 27, 0.88) 100%);
  }

  .property-hero-inner {
    width: min(100% - 30px, 1320px);
    padding: 125px 0 72px;
  }

  .property-hero h1 {
    font-size: 2.7rem;
    line-height: 1.02;
  }

  .property-hero-lead {
    font-size: 1.03rem;
  }

  .property-hero-signals {
    display: grid;
    gap: 8px;
  }

  .property-search-section {
    width: 100%;
    margin-top: 0;
  }

  .property-search-heading {
    padding: 30px 20px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .property-search-heading h2,
  .property-pricing-heading h2 {
    font-size: 2.15rem;
  }

  .property-app-shell {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .property-filter-panel,
  .property-results-panel {
    padding: 24px 18px;
  }

  .property-filter-topline {
    display: grid;
  }

  .saved-search-controls {
    width: 100%;
  }

  .property-field-grid,
  .property-features > div,
  .property-result-summary,
  .property-checkout-form {
    grid-template-columns: 1fr;
  }

  .property-access-panel {
    grid-template-columns: 1fr;
  }

  .property-code-toggle {
    width: 100%;
  }

  .property-code-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .property-code-status {
    width: 100%;
  }

  .property-credit-state {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .property-results-header {
    display: grid;
  }

  .property-empty-state {
    min-height: 430px;
    padding: 48px 4px;
  }

  .property-empty-state h4 {
    font-size: 1.75rem;
  }

  .property-result-summary {
    background: transparent;
    border: 0;
  }

  .property-result-summary > div {
    border: 1px solid #d6d2c6;
    border-radius: 5px;
  }

  .property-source-coverage {
    padding: 20px 16px;
  }

  .property-source-coverage-grid {
    grid-template-columns: 1fr;
  }

  .property-source-coverage-grid article > div:first-child,
  .property-result-alternates {
    align-items: flex-start;
    flex-direction: column;
  }

  .property-source-coverage-grid dl > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .property-result-card {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .property-result-score {
    width: 72px;
    height: 72px;
  }

  .property-result-source,
  .property-result-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .property-result-contact-actions a {
    width: 100%;
  }

  .property-method,
  .property-pricing {
    padding: 72px 0;
  }

  .property-method-grid {
    grid-template-columns: 1fr;
  }

  .property-method-grid article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .property-method-grid article:last-child {
    border-bottom: 0;
  }

  .property-package {
    padding: 26px;
  }

  .property-package-count {
    font-size: 3.8rem;
  }

  .property-payment-note {
    padding: 24px 20px;
  }

  .property-crypto-methods {
    grid-template-columns: 1fr;
  }

  .property-trust {
    padding: 60px 0;
  }

  .property-trust h2 {
    font-size: 2rem;
  }

  .property-dialog-header,
  .property-compare-content,
  .property-checkout-form {
    padding: 20px;
  }

  .property-checkout-summary {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 20px;
  }

  .property-checkout-access {
    padding: 24px 20px;
  }

  .property-checkout-access > div {
    display: grid;
  }

  .property-checkout-form .full-field,
  .property-checkout-legal,
  .property-checkout-form .button,
  .property-checkout-form .property-form-status {
    grid-column: 1;
  }
}

@media (max-width: 380px) {
  .property-hero h1 {
    font-size: 2.35rem;
  }

  .property-search-heading h2,
  .property-pricing-heading h2 {
    font-size: 1.85rem;
  }

  .saved-search-controls {
    grid-template-columns: 1fr;
  }

  .property-package-badge {
    position: static;
    align-self: flex-start;
    margin-bottom: 12px;
  }
}

@media (max-width: 350px) {
  .site-header .brand-copy {
    display: none;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .section h2 {
    font-size: 1.9rem;
  }

  .investment-layout > *,
  .investment-quiz > *,
  .contact-layout > * {
    min-width: 0;
  }

  .service-strip a {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  [lang="ru"] .privacy-page .detail-hero h1 {
    font-size: 1.65rem;
  }

  [lang="ru"] .detail-page .detail-hero h1 {
    font-size: 1.72rem;
  }
}

/* Protected knowledge archive */
.secret-vault-body {
  --vault-obsidian: #03070d;
  --vault-midnight: #071722;
  --vault-jade: #4ea89e;
  --vault-cyan: #86d2c7;
  --vault-wine: #73384f;
  --vault-parchment: #f2e6d1;
  --gold: #d7b85d;
  --gold-soft: #f0d991;
  min-height: 100vh;
  overflow-x: hidden;
  color: rgba(255, 255, 255, 0.86);
  background: var(--vault-obsidian);
}

.vault-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 12px clamp(18px, 4vw, 58px);
  background: linear-gradient(90deg, rgba(3, 7, 13, 0.98), rgba(7, 30, 32, 0.97), rgba(35, 18, 29, 0.98));
  border-bottom: 1px solid rgba(215, 184, 93, 0.34);
  box-shadow: 0 14px 46px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(10px) saturate(1.16);
  transform: translateZ(0);
}

.vault-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, var(--gold), var(--vault-cyan), var(--vault-wine), transparent);
  opacity: 0.66;
}

.vault-scroll-progress {
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  z-index: 2;
  height: 2px;
  pointer-events: none;
  background: linear-gradient(90deg, var(--gold), var(--vault-cyan), var(--vault-wine));
  box-shadow: 0 0 18px rgba(134, 210, 199, 0.52);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.vault-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vault-session-mark {
  padding: 7px 11px;
  color: #d7e4d1;
  border-left: 2px solid var(--moss);
  font-size: 0.82rem;
  font-weight: 700;
}

.vault-logout,
.vault-request-close {
  min-height: 38px;
  padding: 0 14px;
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(216, 180, 63, 0.4);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease, transform 180ms var(--ease-premium);
}

.vault-logout:hover,
.vault-request-close:hover {
  color: var(--white);
  background: rgba(216, 180, 63, 0.13);
  transform: translateY(-1px);
}

.vault-hero {
  --vault-shift-x: 0px;
  --vault-shift-y: 0px;
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: clamp(620px, 80svh, 790px);
  overflow: hidden;
  align-items: center;
  padding: 122px 0 64px;
  background:
    linear-gradient(90deg, rgba(2, 6, 12, 0.99) 0%, rgba(5, 22, 31, 0.95) 45%, rgba(17, 50, 45, 0.78) 75%, rgba(67, 27, 45, 0.68) 100%),
    url("datoteke/slike/ozadje-glavne-strani.jpg") center / cover no-repeat;
  border-bottom: 1px solid rgba(215, 184, 93, 0.42);
}

.vault-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, transparent 0 78px, rgba(215, 184, 93, 0.034) 79px 80px),
    repeating-linear-gradient(0deg, transparent 0 78px, rgba(134, 210, 199, 0.026) 79px 80px),
    linear-gradient(125deg, transparent 0 43%, rgba(215, 184, 93, 0.085) 47%, transparent 57%),
    linear-gradient(180deg, rgba(3, 7, 13, 0.05), rgba(3, 7, 13, 0.34));
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.32));
}

.vault-hero::after {
  content: "";
  position: absolute;
  right: clamp(26px, 8vw, 120px);
  bottom: -210px;
  width: 520px;
  height: 520px;
  pointer-events: none;
  border: 1px solid rgba(215, 184, 93, 0.2);
  border-radius: 50%;
  box-shadow:
    0 0 0 42px rgba(78, 168, 158, 0.04),
    0 0 0 92px rgba(115, 56, 79, 0.03);
  will-change: transform;
}

.vault-signal-field,
.vault-tech-frame {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.vault-signal-field {
  opacity: 0.72;
  transform: translate3d(var(--vault-shift-x), var(--vault-shift-y), 0);
  transition: transform 420ms var(--ease-premium);
  will-change: transform;
}

.vault-signal-field::after {
  content: "";
  position: absolute;
  top: -16%;
  right: 0;
  left: 0;
  height: 92px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(134, 210, 199, 0.025) 36%,
    rgba(134, 210, 199, 0.14) 50%,
    rgba(215, 184, 93, 0.04) 54%,
    transparent
  );
  mix-blend-mode: screen;
  will-change: transform;
}

.vault-signal-line {
  position: absolute;
  display: block;
  opacity: 0.44;
}

.vault-signal-line.line-one,
.vault-signal-line.line-three {
  right: 4%;
  left: 21%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(134, 210, 199, 0.72), rgba(215, 184, 93, 0.3), transparent);
}

.vault-signal-line.line-one {
  top: 26%;
}

.vault-signal-line.line-three {
  bottom: 18%;
}

.vault-signal-line.line-two,
.vault-signal-line.line-four {
  top: 14%;
  bottom: 10%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(215, 184, 93, 0.55), rgba(115, 56, 79, 0.52), transparent);
}

.vault-signal-line.line-two {
  right: 30%;
}

.vault-signal-line.line-four {
  right: 12%;
}

.vault-geometry-core {
  position: absolute;
  top: 50%;
  right: clamp(54px, 8vw, 130px);
  z-index: 0;
  width: clamp(320px, 38vw, 540px);
  aspect-ratio: 1;
  pointer-events: none;
  opacity: 0.48;
  filter: drop-shadow(0 0 22px rgba(78, 168, 158, 0.08));
  transform: translate3d(0, -50%, 0);
}

.vault-geometry-core > span {
  position: absolute;
  display: block;
  will-change: transform;
}

.geometry-orbit {
  inset: 2%;
  border: 1px solid rgba(134, 210, 199, 0.38);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 18px rgba(78, 168, 158, 0.018),
    0 0 0 10px rgba(215, 184, 93, 0.025),
    0 0 36px rgba(78, 168, 158, 0.07);
}

.geometry-orbit::before,
.geometry-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.geometry-orbit::before {
  inset: 7%;
  border: 1px solid rgba(215, 184, 93, 0.3);
  box-shadow: inset 0 0 0 1px rgba(115, 56, 79, 0.12);
}

.geometry-orbit::after {
  inset: 1%;
  background: repeating-conic-gradient(from 0deg, rgba(215, 184, 93, 0.58) 0 0.8deg, transparent 0.8deg 40deg);
  -webkit-mask: radial-gradient(circle, transparent 0 91%, #000 91.3% 94%, transparent 94.3%);
  mask: radial-gradient(circle, transparent 0 91%, #000 91.3% 94%, transparent 94.3%);
}

.geometry-orbit .orbit-node {
  position: absolute;
  display: block;
  width: 9px;
  height: 9px;
  background: var(--vault-obsidian);
  border: 1px solid var(--gold);
  box-shadow: 0 0 12px rgba(215, 184, 93, 0.3);
  transform: rotate(45deg);
}

.geometry-orbit .node-one {
  top: -5px;
  left: calc(50% - 5px);
}

.geometry-orbit .node-two {
  right: 17%;
  bottom: 7%;
}

.geometry-orbit .node-three {
  bottom: 7%;
  left: 17%;
}

.geometry-compass {
  inset: 15%;
  border: 1px solid rgba(134, 210, 199, 0.34);
  box-shadow: 0 0 26px rgba(134, 210, 199, 0.04);
  transform: rotate(45deg);
}

.geometry-compass::before,
.geometry-compass::after,
.geometry-axis::before,
.geometry-axis::after {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(215, 184, 93, 0.46), transparent);
}

.geometry-compass::before {
  top: 50%;
  right: -18%;
  left: -18%;
  height: 1px;
}

.geometry-compass::after {
  top: -18%;
  bottom: -18%;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(134, 210, 199, 0.42), transparent);
}

.geometry-hexagram {
  inset: 25%;
}

.geometry-triangle {
  position: absolute;
  inset: 0;
  display: block;
  background: linear-gradient(135deg, rgba(215, 184, 93, 0.72), rgba(134, 210, 199, 0.58), rgba(115, 56, 79, 0.72));
  clip-path: polygon(50% 1%, 99% 88%, 1% 88%);
}

.geometry-triangle::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: rgba(6, 20, 27, 0.92);
  clip-path: polygon(50% 1%, 99% 88%, 1% 88%);
}

.geometry-triangle.triangle-down {
  transform: rotate(120deg);
}

.geometry-triangle.triangle-third {
  transform: rotate(240deg);
}

.geometry-axis {
  inset: 18%;
}

.geometry-axis::before {
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
}

.geometry-axis::after {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(115, 56, 79, 0.58), transparent);
}

.geometry-center {
  top: 50%;
  left: 50%;
  width: 76px;
  height: 76px;
  background: rgba(3, 7, 13, 0.82);
  border: 1px solid rgba(215, 184, 93, 0.78);
  box-shadow:
    inset 0 0 0 8px rgba(215, 184, 93, 0.035),
    0 0 30px rgba(134, 210, 199, 0.12);
  transform: translate(-50%, -50%) rotate(45deg);
}

.geometry-center::before,
.geometry-center::after,
.geometry-center i {
  content: "";
  position: absolute;
  display: block;
}

.geometry-center::before {
  inset: 12px;
  border: 1px solid rgba(134, 210, 199, 0.58);
}

.geometry-center::after {
  top: calc(50% - 4px);
  left: calc(50% - 4px);
  width: 8px;
  height: 8px;
  background: var(--gold-soft);
  box-shadow: 0 0 18px rgba(240, 217, 145, 0.54);
}

.geometry-center i {
  inset: 25px;
  border: 1px solid rgba(115, 56, 79, 0.9);
  transform: rotate(45deg);
}

.vault-frequency-mark {
  position: absolute;
  top: clamp(108px, 14vw, 168px);
  right: clamp(30px, 5vw, 76px);
  z-index: 2;
  display: flex;
  gap: 6px;
  pointer-events: none;
  opacity: 0.76;
}

.vault-frequency-mark span {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  color: rgba(255, 244, 210, 0.88);
  background: rgba(3, 7, 13, 0.68);
  border: 1px solid rgba(134, 210, 199, 0.42);
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
}

.vault-frequency-mark span:nth-child(2) {
  color: var(--gold-soft);
  border-color: rgba(215, 184, 93, 0.58);
}

.vault-frequency-mark span:nth-child(3) {
  border-color: rgba(115, 56, 79, 0.72);
}

.vault-tech-frame {
  inset: clamp(92px, 10vw, 138px) clamp(18px, 4vw, 58px) clamp(28px, 5vw, 66px);
  border: 1px solid rgba(134, 210, 199, 0.1);
}

.vault-tech-frame span {
  position: absolute;
  width: 38px;
  height: 38px;
  border-color: rgba(215, 184, 93, 0.58);
}

.vault-tech-frame .corner-top-left {
  top: -1px;
  left: -1px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.vault-tech-frame .corner-top-right {
  top: -1px;
  right: -1px;
  border-top: 1px solid;
  border-right: 1px solid;
}

.vault-tech-frame .corner-bottom-left {
  bottom: -1px;
  left: -1px;
  border-bottom: 1px solid;
  border-left: 1px solid;
}

.vault-tech-frame .corner-bottom-right {
  right: -1px;
  bottom: -1px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.vault-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.vault-hero h1 {
  max-width: 990px;
  margin: 0;
  color: var(--white);
  font-size: clamp(3.1rem, 8vw, 7rem);
  line-height: 0.98;
  text-shadow: 0 12px 42px rgba(0, 0, 0, 0.42);
}

.vault-lead {
  max-width: 780px;
  margin: 24px 0 0;
  color: rgba(246, 242, 232, 0.8);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.72;
}

.vault-seal {
  position: absolute;
  right: 2%;
  bottom: -20px;
  display: grid;
  width: 164px;
  height: 164px;
  place-items: center;
  align-content: center;
  color: var(--gold-soft);
  background: rgba(4, 15, 24, 0.76);
  border: 1px solid rgba(216, 180, 63, 0.5);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 8px rgba(216, 180, 63, 0.05),
    0 18px 55px rgba(0, 0, 0, 0.3),
    0 0 42px rgba(120, 201, 191, 0.08);
  backdrop-filter: blur(8px);
  text-align: center;
}

.vault-seal::before,
.vault-seal::after {
  content: "";
  position: absolute;
  width: 116px;
  height: 1px;
  background: rgba(216, 180, 63, 0.26);
}

.vault-seal::before {
  transform: rotate(45deg);
}

.vault-seal::after {
  transform: rotate(-45deg);
}

.vault-seal span,
.vault-seal strong {
  position: relative;
  z-index: 1;
}

.vault-seal span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: #071120;
  background: var(--gold);
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 700;
}

.vault-seal strong {
  max-width: 110px;
  margin-top: 7px;
  font-size: 0.82rem;
  line-height: 1.15;
}

.vault-catalog {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(70px, 9vw, 116px) 0;
  background:
    repeating-linear-gradient(0deg, rgba(215, 184, 93, 0.022) 0 1px, transparent 1px 15px),
    repeating-linear-gradient(90deg, transparent 0 119px, rgba(134, 210, 199, 0.018) 120px),
    linear-gradient(145deg, #050d15, #0a2525 57%, #251723 100%);
}

.vault-catalog::before {
  content: "";
  position: absolute;
  inset: 16px;
  pointer-events: none;
  border: 1px solid rgba(215, 184, 93, 0.1);
}

.vault-catalog::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -18%;
  z-index: 0;
  width: 14%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(134, 210, 199, 0.07), transparent);
  transform: skewX(-12deg) translate3d(0, 0, 0);
  will-change: transform;
}

.vault-section-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.vault-section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.vault-section-heading h2,
.vault-principles h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  line-height: 1.02;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.vault-section-heading > p:last-child,
.vault-principles p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
}

.vault-material {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) minmax(210px, 260px);
  gap: clamp(20px, 4vw, 48px);
  align-items: start;
  padding: clamp(24px, 4vw, 44px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.065), rgba(78, 168, 158, 0.028) 52%, rgba(115, 56, 79, 0.1)),
    rgba(3, 12, 20, 0.84);
  border: 1px solid rgba(134, 210, 199, 0.3);
  border-top: 5px solid var(--gold);
  border-radius: 8px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.34),
    inset 4px 0 0 rgba(115, 56, 79, 0.22);
  transition:
    transform 420ms var(--ease-premium),
    border-color 320ms ease,
    box-shadow 420ms var(--ease-premium);
  transform: translateZ(0);
}

.vault-material::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, transparent 0 63px, rgba(134, 210, 199, 0.016) 64px),
    linear-gradient(90deg, rgba(134, 210, 199, 0.08), transparent 18%),
    linear-gradient(135deg, transparent 0 72%, rgba(115, 56, 79, 0.12) 100%);
}

.vault-material::after {
  content: "";
  position: absolute;
  inset: 8px;
  pointer-events: none;
  border: 1px solid rgba(255, 244, 210, 0.07);
  border-radius: 4px;
}

.vault-material-trace {
  position: absolute;
  top: 0;
  left: -34%;
  z-index: 3;
  width: 30%;
  height: 2px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, var(--vault-cyan), var(--gold), transparent);
  box-shadow: 0 0 16px rgba(134, 210, 199, 0.44);
  will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
  .vault-material:hover {
    border-color: rgba(134, 210, 199, 0.56);
    box-shadow: 0 38px 96px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(215, 184, 93, 0.12);
    transform: translate3d(0, -4px, 0);
  }
}

.vault-material-index {
  display: grid;
  width: 72px;
  aspect-ratio: 1;
  place-items: center;
  color: rgba(240, 217, 145, 0.86);
  background: linear-gradient(135deg, rgba(78, 168, 158, 0.12), rgba(115, 56, 79, 0.12));
  border: 1px solid rgba(215, 184, 93, 0.42);
  border-radius: 2px;
  font-size: 2.35rem;
  line-height: 1;
  text-shadow: 0 0 28px rgba(215, 184, 93, 0.18);
  box-shadow: inset 0 0 0 7px rgba(215, 184, 93, 0.025);
}

.vault-material-copy,
.vault-material-action {
  position: relative;
  z-index: 1;
}

.vault-material-action .button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.vault-material-action .button::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0 36%, rgba(255, 255, 255, 0.28) 48%, transparent 60%);
  transform: translate3d(-120%, 0, 0);
  will-change: transform;
}

.vault-material-copy h2 {
  max-width: 720px;
  margin: 0;
  color: var(--white);
  font-size: clamp(1.9rem, 4vw, 3.35rem);
  line-height: 1.06;
}

.vault-material-copy > p:not(.small-label):not(.vault-legal-note) {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.72;
}

.vault-material-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.vault-material-tags span {
  padding: 7px 10px;
  color: #dce7d7;
  background: rgba(78, 168, 158, 0.12);
  border: 1px solid rgba(134, 210, 199, 0.28);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.vault-legal-note {
  margin: 22px 0 0;
  padding: 13px 15px;
  color: rgba(255, 255, 255, 0.66);
  background: rgba(215, 184, 93, 0.06);
  border-left: 2px solid var(--gold);
  font-size: 0.86rem;
  line-height: 1.6;
}

.vault-material-action {
  display: grid;
  gap: 18px;
  align-self: center;
}

.vault-material-action > span {
  color: var(--gold-soft);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

.vault-request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  margin-top: 28px;
  padding: clamp(24px, 4vw, 42px);
  color: var(--ink);
  background:
    repeating-linear-gradient(0deg, rgba(105, 66, 30, 0.025) 0 1px, transparent 1px 13px),
    #fff8ec;
  border: 1px solid rgba(216, 180, 63, 0.48);
  border-radius: 8px;
  box-shadow: 0 26px 68px rgba(0, 0, 0, 0.24);
  scroll-margin-top: 100px;
  transform-origin: top center;
}

.vault-request-form[hidden] {
  display: none;
}

.vault-request-heading,
.vault-request-message,
.vault-consent,
.vault-request-form > .button,
.vault-request-form > .form-status {
  grid-column: 1 / -1;
}

.vault-request-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 5px;
}

.vault-request-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.05;
}

.vault-request-close {
  color: var(--navy);
  background: rgba(7, 17, 32, 0.04);
  border-color: rgba(7, 17, 32, 0.22);
}

.vault-request-form label:not(.vault-consent) {
  display: grid;
  gap: 7px;
  color: #374253;
  font-size: 0.9rem;
  font-weight: 700;
}

.vault-request-form input[type="text"],
.vault-request-form input[type="email"],
.vault-request-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  color: var(--ink);
  background: #fffdfa;
  border: 1px solid #d9c9a8;
  border-radius: 6px;
  resize: vertical;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.vault-request-form .vault-product-field {
  min-height: 72px;
  resize: none;
}

.vault-request-form input:focus,
.vault-request-form textarea:focus {
  outline: 0;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(216, 180, 63, 0.16);
}

.vault-consent {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 12px 14px;
  color: #536174;
  background: rgba(216, 180, 63, 0.06);
  border: 1px solid rgba(216, 180, 63, 0.22);
  border-radius: 6px;
  font-size: 0.84rem;
  line-height: 1.5;
}

.vault-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
}

.vault-consent a {
  display: inline-block;
  margin-left: 5px;
  color: #6f5711;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.vault-request-form button:disabled,
.vault-logout:disabled {
  cursor: wait;
  opacity: 0.58;
  transform: none;
}

.vault-principles {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(58px, 8vw, 96px) 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 94px, rgba(215, 184, 93, 0.018) 95px),
    linear-gradient(115deg, rgba(78, 168, 158, 0.14), transparent 38%, rgba(115, 56, 79, 0.2)),
    #07121b;
  border-top: 1px solid rgba(215, 184, 93, 0.56);
}

.vault-principles::before {
  content: "";
  position: absolute;
  top: -160px;
  right: -110px;
  width: 390px;
  height: 390px;
  pointer-events: none;
  border: 1px solid rgba(134, 210, 199, 0.08);
  transform: rotate(45deg);
  box-shadow:
    0 0 0 52px rgba(215, 184, 93, 0.018),
    0 0 0 104px rgba(115, 56, 79, 0.018);
}

.vault-principles-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: start;
}

.vault-principles h2 {
  color: var(--vault-parchment);
}

.vault-principles p {
  margin: 0;
  color: rgba(242, 230, 209, 0.7);
  line-height: 1.75;
}

.vault-footer {
  border-top: 1px solid rgba(216, 180, 63, 0.24);
}

.vault-motion-ready .vault-reveal {
  opacity: 0;
  filter: blur(5px);
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 760ms var(--ease-premium),
    filter 760ms var(--ease-premium),
    transform 760ms var(--ease-premium);
  will-change: opacity, filter, transform;
}

.vault-motion-ready .vault-reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

.vault-motion-ready .vault-delay-1 {
  transition-delay: 40ms;
}

.vault-motion-ready .vault-delay-2 {
  transition-delay: 120ms;
}

.vault-motion-ready .vault-delay-3 {
  transition-delay: 210ms;
}

.vault-motion-ready .vault-delay-4 {
  transition-delay: 300ms;
}

@keyframes vaultRingOrbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes vaultScanPass {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 0;
  }

  12% {
    opacity: 0.72;
  }

  74%,
  100% {
    transform: translate3d(0, 850%, 0);
    opacity: 0;
  }
}

@keyframes vaultGeometryOrbit {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes vaultGeometryCounter {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

@keyframes vaultGeometryCompass {
  from {
    transform: rotate(45deg);
  }

  to {
    transform: rotate(405deg);
  }
}

@keyframes vaultGeometryPulse {
  0%,
  100% {
    box-shadow:
      inset 0 0 0 8px rgba(215, 184, 93, 0.035),
      0 0 24px rgba(134, 210, 199, 0.08);
    transform: translate(-50%, -50%) rotate(45deg) scale(1);
  }

  50% {
    box-shadow:
      inset 0 0 0 8px rgba(215, 184, 93, 0.06),
      0 0 38px rgba(134, 210, 199, 0.18);
    transform: translate(-50%, -50%) rotate(45deg) scale(1.035);
  }
}

@keyframes vaultFrequencySignal {
  0%,
  100% {
    border-color: rgba(134, 210, 199, 0.3);
    box-shadow: 0 0 0 rgba(134, 210, 199, 0);
    transform: translate3d(0, 0, 0);
  }

  50% {
    border-color: rgba(215, 184, 93, 0.72);
    box-shadow: 0 0 18px rgba(134, 210, 199, 0.16);
    transform: translate3d(0, -2px, 0);
  }
}

@keyframes vaultHorizontalSignal {
  0%,
  100% {
    transform: translate3d(-2.5%, 0, 0);
    opacity: 0.22;
  }

  50% {
    transform: translate3d(2.5%, 0, 0);
    opacity: 0.64;
  }
}

@keyframes vaultVerticalSignal {
  0%,
  100% {
    transform: translate3d(0, -2%, 0);
    opacity: 0.2;
  }

  50% {
    transform: translate3d(0, 2%, 0);
    opacity: 0.54;
  }
}

@keyframes vaultCatalogSweep {
  0%,
  12% {
    transform: skewX(-12deg) translate3d(0, 0, 0);
    opacity: 0;
  }

  24% {
    opacity: 1;
  }

  54%,
  100% {
    transform: skewX(-12deg) translate3d(900%, 0, 0);
    opacity: 0;
  }
}

@keyframes vaultMaterialTrace {
  0%,
  16% {
    transform: translate3d(0, 0, 0);
    opacity: 0;
  }

  28% {
    opacity: 1;
  }

  62%,
  100% {
    transform: translate3d(470%, 0, 0);
    opacity: 0;
  }
}

@keyframes vaultButtonSweep {
  from {
    transform: translate3d(-120%, 0, 0);
  }

  to {
    transform: translate3d(120%, 0, 0);
  }
}

@keyframes vaultFormReveal {
  from {
    opacity: 0;
    transform: translate3d(0, -12px, 0) scale(0.99);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes vaultSealCrossOne {
  to {
    transform: rotate(405deg);
  }
}

@keyframes vaultSealCrossTwo {
  to {
    transform: rotate(315deg);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .vault-hero::after {
    animation: vaultRingOrbit 38s linear infinite;
    animation-play-state: paused;
  }

  .vault-signal-field::after {
    animation: vaultScanPass 8.5s linear infinite;
    animation-play-state: paused;
  }

  .vault-geometry-core .geometry-orbit {
    animation: vaultGeometryOrbit 56s linear infinite;
    animation-play-state: paused;
  }

  .vault-geometry-core .geometry-compass {
    animation: vaultGeometryCompass 44s linear infinite;
    animation-play-state: paused;
  }

  .vault-geometry-core .geometry-hexagram {
    animation: vaultGeometryCounter 34s linear infinite;
    animation-play-state: paused;
  }

  .vault-geometry-core .geometry-center {
    animation: vaultGeometryPulse 5.4s ease-in-out infinite;
    animation-play-state: paused;
  }

  .vault-frequency-mark span {
    animation: vaultFrequencySignal 4.8s ease-in-out infinite;
    animation-play-state: paused;
  }

  .vault-frequency-mark span:nth-child(2) {
    animation-delay: -1.6s;
  }

  .vault-frequency-mark span:nth-child(3) {
    animation-delay: -3.2s;
  }

  .vault-signal-line.line-one,
  .vault-signal-line.line-three {
    animation: vaultHorizontalSignal 9s ease-in-out infinite;
    animation-play-state: paused;
  }

  .vault-signal-line.line-three {
    animation-delay: -4.5s;
  }

  .vault-signal-line.line-two,
  .vault-signal-line.line-four {
    animation: vaultVerticalSignal 11s ease-in-out infinite;
    animation-play-state: paused;
  }

  .vault-signal-line.line-four {
    animation-delay: -5.5s;
  }

  .vault-seal::before {
    animation: vaultSealCrossOne 24s linear infinite;
    animation-play-state: paused;
  }

  .vault-seal::after {
    animation: vaultSealCrossTwo 24s linear infinite;
    animation-play-state: paused;
  }

  .vault-catalog::after {
    animation: vaultCatalogSweep 14s ease-in-out infinite;
    animation-play-state: paused;
  }

  .vault-material-trace {
    animation: vaultMaterialTrace 7.5s ease-in-out infinite;
    animation-play-state: paused;
  }

  .vault-hero.is-motion-active::after,
  .vault-hero.is-motion-active .vault-signal-field::after,
  .vault-hero.is-motion-active .vault-geometry-core .geometry-orbit,
  .vault-hero.is-motion-active .vault-geometry-core .geometry-compass,
  .vault-hero.is-motion-active .vault-geometry-core .geometry-hexagram,
  .vault-hero.is-motion-active .vault-geometry-core .geometry-center,
  .vault-hero.is-motion-active .vault-frequency-mark span,
  .vault-hero.is-motion-active .vault-signal-line,
  .vault-hero.is-motion-active .vault-seal::before,
  .vault-hero.is-motion-active .vault-seal::after,
  .vault-catalog.is-motion-active::after,
  .vault-material.is-motion-active .vault-material-trace {
    animation-play-state: running;
  }

  .vault-material-action .button:hover::after,
  .vault-material-action .button:focus-visible::after {
    animation: vaultButtonSweep 900ms var(--ease-premium) both;
  }

  .vault-request-form:not([hidden]) {
    animation: vaultFormReveal 520ms var(--ease-premium) both;
  }
}

@media (max-width: 920px) {
  .vault-material {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .vault-material-action {
    grid-column: 2;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .vault-material-action > span {
    text-align: left;
  }

  .vault-seal {
    right: 0;
  }
}

@media (max-width: 720px) {
  .vault-session-mark {
    display: none;
  }

  .vault-frequency-mark {
    display: none;
  }

  .vault-geometry-core {
    right: -168px;
    width: 390px;
    opacity: 0.2;
  }

  .vault-hero {
    min-height: 690px;
    padding-top: 132px;
  }

  .vault-hero h1 {
    font-size: clamp(3.1rem, 15vw, 5.4rem);
  }

  .vault-seal {
    position: relative;
    right: auto;
    bottom: auto;
    width: 136px;
    height: 136px;
    margin-top: 32px;
  }

  .vault-material,
  .vault-request-form,
  .vault-principles-layout {
    grid-template-columns: 1fr;
  }

  .vault-material-index {
    width: 64px;
    font-size: 2.1rem;
  }

  .vault-material-action {
    grid-column: 1;
    grid-template-columns: 1fr;
  }

  .vault-material-action > span {
    text-align: center;
  }

  .vault-request-heading,
  .vault-request-message,
  .vault-consent,
  .vault-request-form > .button,
  .vault-request-form > .form-status {
    grid-column: 1;
  }
}

@media (max-width: 480px) {
  .vault-header {
    gap: 10px;
    padding: 10px 12px;
  }

  .vault-header .brand-copy small {
    display: none;
  }

  .vault-header-actions {
    gap: 6px;
  }

  .vault-header .language-switch button {
    min-width: 28px;
  }

  .vault-logout {
    padding: 0 9px;
    font-size: 0.84rem;
  }

  .vault-hero-inner,
  .vault-section-inner {
    width: min(100% - 28px, 1180px);
  }

  .vault-request-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .vault-request-close {
    align-self: flex-start;
  }
}

/* Premium interaction and conversion layer */
:root {
  --motion-fast: 160ms;
  --motion-ui: 280ms;
  --motion-section: 520ms;
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-padding-top: 92px;
}

:focus-visible {
  outline: 3px solid rgba(216, 180, 63, 0.82);
  outline-offset: 4px;
}

.site-header.is-scrolled {
  padding-top: 9px;
  padding-bottom: 9px;
}

.page-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  overflow: hidden;
  pointer-events: none;
}

.page-progress::after {
  content: "";
  display: block;
  width: var(--page-progress, 0%);
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  box-shadow: 0 0 14px rgba(216, 180, 63, 0.52);
  transition: width 80ms linear;
}

.nav a.is-current:not(.nav-cta) {
  color: var(--white);
}

.nav a.is-current:not(.nav-cta)::after {
  transform: scaleX(1);
}

.hero-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  max-width: 820px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
  font-weight: 700;
}

.hero-assurances span {
  position: relative;
  padding-left: 18px;
}

.hero-assurances span::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(216, 180, 63, 0.12);
}

.intent-guide {
  color: var(--white);
  background:
    linear-gradient(118deg, rgba(7, 17, 32, 0.985), rgba(15, 40, 55, 0.96) 58%, rgba(47, 83, 67, 0.9)),
    url("datoteke/slike/ozadje-glavne-strani.jpg") center 62% / cover no-repeat;
  border-bottom: 1px solid rgba(216, 180, 63, 0.36);
}

.intent-guide .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.intent-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  border-top: 1px solid rgba(216, 180, 63, 0.34);
  border-left: 1px solid rgba(216, 180, 63, 0.34);
}

.intent-item {
  position: relative;
  display: flex;
  grid-column: span 4;
  min-height: 252px;
  padding: clamp(22px, 3vw, 32px);
  overflow: hidden;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.035);
  border-right: 1px solid rgba(216, 180, 63, 0.34);
  border-bottom: 1px solid rgba(216, 180, 63, 0.34);
  transition: background var(--motion-ui) ease, transform var(--motion-ui) var(--ease-premium);
}

.intent-item:nth-child(4),
.intent-item:nth-child(5) {
  grid-column: span 4;
}

.intent-property {
  background: linear-gradient(145deg, rgba(47, 155, 150, 0.18), rgba(255, 255, 255, 0.035));
}

.intent-property::before {
  content: "AI";
  position: absolute;
  top: 24px;
  right: 26px;
  color: rgba(121, 224, 215, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
}

.intent-item::after {
  content: "";
  position: absolute;
  right: -32%;
  bottom: -58%;
  width: 220px;
  height: 220px;
  pointer-events: none;
  border: 1px solid rgba(216, 180, 63, 0.2);
  border-radius: 50%;
  transition: transform 480ms var(--ease-premium), opacity 280ms ease;
}

.intent-item:hover,
.intent-item:focus-within {
  z-index: 1;
  background: rgba(255, 255, 255, 0.085);
}

.intent-item:hover::after,
.intent-item:focus-within::after {
  opacity: 0.86;
  transform: translate(-18px, -18px) scale(1.08);
}

.intent-featured {
  background: linear-gradient(145deg, rgba(216, 180, 63, 0.16), rgba(255, 255, 255, 0.035));
}

.intent-number {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
}

.intent-item h3 {
  max-width: 360px;
  margin: 22px 0 10px;
  color: var(--white);
  font-size: clamp(1.55rem, 2.7vw, 2.3rem);
  line-height: 1.06;
}

.intent-item p {
  max-width: 440px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.7);
}

.intent-item > a,
.intent-item > button,
.intent-links button {
  width: max-content;
  max-width: 100%;
  margin-top: auto;
  padding: 8px 0 5px;
  color: var(--gold-soft);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(240, 215, 130, 0.48);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  text-align: left;
  transition: color var(--motion-fast) ease, border-color var(--motion-fast) ease, transform var(--motion-fast) ease;
}

.intent-item > a:hover,
.intent-item > button:hover,
.intent-links button:hover {
  color: var(--white);
  border-color: var(--gold);
  transform: translateX(3px);
}

.intent-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: auto;
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.consent-check {
  display: grid !important;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: #536174;
  font-size: 0.9rem;
  line-height: 1.45;
}

.consent-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
}

.form-status[data-state="success"] {
  color: #236743;
  font-weight: 700;
}

.form-status[data-state="fallback"] {
  color: #82551e;
  font-weight: 700;
}

.button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.detail-process,
.detail-faq,
.detail-contact {
  margin-top: clamp(48px, 7vw, 82px);
}

.detail-process-heading,
.detail-faq-heading,
.detail-contact-copy {
  max-width: 760px;
  margin-bottom: 26px;
}

.detail-process-heading h2,
.detail-faq-heading h2,
.detail-contact-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 3.65rem);
  line-height: 1.04;
}

.detail-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.detail-process-grid article {
  min-height: 210px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.72);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.detail-process-grid span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
}

.detail-process-grid h3 {
  margin: 24px 0 8px;
  font-size: 1.4rem;
  line-height: 1.1;
}

.detail-process-grid p {
  margin: 0;
  color: var(--muted);
}

.detail-faq-list {
  border-top: 1px solid var(--line);
}

.detail-faq-list details {
  border-bottom: 1px solid var(--line);
}

.detail-faq-list summary {
  position: relative;
  padding: 20px 52px 20px 0;
  cursor: pointer;
  font-size: 1.14rem;
  font-weight: 700;
  list-style: none;
}

.detail-faq-list summary::-webkit-details-marker {
  display: none;
}

.detail-faq-list summary::after {
  content: "+";
  position: absolute;
  top: 14px;
  right: 4px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--navy);
  background: var(--gold);
  border-radius: 50%;
  font-size: 1.5rem;
  transition: transform var(--motion-ui) var(--ease-premium);
}

.detail-faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.detail-faq-list details p {
  max-width: 820px;
  margin: -4px 0 20px;
  color: var(--muted);
}

.detail-contact {
  padding: clamp(28px, 5vw, 52px);
  color: var(--white);
  background: linear-gradient(125deg, var(--navy), #12333b 62%, #39503d);
  border: 1px solid rgba(216, 180, 63, 0.45);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.detail-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}

.detail-contact-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.detail-contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 24px;
}

.detail-contact-links a {
  color: var(--gold-soft);
  font-weight: 700;
}

.service-contact-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(20px, 3vw, 30px);
  color: var(--ink);
  background: rgba(255, 250, 240, 0.98);
  border: 1px solid rgba(216, 180, 63, 0.5);
  border-radius: 8px;
}

.service-contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 700;
}

.service-contact-form .full-field,
.service-contact-form .consent-check,
.service-contact-form .button,
.service-contact-form .form-status {
  grid-column: 1 / -1;
}

.service-contact-form input,
.service-contact-form textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.mobile-actions {
  display: none;
}

@view-transition {
  navigation: auto;
}

::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 280ms;
  animation-timing-function: var(--ease-premium);
}

@media (prefers-reduced-motion: no-preference) {
  body.motion-ready .reveal {
    transform: translateY(16px);
    transition-duration: var(--motion-section);
  }

  body.motion-ready .reveal.reveal-soft {
    transform: translateY(12px) scale(0.992);
  }

  .hero-inner > .eyebrow,
  .hero-inner > h1,
  .hero-subtitle,
  .hero-copy,
  .hero-actions,
  .hero-assurances,
  .detail-hero .eyebrow,
  .detail-hero h1,
  .detail-lead,
  .detail-hero .hero-actions {
    animation-duration: 720ms;
  }

  .hero-assurances {
    animation: riseIn 720ms 600ms var(--ease-premium) both;
  }
}

@media (max-width: 980px) {
  .intent-item,
  .intent-item:nth-child(4),
  .intent-item:nth-child(5) {
    grid-column: span 6;
  }

  .detail-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body:not(.privacy-page-body):not(.vault-page) {
    padding-bottom: 70px;
  }

  .intent-grid {
    grid-template-columns: 1fr;
  }

  .intent-item,
  .intent-item:nth-child(4),
  .intent-item:nth-child(5),
  .intent-item:last-child {
    grid-column: 1;
    min-height: 220px;
  }

  .detail-process-grid,
  .service-contact-form {
    grid-template-columns: 1fr;
  }

  .service-contact-form > *,
  .service-contact-form .full-field,
  .service-contact-form .consent-check,
  .service-contact-form .button,
  .service-contact-form .form-status {
    grid-column: 1;
  }

  .mobile-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 45;
    display: grid;
    grid-template-columns: minmax(110px, 0.72fr) minmax(0, 1.28fr);
    min-height: 62px;
    padding: 7px max(10px, env(safe-area-inset-right)) max(7px, env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
    background: rgba(7, 17, 32, 0.96);
    border-top: 1px solid rgba(216, 180, 63, 0.42);
    box-shadow: 0 -12px 34px rgba(7, 17, 32, 0.22);
    backdrop-filter: blur(14px);
  }

  .mobile-actions a {
    display: grid;
    min-height: 48px;
    padding: 8px 12px;
    place-items: center;
    color: var(--white);
    border: 1px solid rgba(216, 180, 63, 0.45);
    font-weight: 700;
    text-align: center;
  }

  .mobile-actions a:first-child {
    border-radius: 6px 0 0 6px;
  }

  .mobile-actions a:last-child {
    color: var(--navy);
    background: var(--gold);
    border-color: var(--gold);
    border-radius: 0 6px 6px 0;
  }
}

.map-explorer-bar {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(220px, 0.62fr) minmax(280px, 1fr);
  gap: 22px;
  align-items: center;
  margin-bottom: 14px;
  padding: 18px 22px;
  color: var(--white);
  background: linear-gradient(115deg, rgba(7, 17, 32, 0.98), rgba(27, 64, 62, 0.94));
  border: 1px solid rgba(216, 180, 63, 0.42);
  border-radius: 7px;
  box-shadow: 0 16px 40px rgba(12, 22, 34, 0.14);
}

.map-explorer-bar .small-label {
  margin: 0 0 3px;
}

.map-explorer-bar strong {
  display: block;
  font-size: 1.08rem;
}

.map-explorer-bar p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.map-progress-track {
  position: relative;
  height: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(216, 180, 63, 0.28);
  border-radius: 999px;
}

.map-progress-track span {
  display: block;
  width: var(--map-progress, 0%);
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  border-radius: inherit;
  box-shadow: 0 0 16px rgba(216, 180, 63, 0.42);
  transition: width 520ms var(--ease-premium);
}

.map-station.visited .station-ring::after {
  content: "✓";
  position: absolute;
  right: -4px;
  bottom: -4px;
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border: 2px solid #fff0c7;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(32, 74, 51, 0.24);
  font-size: 0.8rem;
  font-weight: 700;
}

.map-station.visited .station-label {
  border-color: rgba(47, 118, 83, 0.72);
}

.station-next {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(105, 66, 30, 0.24);
}

.station-next > span {
  color: #7c4a22;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.station-next button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 14px 16px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(105, 66, 30, 0.26);
  border-radius: 6px;
  cursor: pointer;
  text-align: left;
  transition: transform var(--motion-ui) var(--ease-premium), border-color var(--motion-fast) ease, background var(--motion-fast) ease;
}

.station-next button:hover,
.station-next button:focus-visible {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.92);
  border-color: var(--gold);
}

.station-next button strong,
.station-next button small {
  display: block;
}

.station-next button small {
  color: #7c4a22;
  font-weight: 700;
  white-space: nowrap;
}

.order-form .consent-check {
  grid-column: 1 / -1;
}

@media (prefers-reduced-motion: no-preference) {
  body.motion-ready .map-path-line {
    animation: mapPathReveal 1300ms var(--ease-premium) both;
    animation-play-state: paused;
  }

  body.motion-ready .map-station {
    animation: mapStationArrive 620ms var(--ease-premium) both;
    animation-play-state: paused;
  }

  body.motion-ready .map-station:nth-of-type(2) {
    animation-delay: 150ms;
  }

  body.motion-ready .map-station:nth-of-type(3) {
    animation-delay: 300ms;
  }

  body.motion-ready .map-station .station-pin,
  body.motion-ready .map-station .station-ring {
    animation: none;
  }

  body.motion-ready .map-marker-runner {
    animation-iteration-count: 1;
    animation-fill-mode: both;
  }

  body.motion-ready .knowledge-map.is-motion-active .map-station {
    animation-play-state: running;
  }
}

@keyframes mapPathReveal {
  from {
    opacity: 0;
    stroke-dashoffset: 120;
  }

  to {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}

@keyframes mapStationArrive {
  from {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 14px)) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@media (max-width: 980px) {
  .map-explorer-bar {
    grid-template-columns: minmax(220px, 1fr) minmax(220px, 1fr);
  }

  .map-explorer-bar p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .map-explorer-bar {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .map-explorer-bar p {
    grid-column: 1;
  }

  .station-next button {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}
