:root {
  --font-base: Rubik, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --font-display: "Arial Narrow", "Segoe UI Condensed", Impact, system-ui, sans-serif;
  --film-black: #222429;
  --film-black-2: #17191d;
  --film-black-3: #111317;
  --film-ink: #070337;
  --film-text: #686777;
  --film-muted: #a0a2a6;
  --film-orange: #fd914f;
  --film-orange-2: #d96e2f;
  --film-gold: #fd914f;
  --film-cream: #f5f5f5;
  --film-line: #f0eff5;
  --film-white: #ffffff;
  --shadow-hard: 0 28px 70px rgba(7, 3, 55, .16);
  --shadow-soft: 0 14px 44px rgba(34, 36, 41, .08);
}

@media (min-width: 1400px) {
  .container-xl {
    max-width: 1320px;
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--film-text);
  background: #fff;
  font-family: var(--font-base);
  font-size: 15px;
  padding-top: 92px;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--film-orange-2);
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}

a:hover,
a:focus {
  color: var(--film-orange);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  color: var(--film-ink);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: .94;
  letter-spacing: .02em;
  text-transform: uppercase;
}

p {
  color: var(--film-text);
  line-height: 1.78;
}

img {
  max-width: 100%;
}

.site-header {
  position: fixed !important;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
  width: 100%;
  background: var(--film-black);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .18);
}

.navbar {
  min-height: 92px;
  padding: 0;
}

.navbar .container-xl {
  gap: 26px;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  min-width: 194px;
}

.navbar-brand img {
  display: block;
  width: 194px;
  height: auto;
}

.navbar-nav {
  gap: 8px;
}

.nav-link {
  position: relative;
  color: #fff;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 650;
  letter-spacing: .03em;
  line-height: 1;
  text-transform: uppercase;
  padding: 36px 10px 34px !important;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active,
.nav-link.show {
  color: var(--film-orange);
}

.site-header .nav-link.active,
.site-header .nav-link.show {
  color: #fff !important;
}

.nav-link::before {
  position: absolute;
  right: 10px;
  bottom: 25px;
  left: auto;
  width: 0;
  height: 3px;
  background: var(--film-orange);
  content: "";
  transition: all .24s ease;
}

.nav-link:hover::before,
.nav-link:focus::before,
.nav-link.active::before,
.nav-link.show::before {
  right: auto;
  left: 10px;
  width: calc(100% - 20px);
}

.navbar .dropdown-toggle::after {
  display: none;
}

.dropdown-menu {
  min-width: 246px;
  padding: 16px 0;
  margin-top: 0;
  background: #fff;
  border: 0;
  border-radius: 0;
  box-shadow: 0 20px 48px rgba(7, 3, 55, .18);
}

.dropdown-item {
  color: #222;
  padding: 8px 24px;
  font-weight: 700;
  line-height: 1.35;
}

.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item.active,
.dropdown-item:active {
  color: var(--film-orange-2);
  background: transparent;
}

.navbar-toggler {
  position: relative;
  z-index: 2;
  display: none !important;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(253,145,79,.72);
  background: rgba(255, 255, 255, .08);
  border-radius: 0;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 .18rem rgba(253, 145, 79, .28);
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.35em;
  height: 1.35em;
  background:
    linear-gradient(#fff, #fff) center 5px / 24px 2px no-repeat,
    linear-gradient(#fff, #fff) center center / 24px 2px no-repeat,
    linear-gradient(#fff, #fff) center calc(100% - 5px) / 24px 2px no-repeat;
  transition: background .18s ease, transform .18s ease;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background:
    linear-gradient(#fff, #fff) center center / 24px 2px no-repeat,
    linear-gradient(#fff, #fff) center center / 24px 2px no-repeat;
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  display: block;
  width: 24px;
  height: 2px;
  margin: calc(.675em - 1px) auto 0;
  background: #fff;
  content: "";
  transform: rotate(90deg);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  overflow: hidden;
  border-radius: 0;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1;
  text-transform: uppercase;
  padding: 18px 28px 16px;
  transition: transform .2s ease, border-color .2s ease, background-color .2s ease, color .2s ease;
}

.btn::before {
  position: absolute;
  top: -52px;
  left: -78px;
  z-index: 0;
  width: 36px;
  height: 165px;
  background: rgba(255,255,255,.28);
  content: "";
  transform: rotate(35deg);
  transition: left .55s cubic-bezier(.19, 1, .22, 1);
}

.btn:hover::before,
.btn:focus::before {
  left: 120%;
}

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

.btn-gold {
  color: var(--film-black);
  background: var(--film-orange);
  border: 1px solid var(--film-orange);
  box-shadow: 0 14px 28px rgba(253, 145, 79, .24);
}

.btn-gold:hover,
.btn-gold:focus,
.btn-gold.active {
  color: var(--film-black);
  background: #ffad74;
  border-color: #ffad74;
  transform: translateY(-2px);
}

.btn-outline-film {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255,255,255,.52);
}

.btn-outline-film:hover,
.btn-outline-film:focus {
  color: var(--film-black);
  background: #fff;
  border-color: #fff;
}

.site-header .nav-cta {
  min-height: 52px;
  padding: 16px 22px 14px;
  color: var(--film-black);
}

.section {
  position: relative;
  padding: 105px 0;
}

.section-soft {
  background: #fff;
}

.section-warm {
  background: var(--film-cream);
}

.section-title {
  max-width: 780px;
  margin-bottom: 48px;
}

.section-title h2 {
  margin: 0 0 12px;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: .86;
}

.section-title p {
  margin: 0;
  font-size: 16px;
}

.section-label {
  display: inline-block;
  margin: 0 0 13px;
  color: var(--film-orange);
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1;
  text-transform: uppercase;
}

.home-hero {
  position: relative;
  min-height: 780px;
  padding: 112px 0 84px;
  overflow: hidden;
  color: #fff;
  background: var(--film-black);
  isolation: isolate;
}

.home-hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 42%, transparent 0 18%, rgba(34,36,41,.18) 19%, rgba(34,36,41,.86) 58%, rgba(34,36,41,.96) 100%),
    linear-gradient(90deg, rgba(34,36,41,.95) 0%, rgba(34,36,41,.84) 45%, rgba(34,36,41,.74) 100%);
  content: "";
}

.home-hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 68px;
  background:
    repeating-linear-gradient(90deg, transparent 0 26px, rgba(255,255,255,.18) 26px 34px, transparent 34px 62px),
    linear-gradient(0deg, rgba(0,0,0,.28), transparent);
  background-size: 310px 13px, auto;
  background-position: 0 22px, 0 0;
  background-repeat: repeat-x, no-repeat;
  content: "";
}

.home-hero__bg,
.home-hero__bg-slide {
  position: absolute;
  inset: 0;
}

.home-hero__bg {
  z-index: 0;
}

.home-hero__bg-slide {
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  filter: grayscale(100%) contrast(1.08) brightness(.74);
  animation: super8HeroFade 24s infinite;
}

.home-hero__bg-slide--one {
  background-image: url("/assets/img/film/film-digitalizacija-monitor.jpg");
  background-position: center right;
}

.home-hero__bg-slide--two {
  background-image: url("/assets/img/film/film-postaja-koluti.jpg");
  background-position: center center;
  animation-delay: -16s;
}

.home-hero__bg-slide--three {
  background-image: url("/assets/img/film/studio-filmska-postaja-opt.jpg");
  background-position: center center;
  animation-delay: -8s;
}

@keyframes super8HeroFade {
  0%, 30% { opacity: .58; transform: scale(1.02); }
  38%, 90% { opacity: 0; transform: scale(1.05); }
  100% { opacity: .58; transform: scale(1.02); }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero__bg-slide {
    animation: none;
    opacity: 0;
  }

  .home-hero__bg-slide--one {
    opacity: .58;
  }
}

.home-hero .container-xl {
  position: relative;
  z-index: 3;
}

.home-hero__content {
  max-width: 760px;
}

.home-hero h1 {
  max-width: 860px;
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(3.8rem, 5.9vw, 5.8rem);
  font-weight: 750;
  line-height: .9;
}

.home-hero__lead {
  max-width: 650px;
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 18px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.home-hero__visual {
  position: relative;
  width: min(470px, 100%);
  margin-left: auto;
}

.home-hero__media {
  position: relative;
  overflow: hidden;
  border: 10px solid rgba(255,255,255,.08);
  border-radius: 0;
  box-shadow: 0 40px 90px rgba(0,0,0,.34);
  aspect-ratio: 4 / 5;
}

.home-hero__media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 0 50%, rgba(0,0,0,.44) 100%);
  content: "";
}

.home-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(28%) contrast(1.06) brightness(.94);
}

