* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito Sans', sans-serif;
  background: #0a0a0f;
  color: #ffffff;
  font-weight: 400;
}
h1, h2, h3, h4 {
  font-family: 'Teko', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* === SVG ICONS === */
.ico {
  width: 28px;
  height: 28px;
  stroke: #f88110;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: square;
  stroke-linejoin: miter;
  flex-shrink: 0;
}
.ico-lg {
  width: 36px;
  height: 36px;
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  padding: 0 40px;
  height: 56px;
  background: rgba(10,10,15,0.92);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  z-index: 100;
  backdrop-filter: blur(14px);
}
.nav .logo {
  font-family: 'Teko', sans-serif;
  font-size: 20px;
  color: #f88110;
  margin-right: auto;
  letter-spacing: 4px;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.logo-arrow {
  margin-right: 8px;
  vertical-align: middle;
}
.nav a {
  color: rgba(255,255,255,1);
  text-decoration: none;
  margin-left: 28px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav a:hover { color: #f88110; }
.nav-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 32px;
  padding-left: 32px;
  border-left: 1px solid rgba(255,255,255,0.2);
}
.nav-contact-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #f88110 !important;
  font-size: 14px !important;
  font-weight: 800;
  white-space: nowrap;
  text-decoration: underline !important;
  letter-spacing: 0.5px !important;
  margin-left: 0 !important;
}
.nav-contact-item:hover {
  color: #fff !important;
}
.nav-contact-item svg {
  flex-shrink: 0;
}

/* === HERO === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('foto/hrad/strecha_hrad.jpeg') center 15%/cover no-repeat;
  filter: brightness(0.85) contrast(1.1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,15,0.1) 0%, rgba(10,10,15,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 50px 100px;
  max-width: 900px;
}
.hero-tag {
  font-size: 13px;
  color: #f88110;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-tag::before {
  content: '';
  width: 40px;
  height: 2px;
  background: #f88110;
}
.hero h1 {
  font-size: 80px;
  color: #fff;
  line-height: 1.0;
  margin-bottom: 20px;
  letter-spacing: 5px;
}
.hero h1 span { color: #fff; }
.hero p {
  font-size: 17px;
  color: rgba(255,255,255,1);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.7;
  font-weight: 300;
}
.btn {
  display: inline-block;
  padding: 16px 44px;
  background: #f88110;
  color: #fff;
  font-family: 'Teko', sans-serif;
  font-size: 20px;
  letter-spacing: 3px;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.btn:hover {
  background: #e0720e;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(248,129,16,0.3);
}
.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  color: #fff;
}
.hero-buttons { display: flex; gap: 12px; }

/* === SECTIONS === */
.section {
  padding: 100px 50px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-full { padding: 100px 50px; }
.section-header {
  margin-bottom: 60px;
}
.section-tag {
  font-size: 12px;
  color: #f88110;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-tag::before {
  content: '';
  width: 30px;
  height: 2px;
  background: #f88110;
}
.section-title, h2.section-title {
  font-size: 48px;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: 4px;
}
.section-title span { color: #fff; }
.section-sub {
  font-size: 17px;
  color: rgba(255,255,255,1);
  font-weight: 300;
  letter-spacing: 0.5px;
}
.divider {
  border: none;
  border-top: 2px solid rgba(255,255,255,0.2);
  max-width: 1200px;
  margin: 0 auto;
}

/* === ABOUT === */
.about-row {
  display: flex;
  gap: 60px;
  align-items: center;
}
.about-img {
  flex: 0 0 45%;
  overflow: hidden;
  position: relative;
  max-height: 420px;
}
.about-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.about-img-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #f88110;
}
.about-text { flex: 1; }
.about-text p {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,1);
  margin-bottom: 20px;
  font-weight: 300;
}
.about-text strong { color: #f88110; font-weight: 600; }
.about-stats {
  display: flex;
  gap: 2px;
  margin-top: 40px;
  background: rgba(255,255,255,0.04);
}
.stat {
  flex: 1;
  padding: 32px 24px;
  text-align: center;
  background: #0a0a0f;
}
.stat .number {
  font-family: 'Teko', sans-serif;
  font-size: 76px;
  color: #fff;
  letter-spacing: 3px;
  line-height: 1;
  margin-bottom: 8px;
}
.stat .label {
  font-size: 13px;
  color: rgba(255,255,255,1);
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* === SERVICES === */
.services-split {
  display: flex;
  gap: 0;
}
.services-split-img {
  flex: 0 0 50%;
  overflow: hidden;
  position: relative;
}
.services-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.services-split-img::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: #f88110;
}
.services-split-content {
  flex: 1;
  padding: 40px 48px;
}
.services-split-content h3 {
  font-size: 34px;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 3px;
}
.services-split-content h3 span { color: #f88110; }
.services-split-content > p {
  font-size: 17px;
  color: rgba(255,255,255,1);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 12px;
}
.services-category {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.services-category h4 {
  font-size: 18px;
  color: #f88110;
  letter-spacing: 3px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.services-category h4 .ico {
  width: 20px;
  height: 20px;
}
.service-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  font-size: 17px;
  color: rgba(255,255,255,1);
  font-weight: 400;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}
.service-item:hover {
  color: rgba(255,255,255,0.95);
  padding-left: 8px;
}
.service-item .dash {
  width: 16px;
  height: 2px;
  background: #f88110;
  flex-shrink: 0;
}

/* === PLOSINA === */
.plosina-row {
  display: flex;
  gap: 60px;
  align-items: stretch;
  margin-bottom: 60px;
}
.plosina-text { flex: 1; }
.plosina-text h3 {
  font-size: 34px;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 3px;
}
.plosina-text h3 span { color: #f88110; }
.plosina-text p {
  font-size: 17px;
  color: rgba(255,255,255,1);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 32px;
}
.plosina-img {
  flex: 0 0 45%;
  overflow: hidden;
  position: relative;
}
.plosina-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #0a0a0f;
}
.plosina-img::before {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 100%;
  height: 4px;
  background: #f88110;
  z-index: 2;
}
.platform-stats {
  display: flex;
  gap: 2px;
  margin-bottom: 50px;
  background: rgba(255,255,255,0.04);
}
.platform-stat {
  flex: 1;
  text-align: center;
  background: #0a0a0f;
  padding: 40px 16px;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 220px;
}
.platform-stat:hover {
  background: rgba(247,127,0,0.04);
}
.stat-height {
  flex-direction: column !important;
  position: relative;
}
.stat-height .stat-text { text-align: center; }
.arrow-vertical {
  opacity: 0.5;
  position: absolute;
  left: 60px;
  top: 50%;
  transform: translateY(-50%);
}
.platform-stat:hover .arrow-vertical { opacity: 0.8; }
.stat-arrow-h { opacity: 0.5; margin-top: 12px; }
.platform-stat:hover .stat-arrow-h { opacity: 0.8; }
.stat-rotation { position: relative; }
.stat-rotation .stat-num-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.stat-rotation .stat-circle {
  width: 50px;
  height: 50px;
  border: 2.5px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  border-bottom-color: transparent;
  position: relative;
  flex-shrink: 0;
}
.stat-rotation .stat-circle::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 5px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 8px solid rgba(255,255,255,0.4);
  transform: rotate(-30deg);
}
.platform-stat:hover .stat-circle { border-color: rgba(255,255,255,1); border-bottom-color: transparent; }
.platform-stat:hover .stat-circle::after { border-top-color: rgba(255,255,255,1); }
.platform-stat .label {
  font-size: 12px;
  color: rgba(255,255,255,1);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.platform-stat .number {
  font-family: 'Teko', sans-serif;
  font-size: 68px;
  color: #f88110;
  letter-spacing: 3px;
  line-height: 1;
}
.price-split {
  display: flex;
  gap: 40px;
  align-items: stretch;
}
.price-rows { flex: 1; }
.price-img {
  flex: 0 0 40%;
  overflow: hidden;
  position: relative;
}
.price-img::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: #f88110;
  z-index: 2;
}
.price-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  position: relative;
}
.price-row:last-child { border-bottom: none; }
.price-hours {
  font-family: 'Teko', sans-serif;
  font-size: 26px;
  color: #fff;
  letter-spacing: 2px;
  white-space: nowrap;
  min-width: 120px;
}
.price-line {
  flex: 1;
  border-bottom: 1px dashed rgba(255,255,255,0.15);
  margin-bottom: 6px;
}
.price-value {
  font-family: 'Teko', sans-serif;
  font-size: 36px;
  color: #f88110;
  letter-spacing: 2px;
  white-space: nowrap;
}
.price-value span {
  font-size: 14px;
  color: rgba(255,255,255,1);
  letter-spacing: 1px;
  margin-left: 6px;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
}
.price-row-best {
  background: rgba(248,129,16,0.04);
  padding: 20px 16px;
  margin: 0 -16px;
  border-left: 3px solid #f88110;
}
.price-best-tag {
  position: absolute;
  right: 16px;
  top: 6px;
  font-size: 10px;
  color: #f88110;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}
.pricing-title {
  font-size: 28px;
  color: #fff;
  letter-spacing: 3px;
}
.pricing-note {
  font-size: 17px;
  color: rgba(255,255,255,1);
  margin-top: 12px;
  letter-spacing: 0.5px;
  line-height: 1.7;
  font-weight: 300;
  max-width: 600px;
  text-align: left;
}
.price-row-small .price-hours {
  font-size: 26px;
  color: #fff;
}

/* === GALLERY === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 4px;
}
.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s, filter 0.5s;
  filter: brightness(0.8) contrast(1.05);
}
.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.95) contrast(1.05);
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* === WHY === */
.why-rows {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 60px;
}
.why-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: all 0.2s;
}
.why-row:nth-child(1),
.why-row:nth-child(2) { border-top: 1px solid rgba(255,255,255,0.2); }
.why-row:hover {
  padding-left: 12px;
  background: rgba(248,129,16,0.02);
}
.why-num {
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-num .ico {
  width: 32px;
  height: 32px;
  opacity: 1;
  stroke-width: 2;
  transition: opacity 0.2s;
}
.why-content h4 {
  font-family: 'Teko', sans-serif;
  font-size: 22px;
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.why-content p {
  font-size: 17px;
  color: rgba(255,255,255,1);
  line-height: 1.7;
  font-weight: 300;
}

/* === CONTACT === */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.2);
  margin-bottom: 0;
}
.contact-card {
  background: #0a0a0f;
  padding: 32px 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-card .ico-wrap {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(247,127,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card .ico-wrap .ico {
  width: 22px;
  height: 22px;
}
.contact-card p {
  font-size: 17px;
  color: rgba(255,255,255,1);
  line-height: 1.7;
  font-weight: 400;
}
.contact-card strong { color: #fff; font-weight: 600; }
.contact-card a { transition: color 0.2s; }
.contact-card a:hover { color: #fff !important; }

/* === FOOTER === */
.footer {
  padding: 48px 50px;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.footer-left {
  font-size: 13px;
  color: rgba(255,255,255,1);
}
.footer-left span { color: #f88110; }
.footer-logo {
  font-family: 'Teko', sans-serif;
  font-size: 20px;
  color: #f88110;
  text-decoration: none;
  letter-spacing: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.footer-links { display: flex; gap: 28px; }
.footer-links a {
  color: rgba(255,255,255,1);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-links a:hover { color: #f88110; }

/* === PAGE LOADER === */
.loader {
  position: fixed;
  inset: 0;
  background: #0a0a0f;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease 0.3s, visibility 0.5s ease 0.3s;
}
.loader.exit .loader-arrow { animation: loaderArrowExit 0.5s ease forwards; }
.loader.exit .loader-text,
.loader.exit .loader-line { animation: loaderFadeOut 0.3s ease forwards; }
.loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-arrow { opacity: 0; transform: translateY(20px); animation: loaderArrow 0.6s ease forwards 0.2s; }
.loader-text {
  font-family: 'Teko', sans-serif;
  font-size: 28px;
  color: #f88110;
  letter-spacing: 6px;
  margin-top: 16px;
  opacity: 0;
  animation: loaderText 0.5s ease forwards 0.6s;
}
.loader-line { width: 0; height: 2px; background: #f88110; margin-top: 20px; animation: loaderLine 0.8s ease forwards 0.9s; }
@keyframes loaderArrow { to { opacity: 1; transform: translateY(0); } }
@keyframes loaderText { to { opacity: 1; } }
@keyframes loaderLine { to { width: 120px; } }
@keyframes loaderArrowExit { 0% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(-50vh); } }
@keyframes loaderFadeOut { to { opacity: 0; } }

/* === SCROLL ANIMATIONS === */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* === BACK TO TOP === */
.back-to-top {
  position: fixed;
  bottom: 36px;
  right: 36px;
  width: 48px;
  height: 48px;
  background: #f88110;
  border: none;
  cursor: pointer;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  transform: translateY(10px);
}
.back-to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: #e0720e; }
.back-to-top svg { width: 20px; height: 20px; }

/* === GALLERY HOVER OVERLAY === */
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(248,129,16,0.0);
  transition: background 0.3s;
  z-index: 1;
  pointer-events: none;
}
.gallery-item:hover::after { background: rgba(248,129,16,0.25); }
.gallery-item::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%23fff' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3Cpath d='M11 8v6M8 11h6'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.gallery-item:hover::before { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* === PARALLAX HERO === */
.hero-bg { will-change: transform; }

/* === ACCENT LINE ANIMATION === */
.about-img-accent { height: 0; transition: height 1.5s ease; }
.about-img.in-view .about-img-accent { height: 100%; }
.services-split-img::after { height: 0; transition: height 1.5s ease; }
.services-split-img.in-view::after { height: 100%; }
.plosina-img::before { width: 0; transition: width 1.5s ease; }
.plosina-img.in-view::before { width: 100%; }
.price-img::before { width: 0 !important; transition: width 1.5s ease; }
.price-img.in-view::before { width: 100% !important; }

/* === STAGGERED SERVICES === */
.service-item { opacity: 0; transform: translateX(-10px); transition: opacity 0.4s ease, transform 0.4s ease; }
.services-category.in-view .service-item { opacity: 1; transform: translateX(0); }
.services-category.in-view .service-item:nth-child(1) { transition-delay: 0.1s; }
.services-category.in-view .service-item:nth-child(2) { transition-delay: 0.2s; }
.services-category.in-view .service-item:nth-child(3) { transition-delay: 0.3s; }
.services-category.in-view .service-item:nth-child(4) { transition-delay: 0.4s; }
.services-category.in-view .service-item:nth-child(5) { transition-delay: 0.5s; }

/* === NAV SHRINK === */
.nav { transition: height 0.3s, padding 0.3s; }
.nav.scrolled { height: 46px; }
.nav.scrolled .logo { font-size: 19px; }
.nav.scrolled .logo-arrow { width: 12px; height: 21px; }
@media (max-width: 900px) {
  .nav { height: 46px; }
  .nav .logo { font-size: 19px; }
  .nav .logo-arrow { width: 12px; height: 21px; }
}

/* === WHY ICONS ANIMATION === */
.why-num .ico { transform: scale(0.6); transition: opacity 0.4s, transform 0.4s; }
.reveal.visible .why-num .ico { transform: scale(1); }
.reveal.visible .why-row:nth-child(1) .why-num .ico { transition-delay: 0.1s; }
.reveal.visible .why-row:nth-child(2) .why-num .ico { transition-delay: 0.15s; }
.reveal.visible .why-row:nth-child(3) .why-num .ico { transition-delay: 0.2s; }
.reveal.visible .why-row:nth-child(4) .why-num .ico { transition-delay: 0.25s; }
.reveal.visible .why-row:nth-child(5) .why-num .ico { transition-delay: 0.3s; }
.reveal.visible .why-row:nth-child(6) .why-num .ico { transition-delay: 0.35s; }

/* === SCROLL OFFSET === */
.section[id] { scroll-margin-top: 70px; }
#pricing { scroll-margin-top: 70px; }

/* === HAMBURGER MENU === */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  margin-left: 16px;
  background: none;
  border: none;
  z-index: 102;
}
.hamburger span { width: 24px; height: 2px; background: #f88110; transition: all 0.3s; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.hamburger.active { position: fixed; right: 24px; top: 14px; z-index: 9999; display: flex; }
.hamburger.active span { background: #fff; width: 28px; height: 3px; }
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,15,0.97);
  z-index: 101;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  z-index: 9999;
  line-height: 1;
  padding: 4px 12px;
  transition: color 0.2s;
}
.mobile-menu-close:hover { color: #f88110; }
.mobile-menu.active { display: flex; animation: menuFadeIn 0.3s ease; }
@keyframes menuFadeIn { from { opacity: 0; } to { opacity: 1; } }
.mobile-menu a { opacity: 0; transform: translateY(10px); }
.mobile-menu.active a { animation: menuItemIn 0.3s ease forwards; }
.mobile-menu.active a:nth-child(2) { animation-delay: 0.05s; }
.mobile-menu.active a:nth-child(3) { animation-delay: 0.1s; }
.mobile-menu.active a:nth-child(4) { animation-delay: 0.15s; }
.mobile-menu.active a:nth-child(5) { animation-delay: 0.2s; }
.mobile-menu.active a:nth-child(6) { animation-delay: 0.25s; }
.mobile-menu.active a:nth-child(7) { animation-delay: 0.3s; }
.mobile-menu.active .mobile-menu-contact { opacity: 0; animation: menuItemIn 0.3s ease 0.35s forwards; }
@keyframes menuItemIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.mobile-menu a {
  font-family: 'Teko', sans-serif;
  font-size: 32px;
  color: #fff;
  text-decoration: none;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 14px 0;
  transition: color 0.2s;
}
.mobile-menu a:hover,
.mobile-menu a.active { color: #f88110; }
.mobile-menu .mobile-menu-contact {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.mobile-menu .mobile-menu-contact a {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 16px;
  color: #f88110;
  font-weight: 700;
  text-decoration: underline;
  letter-spacing: 0.5px;
}

/* === GALLERY SHOW MORE === */
.gallery-grid .gallery-item:nth-child(n+16) { display: none; }
@media (max-width: 900px) {
  .gallery-grid .gallery-item:nth-child(n+7) { display: none; }
  .gallery-grid.expanded .gallery-item:nth-child(n+7) { display: block; }
}
.gallery-grid.expanded .gallery-item:nth-child(n+16) { display: block; }
.gallery-more { text-align: center; margin-top: 32px; }
.gallery-more .btn { background: transparent; border: 2px solid #f88110; color: #f88110; }
.gallery-more .btn:hover { background: #f88110; color: #fff; }

/* === BEFORE AFTER === */
.ba-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 2px;
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
  aspect-ratio: 4/3;
}
.ba-container img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-after {
  position: absolute;
  inset: 0;
  clip-path: inset(0 50% 0 0);
}
.ba-after img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: rgba(255,255,255,0.9);
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
}
.ba-handle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background: #f88110;
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(0,0,0,0.4), 0 0 0 3px rgba(255,255,255,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.ba-container:hover .ba-handle::before,
.ba-container:active .ba-handle::before {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 24px rgba(248,129,16,0.5), 0 0 0 3px rgba(255,255,255,0.5);
}
.ba-handle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  z-index: 3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' fill='none' stroke='%23fff' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M10 8l-5 6 5 6'/%3E%3Cpath d='M18 8l5 6-5 6'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.ba-label {
  position: absolute;
  bottom: 16px;
  padding: 6px 16px;
  background: rgba(10,10,15,0.7);
  backdrop-filter: blur(4px);
  color: #fff;
  font-family: 'Teko', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.3s;
}
.ba-label-before { right: 16px; }
.ba-label-after { left: 16px; }
@keyframes baIntro {
  0% { left: 80%; }
  100% { left: 50%; }
}
@keyframes baIntroClip {
  0% { clip-path: inset(0 20% 0 0); }
  100% { clip-path: inset(0 50% 0 0); }
}
.ba-container.ba-animate .ba-handle {
  animation: baIntro 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.ba-container.ba-animate .ba-after {
  animation: baIntroClip 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
@media (max-width: 480px) {
  .ba-container { aspect-ratio: 16/9; }
  .ba-label { font-size: 14px; padding: 4px 10px; }
  .ba-handle::before { width: 44px; height: 44px; }
  .ba-handle::after { width: 22px; height: 22px; }
}

/* === LIGHTBOX === */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  z-index: 1001;
  font-family: 'Teko', sans-serif;
  letter-spacing: 0;
  transition: color 0.2s;
}
.lightbox-close:hover { color: #f88110; }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 48px;
  color: rgba(255,255,255,1);
  cursor: pointer;
  z-index: 1001;
  padding: 20px;
  transition: color 0.2s;
  user-select: none;
}
.lightbox-nav:hover { color: #f88110; }
.lightbox-prev { left: 10px; }
.lightbox-next { right: 10px; }

/* === LIGHTBOX COUNTER === */
.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 2px;
  z-index: 1001;
}

/* === FOCUS STYLES === */
a:focus-visible, button:focus-visible { outline: 2px solid #f88110; outline-offset: 2px; }

/* === NAV ACTIVE === */
.nav a.active { color: #f88110; }

/* === MOBILE CTA BAR === */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99;
  background: rgba(10,10,15,0.95);
  border-top: 1px solid rgba(248,129,16,0.3);
  padding: 10px 16px;
  backdrop-filter: blur(14px);
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.3s, transform 0.3s;
}
.mobile-cta.show { opacity: 1; transform: translateY(0); }
.mobile-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #f88110;
  color: #fff;
  text-decoration: none;
  padding: 14px;
  font-family: 'Teko', sans-serif;
  font-size: 18px;
  letter-spacing: 3px;
}
.mobile-cta a:hover { background: #e0720e; }
@media (max-width: 900px) {
  .mobile-cta { display: block; opacity: 0; transform: translateY(100%); }
  .back-to-top { bottom: 90px; right: 20px; width: 42px; height: 42px; }
}

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .nav-contact { display: none; }
  .nav a { margin-left: 24px; font-size: 13px; }
  .hero h1 { font-size: 64px; }
  .section-title { font-size: 40px; }
  .stat .number { font-size: 60px; }
  .platform-stat .number { font-size: 54px; }
  .platform-stat { min-height: 180px; padding: 30px 12px; }
  .price-value { font-size: 30px; }
  .why-rows { gap: 0 36px; }
  .contact-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav { padding: 0 24px; }
  .nav a:not(.logo):not(.nav-contact-item) { display: none; }
  .hamburger { display: flex; }
  .nav-contact { display: none; }
  .hero-bg { background-position: 85% 15%; }
  .hero h1 { font-size: 48px; letter-spacing: 3px; }
  .hero p { font-size: 17px; }
  .section-sub { font-size: 17px; }
  .contact-card p { font-size: 17px; }
  .hero-content { padding: 0 24px 60px; }
  .hero-buttons { flex-direction: column; gap: 10px; }
  .hero-buttons .btn { text-align: center; font-size: 24px; padding: 18px 40px; }
  .about-row, .services-split, .plosina-row { flex-direction: column; }
  .contact-cards { grid-template-columns: 1fr; }
  .about-img, .services-split-img, .plosina-img { flex: auto; }
  .services-split-content { padding: 30px 24px; }
  .services-split-content h3 { font-size: 28px; }
  .service-item { transition: none; }
  .service-item:hover { color: rgba(255,255,255,1); padding-left: 0; }
  .why-row { transition: none; }
  .why-row:hover { padding-left: 0; background: transparent; }
  .about-img img, .plosina-img img { min-height: 250px; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .gallery-item.tall { grid-row: span 1; }
  .why-rows { grid-template-columns: 1fr; }
  .why-num { font-size: 40px; min-width: 50px; }
  .section, .section-full { padding: 60px 24px; }
  .section-title { font-size: 34px; }
  .stat .number { font-size: 48px; }
  .platform-stats { flex-direction: column; }
  .platform-stat { min-height: auto; padding: 24px 16px; }
  .platform-stat .number { font-size: 50px; }
  .stat-height .label { margin-bottom: 12px; }
  .arrow-vertical { position: absolute; left: calc(50% - 80px); top: auto; bottom: 20px; transform: none; height: 50px; }
  .price-split { flex-direction: column; }
  .price-hours { font-size: 22px; min-width: 90px; }
  .price-value { font-size: 28px; }
  .plosina-text h3 { font-size: 28px; }
  .footer { flex-direction: column; gap: 24px; text-align: center; padding-bottom: 100px; }
  .footer-links { display: none; }
  .scroll-indicator { display: none; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 38px; letter-spacing: 2px; }
  .section-title { font-size: 28px; }
  .about-text p { font-size: 17px; }
  .about-stats { flex-direction: column; }
  .stat { padding: 20px 16px; }
  .stat .number { font-size: 40px; }
  .stat .label { font-size: 11px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .btn { padding: 14px 32px; font-size: 16px; }
  .hero-buttons .btn { font-size: 22px; padding: 16px 28px; }
  .loader-text { font-size: 22px; letter-spacing: 4px; }
  .about-row { gap: 30px; }
  .section, .section-full { padding: 48px 16px; }
}