.home-hero__media-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  min-width: 194px;
  padding: 15px 18px 13px;
  color: var(--film-black);
  background: var(--film-orange);
}

.home-hero__media-note span {
  display: block;
  color: rgba(34,36,41,.76);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.home-hero__media-note strong {
  display: block;
  margin-top: 4px;
  color: var(--film-black);
  font-size: 15px;
}

.home-hero__tile {
  position: absolute;
  z-index: 4;
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: 0 20px 50px rgba(0,0,0,.34);
}

.home-hero__tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%) contrast(1.08);
}

.home-hero__tile--monitor {
  bottom: 46px;
  left: -92px;
  width: 230px;
  aspect-ratio: 16 / 10;
}

.home-hero__tile--scanner {
  top: 46px;
  right: -54px;
  width: 188px;
  aspect-ratio: 4 / 3;
}

.home-hero__proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: none;
  padding: 0;
  margin: 62px 0 0;
  list-style: none;
  border-top: 1px solid rgba(255,255,255,.16);
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.home-hero__proof li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 98px;
  padding: 16px 28px;
  color: rgba(255,255,255,.86);
  border-right: 1px solid rgba(255,255,255,.16);
  font-size: 15px;
  line-height: 1.35;
}

.home-hero__proof li:first-child {
  padding-left: 0;
}

.home-hero__proof li:last-child {
  border-right: 0;
}

.home-hero__proof i {
  color: var(--film-orange);
  font-size: 30px;
  line-height: 1;
}

.page-hero {
  position: relative;
  min-height: 295px;
  padding: 52px 0 56px;
  overflow: hidden;
  color: #fff;
  background: var(--film-black);
}

.page-hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(34,36,41,.95), rgba(34,36,41,.78)),
    url("/assets/img/film/film-postaja-koluti.jpg") center center / cover no-repeat;
  filter: grayscale(100%);
  content: "";
}

.page-hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 44px;
  background: repeating-linear-gradient(90deg, transparent 0 24px, rgba(255,255,255,.18) 24px 32px, transparent 32px 58px);
  background-size: 300px 12px;
  background-position: 0 12px;
  background-repeat: repeat-x;
  content: "";
}

.page-hero .container-xl {
  position: relative;
  z-index: 2;
}

.page-hero__copy h1 {
  max-width: 820px;
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(2.9rem, 4.35vw, 4.25rem);
  line-height: .92;
}

.page-hero__lead {
  max-width: 720px;
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 17px;
  line-height: 1.72;
}

.page-hero .hero-actions {
  margin-top: 26px;
}

.page-hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.page-hero__points li {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: rgba(255,255,255,.9);
  font-weight: 700;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  padding: 8px 12px;
}

.page-hero__points i {
  color: var(--film-orange);
}

.page-hero__media {
  position: relative;
  overflow: hidden;
  width: min(430px, 100%);
  margin-left: auto;
  border: 8px solid rgba(255,255,255,.1);
  box-shadow: 0 25px 60px rgba(0,0,0,.34);
  aspect-ratio: 16 / 9;
}

.page-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(25%) contrast(1.08) brightness(.9);
}

.page-hero__media-badge {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 10px 14px 8px;
  color: var(--film-black);
  background: var(--film-orange);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.breadcrumbs {
  padding: 14px 0;
  background: var(--film-black-2);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: rgba(255,255,255,.72);
  font-size: 14px;
}

.breadcrumbs a {
  color: var(--film-orange);
}

.breadcrumbs li + li::before {
  margin-right: 8px;
  color: rgba(255,255,255,.38);
  content: "-";
}

.intro-panel,
.content-panel,
.notice-panel,
.price-panel,
.contact-panel,
.project-form {
  background: #fff;
  border: 2px solid var(--film-line);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}

.intro-panel,
.content-panel {
  padding: clamp(30px, 4.8vw, 56px);
}

.intro-panel {
  border-top: 4px solid var(--film-orange);
}

.intro-panel h2,
.content-panel h2,
.content-panel h3,
.contact-panel h2,
.notice-panel h3 {
  margin-bottom: 15px;
  font-size: clamp(2.2rem, 4vw, 3.3rem);
}

.content-panel p:last-child,
.intro-panel p:last-child {
  margin-bottom: 0;
}

.content-panel + .notice-panel {
  margin-top: 22px;
}

.content-block {
  max-width: 860px;
}

.content-block p {
  color: var(--film-text);
  font-size: 16px;
}

.content-block h2:not(:first-child),
.content-block p + h2,
.content-block ul + h2,
.content-block ol + h2,
.content-block .notice-panel + h2,
.content-block .content-panel + h2 {
  margin-top: 44px;
}

.service-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 38px;
  align-items: start;
}

.service-page-layout .content-block {
  max-width: none;
}

.service-switcher {
  position: sticky;
  top: 116px;
  padding: 28px;
  color: #fff;
  background: var(--film-black);
  border-radius: 10px;
  box-shadow: var(--shadow-hard);
}

.service-switcher h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 2.2rem;
}

.service-switcher p:not(.section-label) {
  color: rgba(255,255,255,.68);
  font-size: 15px;
  line-height: 1.65;
}

.service-switcher nav {
  display: grid;
  gap: 0;
  margin-top: 18px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.service-switcher nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  color: rgba(255,255,255,.88);
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-weight: 800;
}

.service-switcher nav a::after {
  color: var(--film-orange);
  content: "\203A";
}

.service-switcher nav a:hover,
.service-switcher nav a:focus,
.service-switcher nav a.active {
  color: var(--film-orange);
  padding-left: 8px;
}

.media-frame {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--shadow-hard);
  aspect-ratio: 4 / 3;
}

.media-frame.tall {
  aspect-ratio: 4 / 5;
}

.media-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.96) contrast(1.05);
}

.recognition-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 8px 0 34px;
}

.recognition-media {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 18px;
  margin: 0;
  background: #fff;
  border: 2px solid var(--film-line);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 16 / 9;
}

.recognition-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.info-card {
  position: relative;
  overflow: hidden;
  min-height: 265px;
  padding: 42px 38px;
  background: #fff;
  border: 2px solid var(--film-line);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.info-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  width: 0;
  height: 4px;
  background: var(--film-orange);
  content: "";
  transition: all .24s ease;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hard);
}

.info-card:hover::before {
  right: auto;
  left: 0;
  width: 100%;
}

.info-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 22px;
  color: var(--film-orange);
  background: rgba(253,145,79,.1);
  font-size: 32px;
  line-height: 1;
}

.info-card h3 {
  margin: 0 0 12px;
  font-size: 2.3rem;
  line-height: .92;
}

.info-card p {
  margin: 0 0 18px;
}

.info-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--film-orange-2);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.info-card a::after {
  content: "\203A";
}

.scan-types {
  color: #fff;
  background:
    linear-gradient(rgba(34,36,41,.96), rgba(34,36,41,.96)),
    url("/assets/binifox/pattern/pt1.png") center / auto repeat,
    var(--film-black);
}

.scan-types .section-title {
  max-width: none;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.scan-types .section-title h2 {
  color: #fff;
}

.scan-types .card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.scan-types .info-card {
  color: rgba(255,255,255,.74);
  background: #1c1e22;
  border: 0;
  box-shadow: none;
}

.scan-types .info-card h3 {
  color: #fff;
}

.scan-types .info-card p {
  color: #a0a2a6;
}

.notice-panel {
  padding: 30px;
  background: #fff8f2;
  border-left: 4px solid var(--film-orange);
}

.notice-panel strong {
  color: var(--film-black);
}

.step-list {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 0;
  counter-reset: steps;
  list-style: none;
}

.step-list li {
  position: relative;
  min-height: 86px;
  padding: 24px 26px 22px 92px;
  background: #fff;
  border: 2px solid var(--film-line);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}

.step-list li::before {
  position: absolute;
  top: 21px;
  left: 24px;
  color: var(--film-orange);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  counter-increment: steps;
  content: counter(steps, decimal-leading-zero);
}

.step-list span {
  display: block;
  margin-bottom: 7px;
  color: var(--film-black);
  font-weight: 850;
}

.step-list p {
  margin: 0;
}

.feature-list {
  display: grid;
  gap: 7px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--film-text);
}

.feature-list i {
  color: var(--film-orange);
  margin-top: 4px;
}

.price-panel {
  padding: 32px;
}

.pricing-table {
  margin: 0;
}

.pricing-table th {
  color: #fff;
  background: var(--film-black);
}

.pricing-table td,
.pricing-table th {
  padding: 1rem;
  vertical-align: top;
}

.pricing-table td:nth-child(2) {
  width: 210px;
  color: var(--film-black);
  font-weight: 800;
}

.pricing-table th:nth-child(2) {
  width: 210px;
}

.pricing-calculator-panel {
  margin-bottom: 24px;
}

.film-calculator {
  display: grid;
  gap: 22px;
  margin-top: 26px;
}

.calculator-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--film-black);
  font-family: var(--font-display);
  font-weight: 800;
}

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

.calc-check {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  min-height: 96px;
  padding: 18px;
  background: #fff;
  border: 2px solid var(--film-line);
  border-radius: 8px;
  cursor: pointer;
}

.calc-check input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--film-orange);
}

.calc-check strong,
.calc-check small {
  display: block;
}

.calc-check strong {
  color: var(--film-black);
  line-height: 1.25;
}

.calc-check small {
  margin-top: 5px;
  color: var(--film-muted);
  line-height: 1.45;
}

.calculator-result {
  margin-top: 28px;
  padding-top: 26px;
  border-top: 2px solid var(--film-line);
}

.calculator-result h3 {
  margin-bottom: 16px;
}

.calculator-table .total-row td {
  color: #fff;
  background: var(--film-black);
}

.calculator-table .gross-row td {
  color: var(--film-black);
  background: rgba(245,155,85,.22);
}

.faq-accordion .accordion-item {
  overflow: hidden;
  margin-bottom: 14px;
  border: 2px solid var(--film-line);
  border-radius: 10px;
}

.faq-accordion .accordion-button {
  color: var(--film-black);
  background: #fff;
  box-shadow: none;
  font-weight: 850;
  line-height: 1.4;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--film-black);
  background: #fff8f2;
}

.project-form-help {
  position: sticky;
  top: 116px;
  padding: 34px;
  color: rgba(255,255,255,.78);
  background: var(--film-black);
  border-radius: 10px;
  box-shadow: var(--shadow-hard);
}

.project-form-help h2,
.project-form-help h3 {
  color: #fff;
  font-size: clamp(2.2rem, 3vw, 2.65rem);
  line-height: .98;
}

.project-form-help p,
.project-form-help li {
  color: rgba(255,255,255,.72);
}

.project-form-help ul {
  display: grid;
  gap: 7px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.project-form-help li {
  display: flex;
  gap: 10px;
}

.project-form-help i {
  color: var(--film-orange);
  margin-top: 4px;
}

.project-form-help a {
  color: #fff;
}

.project-form {
  padding: clamp(28px, 4vw, 46px);
}

.form-label,
.form-check-label {
  color: var(--film-black);
  font-weight: 800;
}

.form-control,
.form-select {
  min-height: 56px;
  color: var(--film-black);
  background: #fff;
  border: 2px solid var(--film-line);
  border-radius: 0;
  padding: .85rem 1rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--film-orange);
  box-shadow: 0 0 0 .2rem rgba(253,145,79,.17);
}

textarea.form-control {
  min-height: 175px;
}

.project-form .form-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  min-height: 46px;
  padding: 12px 12px 12px 40px;
  background: #fff;
  border: 2px solid var(--film-line);
}

.project-form .form-check-input {
  margin-left: -26px;
  border-color: #b9b8c4;
}

.project-form .form-check-input:checked {
  background-color: var(--film-orange);
  border-color: var(--film-orange);
}

.form-help {
  margin-top: 8px;
  color: var(--film-text);
  font-size: 14px;
}

.form-error {
  margin-top: 7px;
  color: #a52d1c;
  font-weight: 800;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.alert-film {
  color: var(--film-black);
  background: #fff8f2;
  border: 2px solid rgba(253,145,79,.32);
  border-radius: 0;
}

.cta-band {
  background:
    linear-gradient(rgba(34,36,41,.95), rgba(34,36,41,.95)),
    url("/assets/binifox/bg/footer-bg.jpg") center / cover no-repeat;
}

.cta-panel {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  padding: clamp(36px, 5vw, 58px);
  color: rgba(255,255,255,.76);
  background: #1c1e22;
  border-top: 4px solid var(--film-orange);
}

.cta-panel h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(3rem, 5vw, 5rem);
}

.cta-panel p {
  max-width: 760px;
  margin: 0;
  color: rgba(255,255,255,.72);
}

.site-footer {
  padding: 84px 0 28px;
  color: #999b9f;
  background:
    linear-gradient(rgba(34,36,41,.96), rgba(34,36,41,.96)),
    url("/assets/binifox/bg/footer-bg.jpg") center / cover no-repeat;
}

.site-footer h2,
.site-footer h3 {
  color: #fff;
}

.site-footer h2 {
  font-size: 3.4rem;
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
}

.site-footer__logo img {
  display: block;
  width: 194px;
  height: auto;
}

.site-footer h3 {
  margin-bottom: 22px;
  font-size: 1.85rem;
  white-space: nowrap;
}

.site-footer p {
  color: #999b9f;
}

.site-footer a {
  color: #999b9f;
}

.site-footer a:hover {
  color: #fff;
}

.footer-small {
  font-size: 14px;
}

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

.site-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-link-grid ul {
  display: grid;
  gap: 6px;
}

.footer-link-grid--single {
  grid-template-columns: 1fr;
}

.footer-service-list {
  display: grid;
  gap: 6px;
}

.footer-cta {
  color: var(--film-orange) !important;
  font-weight: 850;
}

.footer-bottom {
  padding-top: 28px;
  margin-top: 42px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.footer-bottom p {
  margin: 0;
}

.mobile-sticky-cta {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 1040;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
  background: var(--film-black);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 16px 36px rgba(0,0,0,.28);
}

.mobile-sticky-cta a {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 8px;
  color: #fff;
  font-weight: 800;
}

.mobile-sticky-cta a + a {
  border-left: 1px solid rgba(255,255,255,.14);
}

.cookie-consent {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1050;
  display: flex;
  gap: 18px;
  align-items: center;
  max-width: 720px;
  padding: 22px;
  background: #fff;
  border: 2px solid var(--film-line);
  box-shadow: var(--shadow-hard);
}

.cookie-consent__title {
  margin: 0 0 4px;
  color: var(--film-black);
  font-weight: 850;
}

.cookie-consent__body {
  min-width: 0;
}

.cookie-consent p:last-child {
  margin: 0;
}

.cookie-consent__actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.page-kontakt .notice-panel.h-100 {
  height: auto !important;
}

@media (max-width: 1199.98px) {
  .navbar-brand {
    min-width: 160px;
  }

  .navbar-brand img {
    width: 160px;
  }

  .nav-link {
    font-size: 18px;
    padding-inline: 7px !important;
  }

  .home-hero h1 {
    font-size: clamp(3.4rem, 6vw, 5.15rem);
  }

  .home-hero__tile {
    display: none;
  }

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

  .home-hero__proof li:nth-child(2) {
    border-right: 0;
  }

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

@media (max-width: 991.98px) {
  .navbar {
    min-height: 78px;
    padding: 12px 0;
  }

  .navbar .container-xl {
    flex-wrap: wrap;
  }

  .navbar-toggler {
    margin-left: auto;
  }

  .navbar-collapse {
    flex-basis: 100%;
    width: 100%;
    padding: 14px 0 8px;
  }

  .navbar-nav {
    align-items: stretch !important;
    width: 100%;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,.08);
  }

  .nav-link {
    display: block;
    padding: 15px 0 !important;
  }

  .nav-link::before {
    bottom: 8px;
    left: 0;
  }

  .nav-link:hover::before,
  .nav-link:focus::before,
  .nav-link.active::before,
  .nav-link.show::before {
    left: 0;
    width: 52px;
  }

  .dropdown-menu {
    width: 100%;
    padding: 4px 0 10px 18px;
    background: transparent;
    box-shadow: none;
  }

  .dropdown-item {
    color: rgba(255,255,255,.82);
    padding: 8px 0;
  }

  .dropdown-item:hover,
  .dropdown-item:focus,
  .dropdown-item.active {
    color: var(--film-orange);
  }

  .nav-cta {
    display: flex;
    width: 100%;
    margin-top: 10px;
  }

  .home-hero {
    min-height: auto;
    padding: 76px 0 58px;
  }

  .home-hero__visual {
    margin: 18px auto 0 0;
  }

  .home-hero__media {
    aspect-ratio: 16 / 10;
  }

  .page-hero {
    padding: 60px 0;
  }

  .page-hero__media {
    margin-top: 8px;
  }

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

  .service-page-layout {
    grid-template-columns: 1fr;
  }

  .service-switcher,
  .project-form-help {
    position: static;
    order: -1;
  }

  .cta-panel,
  .cookie-consent {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 767.98px) {
  body {
    padding-bottom: 76px;
  }

  .section {
    padding: 72px 0;
  }

  .navbar-brand {
    min-width: 148px;
  }

  .navbar-brand img {
    width: 148px;
  }

  .home-hero {
    padding: 52px 0 48px;
  }

  .home-hero h1 {
    font-size: clamp(2.95rem, 13vw, 4.15rem);
  }

  .home-hero__lead,
  .page-hero__lead {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .cta-panel .btn,
  .service-switcher .btn {
    width: 100%;
  }

  .home-hero__proof {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .home-hero__proof li,
  .home-hero__proof li:first-child {
    min-height: 72px;
    padding: 12px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .home-hero__proof li:last-child {
    border-bottom: 0;
  }

  .page-hero__copy h1 {
    font-size: clamp(2.25rem, 10.5vw, 3rem);
    line-height: .96;
    overflow-wrap: normal;
  }

  .section-title h2 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .card-grid,
  .scan-types .card-grid,
  .recognition-media-grid {
    grid-template-columns: 1fr;
  }

  .info-card {
    min-height: 0;
    padding: 34px 28px;
  }

  .step-list li {
    padding-left: 74px;
  }

  .footer-link-grid {
    grid-template-columns: 1fr;
  }

  .cookie-consent {
    right: 12px;
    bottom: 82px;
    left: 12px;
  }

  .cookie-consent__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-consent__actions .btn,
  .cookie-consent__actions a {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .navbar-brand {
    min-width: 138px;
  }

  .navbar-brand img {
    width: 138px;
  }

  .btn {
    padding-inline: 18px;
  }

  .mobile-sticky-cta a {
    font-size: 14px;
  }
}

/* Visual refinement pass: cleaner first viewport and less collage-heavy media. */
.navbar-brand {
  min-width: 194px;
}

.navbar-brand img {
  width: 194px;
}

.home-hero {
  min-height: 720px;
  padding: 92px 0 66px;
}

.home-hero::before {
  background:
    radial-gradient(circle at 72% 36%, rgba(245,155,85,.24), transparent 30%),
    linear-gradient(90deg, rgba(23,25,29,.9) 0%, rgba(23,25,29,.78) 42%, rgba(23,25,29,.55) 100%);
}

.home-hero__bg-slide {
  animation: none;
  opacity: 0;
}

.home-hero__bg-slide--one {
  background-image: url("/assets/img/film/studio-filmska-postaja-opt.jpg");
  background-position: center right;
  opacity: .46;
}

.home-hero__bg-slide--two,
.home-hero__bg-slide--three {
  display: none;
}

.home-hero__row {
  --bs-gutter-x: 4rem;
}

.home-hero__content {
  max-width: 760px;
}

.home-hero h1 {
  max-width: 780px;
  font-size: clamp(3.9rem, 5.35vw, 5.25rem);
  line-height: .94;
}

.home-hero__lead {
  max-width: 610px;
  color: rgba(255,255,255,.78);
}

.home-hero__visual {
  width: min(590px, 100%);
  margin-left: auto;
}

.home-hero__media {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 4px;
  box-shadow: 0 34px 86px rgba(0,0,0,.38);
  aspect-ratio: 16 / 11;
}

.home-hero__media::before {
  background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.28));
}

.home-hero__media img {
  object-position: 38% 50%;
  filter: saturate(.82) contrast(1.04) brightness(.86);
}

.home-hero__media-note {
  top: 18px;
  right: auto;
  bottom: auto;
  left: 18px;
  min-width: 168px;
  padding: 12px 15px 11px;
  background: rgba(245,155,85,.94);
}

.home-hero__support {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 18px;
  align-items: center;
  width: min(430px, calc(100% - 36px));
  margin: -34px 0 0 auto;
  padding: 14px;
  color: #fff;
  background: rgba(23,25,29,.92);
  border: 1px solid rgba(255,255,255,.14);
  border-left: 4px solid var(--film-orange);
  box-shadow: 0 24px 50px rgba(0,0,0,.28);
  position: relative;
  z-index: 5;
}

.home-hero__support img {
  display: block;
  width: 100%;
  height: 88px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 24% 50%;
  filter: saturate(.72) contrast(1.05) brightness(.88);
}

.home-hero__support span {
  display: block;
  color: var(--film-orange);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 750;
  line-height: 1;
  text-transform: uppercase;
}

.home-hero__support strong {
  display: block;
  margin-top: 5px;
  color: #fff;
  font-size: 15px;
  line-height: 1.35;
}

.home-hero__proof {
  margin-top: 58px;
}

@media (max-width: 1199.98px) {
  .navbar-brand {
    min-width: 194px;
  }

  .navbar-brand img {
    width: 194px;
  }

  .home-hero h1 {
    font-size: clamp(3.4rem, 6vw, 4.9rem);
  }
}

@media (max-width: 991.98px) {
  .home-hero {
    padding: 70px 0 56px;
  }

  .home-hero__visual {
    width: min(620px, 100%);
    margin: 22px auto 0 0;
  }

  .home-hero__media {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 575.98px) {
  .navbar-brand,
  .navbar-brand img {
    min-width: 0;
    width: 154px;
  }

  .home-hero {
    padding: 46px 0 42px;
  }

  .home-hero h1 {
    font-size: clamp(2.8rem, 12.2vw, 3.85rem);
    line-height: .96;
  }

  .home-hero__support {
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
    margin: -24px 12px 0;
  }

  .home-hero__support img {
    display: none;
  }

  .home-hero__proof {
    margin-top: 32px;
  }
}

/* Visual balance pass: calmer typography, tighter vertical rhythm. */
.section {
  padding: 76px 0;
}

.section-title {
  max-width: 700px;
  margin-bottom: 34px;
}

.section-title h2 {
  font-size: clamp(2.35rem, 3.9vw, 3.75rem);
  line-height: .96;
}

.section-title p {
  max-width: 620px;
}

.section-label {
  margin-bottom: 9px;
  font-size: 17px;
}

.home-hero {
  min-height: 650px;
  padding: 74px 0 52px;
}

.home-hero h1 {
  max-width: 720px;
  font-size: clamp(3.35rem, 4.7vw, 4.7rem);
  line-height: .98;
}

.home-hero__lead {
  max-width: 580px;
  font-size: 17px;
  line-height: 1.65;
}

.home-hero__visual {
  width: min(540px, 100%);
}

.home-hero__media {
  aspect-ratio: 16 / 10.5;
}

.home-hero__support {
  width: min(390px, calc(100% - 36px));
  margin-top: -28px;
}

.home-hero__proof {
  margin-top: 42px;
}

.home-hero__proof li {
  min-height: 86px;
  padding: 20px 26px;
}

.page-hero {
  min-height: 255px;
  padding: 42px 0 46px;
}

.page-hero__copy h1 {
  max-width: 760px;
  font-size: clamp(2.35rem, 3.55vw, 3.45rem);
  line-height: .98;
}

.page-hero__lead {
  max-width: 650px;
  font-size: 16px;
  line-height: 1.65;
}

.page-hero__media {
  width: min(390px, 100%);
}

.intro-panel,
.content-panel {
  padding: clamp(28px, 3.8vw, 42px);
}

.intro-panel h2,
.content-panel h2,
.content-panel h3,
.contact-panel h2,
.notice-panel h3 {
  font-size: clamp(2rem, 3vw, 2.65rem);
  line-height: 1.04;
}

.media-frame {
  box-shadow: 0 20px 54px rgba(28, 30, 34, .13);
}

.media-frame.tall {
  aspect-ratio: 4 / 4.25;
}

.card-grid {
  gap: 18px;
}

.info-card {
  min-height: 224px;
  padding: 32px 30px;
}

.info-card i {
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  font-size: 27px;
}

.info-card h3 {
  font-size: 1.85rem;
  line-height: 1.02;
}

.scan-types.section {
  padding: 72px 0;
}

.scan-types .section-title {
  margin-bottom: 30px;
}

.scan-types .info-card {
  min-height: 230px;
}

.feature-list li {
  padding-top: 4px;
  padding-bottom: 4px;
}

.faq-teaser {
  display: flex;
  gap: 28px;
  align-items: flex-end;
  justify-content: space-between;
  padding: clamp(30px, 4vw, 46px);
  background: #fff;
  border-top: 4px solid var(--film-orange);
  box-shadow: 0 20px 54px rgba(28, 30, 34, .1);
}

.faq-teaser .section-title {
  max-width: 820px;
  margin-bottom: 0;
}

.faq-teaser .btn {
  flex-shrink: 0;
}

.equipment-section .section-title {
  margin-bottom: 22px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0 18px;
}

.spec-grid div {
  padding: 18px;
  color: #fff;
  background: var(--film-black);
  border-left: 3px solid var(--film-orange);
}

.spec-grid span {
  display: block;
  color: var(--film-orange);
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 760;
  line-height: 1;
  text-transform: uppercase;
}

.spec-grid strong {
  display: block;
  margin-top: 7px;
  color: rgba(255,255,255,.88);
  font-size: 14px;
  line-height: 1.35;
}

.small-note {
  color: var(--film-muted);
  font-size: 14px;
}

.cta-panel {
  padding: clamp(38px, 5vw, 58px);
}

.cta-panel h2 {
  font-size: clamp(2.35rem, 4vw, 3.7rem);
  line-height: .98;
}

.cookie-consent {
  box-sizing: border-box;
  max-width: 620px;
  padding: 18px;
}

.cookie-consent .btn {
  min-height: 48px;
  padding: 13px 22px 11px;
}

@media (max-width: 1199.98px) {
  .home-hero h1 {
    font-size: clamp(3.1rem, 5.25vw, 4.35rem);
  }
}

@media (max-width: 991.98px) {
  .section {
    padding: 62px 0;
  }

  .home-hero__row {
    --bs-gutter-x: 1.5rem;
  }

  .home-hero {
    padding: 58px 0 46px;
  }

  .home-hero__visual {
    width: min(560px, 100%);
  }

  .home-hero__proof {
    margin-top: 32px;
  }

  .page-hero {
    padding: 38px 0 42px;
  }
}

@media (max-width: 767.98px) {
  .section {
    padding: 52px 0;
  }

  .section-title {
    margin-bottom: 26px;
  }

  .section-title h2 {
    font-size: clamp(2.15rem, 9vw, 3rem);
  }

  .home-hero h1 {
    font-size: clamp(2.55rem, 10.5vw, 3.45rem);
  }

  .home-hero__lead,
  .page-hero__lead {
    font-size: 15.5px;
  }

  .home-hero__proof li {
    min-height: 0;
    padding: 12px 0;
  }

  .intro-panel,
  .content-panel,
  .info-card {
    padding: 28px 24px;
  }

  .calculator-options {
    grid-template-columns: 1fr;
  }

  .pricing-table td:nth-child(2),
  .pricing-table th:nth-child(2) {
    width: auto;
  }

  .faq-teaser {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .cookie-consent {
    right: 10px;
    bottom: 82px;
    left: 10px;
    width: calc(100vw - 20px) !important;
    max-width: calc(100vw - 20px);
    max-height: 42vh;
    overflow: auto;
    gap: 12px;
    padding: 14px;
    font-size: 14px;
  }

  .cookie-consent p {
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  .cookie-consent__body,
  .cookie-consent__actions {
    width: 100%;
    min-width: 0;
  }

  .cookie-consent__actions {
    gap: 8px;
  }

  .cookie-consent .btn {
    min-height: 44px;
    padding: 11px 14px 9px;
    font-size: 15px;
  }
}

@media (max-width: 575.98px) {
  .home-hero__row {
    --bs-gutter-x: 1rem;
  }

  .home-hero__content,
  .home-hero__lead {
    width: 100%;
    max-width: 340px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .home-hero__content {
    text-align: center;
  }

  .home-hero__content .hero-actions {
    justify-content: center;
  }

  .home-hero {
    padding: 40px 0 36px;
  }

  .home-hero h1 {
    font-size: clamp(2.25rem, 10.2vw, 2.9rem);
    max-width: 340px;
    margin-right: auto;
    margin-left: auto;
  }

  .page-hero__copy h1 {
    font-size: clamp(2rem, 8.8vw, 2.65rem);
    overflow-wrap: anywhere;
  }

  .home-hero__media {
    aspect-ratio: 16 / 11;
  }

  .page-hero__copy,
  .page-hero__lead,
  .content-panel,
  .service-switcher {
    width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .page-hero__media {
    width: calc(100vw - 32px);
    max-width: 100%;
    margin-right: auto;
    margin-left: 0;
  }

  .pricing-calculator-panel h2 {
    font-size: clamp(1.8rem, 8vw, 2.3rem);
    overflow-wrap: anywhere;
  }

  .page-cenik .page-hero__copy h1 {
    max-width: 330px;
    font-size: 2rem;
    line-height: 1.08;
  }

  .page-cenik .page-hero__lead {
    max-width: 330px;
  }

  .page-cenik .pricing-calculator-panel h2 {
    max-width: 310px;
    font-size: 1.85rem;
    line-height: 1.08;
  }

  .home-hero__support {
    display: none;
  }

  .info-card h3 {
    font-size: 1.65rem;
  }
}

/* 2026-05-09: visual polish from page review */
.section-title h2 {
  font-size: clamp(2.15rem, 3.55vw, 3.45rem);
}

.content-panel h2,
.form-card h2,
.side-card h2,
.legal-content h2 {
  font-size: clamp(1.85rem, 3vw, 2.45rem);
}

.media-credit-frame {
  margin: 0;
}

.media-credit-frame figcaption {
  margin-top: 10px;
  color: var(--film-muted);
  font-size: 12px;
  line-height: 1.4;
}

.cookie-consent {
  left: 24px;
  right: auto;
  bottom: 24px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: flex-start;
  gap: 12px 16px;
  width: min(520px, calc(100vw - 48px));
  max-width: 520px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(198, 126, 20, .22);
  border-left: 5px solid var(--film-gold);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(255, 247, 235, .96)),
    radial-gradient(circle at 12% 12%, rgba(211, 143, 39, .2), transparent 38%);
  box-shadow: 0 24px 70px rgba(13, 18, 28, .18);
}

.cookie-consent::before {
  content: "8";
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  border-radius: 14px;
  background: linear-gradient(135deg, #111827, #2c3442);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .08), 0 10px 22px rgba(13, 18, 28, .2);
}

.cookie-consent__body,
.cookie-consent__actions {
  grid-column: 2;
  min-width: 0;
}

.cookie-consent__title {
  margin-bottom: 4px;
  color: var(--film-ink);
}

.cookie-consent__body p:last-child {
  margin-bottom: 0;
  color: var(--film-muted);
  line-height: 1.45;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 2px;
}

.cookie-consent .btn {
  min-height: 42px;
  padding: 10px 17px 8px;
  border-radius: 4px;
  font-size: 14px;
  letter-spacing: 0;
}

@media (max-width: 767.98px) {
  .section-title h2 {
    font-size: clamp(2rem, 8.2vw, 2.75rem);
  }

  .cookie-consent {
    left: 12px;
    right: 12px;
    bottom: 82px;
    grid-template-columns: 40px minmax(0, 1fr);
    width: auto !important;
    max-width: none;
    max-height: none;
    overflow: visible;
    gap: 10px 12px;
    padding: 14px;
  }

  .cookie-consent::before {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 21px;
  }

  .cookie-consent__actions {
    gap: 8px;
  }

  .cookie-consent .btn {
    min-height: 40px;
    padding: 9px 13px 7px;
    font-size: 13px;
  }
}

/* Final layout tuning after page-specific review comments. */
.home-hero::before {
  background:
    radial-gradient(circle at 50% 42%, transparent 0 18%, rgba(34,36,41,.1) 19%, rgba(34,36,41,.78) 58%, rgba(34,36,41,.9) 100%),
    linear-gradient(90deg, rgba(34,36,41,.88) 0%, rgba(34,36,41,.76) 45%, rgba(34,36,41,.66) 100%);
}

.home-hero__bg-slide {
  filter: grayscale(100%) contrast(1.04) brightness(.88);
}

@keyframes super8HeroFade {
  0%, 30% { opacity: .66; transform: scale(1.02); }
  38%, 90% { opacity: 0; transform: scale(1.05); }
  100% { opacity: .66; transform: scale(1.02); }
}

.feature-list {
  gap: 8px;
}

.feature-list li {
  padding-top: 4px;
  padding-bottom: 4px;
}

.content-panel h3:not(:first-child) {
  margin-top: 34px;
}

.step-list li::before {
  top: 50%;
  transform: translateY(-50%);
}

.page-domov main > .section > .container-xl > .row.align-items-center {
  align-items: stretch !important;
}

.page-domov main > .section > .container-xl > .row.align-items-center > [class*="col-"] {
  display: flex;
  flex-direction: column;
}

.page-domov .intro-panel,
.page-domov .media-frame {
  flex: 1 1 auto;
}

.page-domov .media-frame {
  min-height: 100%;
}

@media (max-width: 991.98px) {
  .page-domov .media-frame {
    min-height: 0;
  }
}

/* Mobile and tablet QA fixes. Keep this last so older review passes cannot override it. */
@media (max-width: 991.98px) {
  body {
    padding-top: 76px;
  }

  .site-header {
    top: 0;
  }

  .navbar {
    min-height: 76px;
  }

  .navbar .container-xl {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    align-items: center;
  }

  .navbar-brand {
    flex: 0 1 auto;
    min-width: 0;
  }

  .navbar-brand img {
    width: 170px;
    max-width: 48vw;
  }

  .navbar-toggler {
    display: inline-flex !important;
    visibility: visible;
    align-items: center;
    justify-content: center;
    flex: 0 0 46px;
    margin-left: auto;
  }

  .navbar-collapse {
    flex: 0 0 100%;
    width: 100%;
  }

  .nav-cta {
    width: 100%;
    min-height: 50px;
  }

  .hero-actions .btn {
    min-width: 0;
    white-space: normal;
  }

  .page-hero__media,
  .home-hero__media {
    max-width: 100%;
  }

  .cookie-consent {
    bottom: 76px;
  }
}

@media (max-width: 767.98px) {
  body {
    padding-top: 76px;
    padding-bottom: 68px;
  }

  .navbar-brand img {
    width: 152px;
    max-width: calc(100vw - 92px);
  }

  .page-hero {
    padding: 34px 0 38px;
  }

  .home-hero {
    padding: 42px 0 34px;
  }

  .home-hero h1,
  .page-hero__copy h1 {
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
  }

  .home-hero__proof {
    margin-top: 24px;
  }

  .content-panel,
  .intro-panel,
  .notice-panel,
  .contact-panel,
  .price-panel,
  .project-form {
    padding-right: 22px;
    padding-left: 22px;
  }

  .btn {
    min-height: 48px;
    padding: 13px 16px 11px;
    font-size: 15px;
    line-height: 1.15;
  }

  .mobile-sticky-cta {
    right: 8px;
    bottom: 8px;
    left: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mobile-sticky-cta a {
    min-width: 0;
    min-height: 48px;
    gap: 6px;
    padding: 0 6px;
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
  }

  .mobile-sticky-cta i {
    flex: 0 0 auto;
  }

  .cookie-consent {
    right: 10px;
    bottom: 64px;
    left: 10px;
    grid-template-columns: 1fr;
    width: auto !important;
    max-width: none;
    max-height: 32vh;
    overflow: auto;
    gap: 8px;
    padding: 12px;
  }

  .cookie-consent::before {
    display: none;
  }

  .cookie-consent__body,
  .cookie-consent__actions {
    grid-column: auto;
  }

  .cookie-consent__title {
    margin-bottom: 2px;
    font-size: 14px;
  }

  .cookie-consent__body p:last-child {
    font-size: 13px;
    line-height: 1.35;
  }

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

  .cookie-consent .btn {
    width: 100%;
    min-height: 38px;
    padding: 8px 8px 7px;
    font-size: 12px;
  }
}

@media (max-width: 420px) {
  body {
    padding-top: 72px;
  }

  .navbar {
    min-height: 72px;
  }

  .navbar-brand img {
    width: 142px;
  }

  .navbar-toggler {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .home-hero h1 {
    font-size: clamp(2.2rem, 10vw, 2.75rem);
  }

  .page-hero__copy h1 {
    font-size: clamp(1.9rem, 8.6vw, 2.45rem);
  }

  .section-title h2,
  .content-panel h2,
  .content-panel h3,
  .contact-panel h2,
  .notice-panel h3 {
    font-size: clamp(1.85rem, 8vw, 2.45rem);
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse:not(.show) {
    display: none !important;
    visibility: hidden !important;
    max-height: 0 !important;
    overflow: hidden !important;
  }

  .navbar-collapse:not(.show) .navbar-nav {
    display: none !important;
  }
}
