@charset "UTF-8";
:root {
  --lime: #b5e026;
  --lime2: #d4f55c;
  --dark: #0c0c0c;
  --mid: #161616;
  --card: #1e1e1e;
  --card2: #252525;
  --text: #f0ede6;
  --muted: #777;
  --border: rgba(255,255,255,0.07);
  --radius: 16px;
  --nav-h: 64px;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--dark);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  line-height: 1.65;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: "Lalezar", sans-serif;
}

.logo {
  font-family: "Lalezar", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
}
.logo span.d {
  color: var(--lime);
}
.logo span.cz {
  color: #444;
  font-size: 0.75em;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
.section {
  max-width: 1500px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
@media (min-width: 768px) {
  .section {
    padding: 5rem 4rem;
  }
}

.section-tag {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lime);
  font-weight: 500;
  margin-bottom: 0.6rem;
}

.section h2 {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 3rem;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  background: rgba(12, 12, 12, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) {
  nav {
    padding: 0 4rem;
  }
}

.nav-links {
  display: none;
  list-style: none;
}
.nav-links.is-open {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(12, 12, 12, 0.97);
  z-index: 99;
}
.nav-links.is-open a {
  font-size: 1.5rem;
  letter-spacing: 0.06em;
}
@media (min-width: 768px) {
  .nav-links {
    display: flex;
    gap: 2.5rem;
  }
}
.nav-links a {
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--text);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-cta {
  background: var(--lime);
  color: #000;
  border: none;
  padding: 0.55rem 1.4rem;
  border-radius: 100px;
  font-family: "Lalezar", sans-serif;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-cta:hover {
  background: var(--lime2);
  transform: scale(1.03);
}

.nav-cta {
  display: none;
}
@media (min-width: 768px) {
  .nav-cta {
    display: block;
  }
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.is-open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

#pano {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #0e1a10;
}

#pano-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  pointer-events: none;
}
#pano-placeholder .ph-icon {
  width: 72px;
  height: 72px;
  border: 2px solid rgba(181, 224, 38, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
#pano-placeholder p {
  font-size: 15px;
  color: rgba(181, 224, 38, 0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(12, 12, 12, 0.82) 0%, rgba(12, 12, 12, 0.4) 55%, rgba(12, 12, 12, 0.1) 100%);
  pointer-events: none;
  z-index: 2;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 1.5rem;
  right: 1.5rem;
  transform: translateY(-50%);
  z-index: 3;
}
@media (min-width: 768px) {
  .hero-content {
    left: 3rem;
    right: auto;
    max-width: 680px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(181, 224, 38, 0.1);
  border: 1px solid rgba(181, 224, 38, 0.25);
  color: var(--lime);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  animation: fadeUp 0.6s ease both;
}
.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.4rem;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero-content h1 em {
  font-style: normal;
  color: var(--lime);
}

.hero-content p {
  font-size: 1.05rem;
  font-weight: 300;
  margin-bottom: 2rem;
  animation: fadeUp 0.6s 0.2s ease both;
  color: rgba(240, 237, 230, 0.75);
}
@media (min-width: 768px) {
  .hero-content p {
    font-size: 1.15rem;
  }
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  animation: fadeUp 0.6s 0.3s ease both;
}

.btn-ghost {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  cursor: pointer;
  transition: gap 0.2s;
}
.btn-ghost:hover {
  gap: 12px;
}
.btn-ghost .circle {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: fadeUp 0.6s 0.5s ease both;
}
.scroll-hint .line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--lime), transparent);
  animation: scrollLine 2s infinite;
}

.pano-label {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 3;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 14px;
  color: #aaa;
  border: 1px solid var(--border);
}
@media (min-width: 768px) {
  .pano-label {
    font-size: 16px;
  }
}

.stats-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .stats-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  padding: 1.5rem 1.5rem;
  border-right: 1px solid var(--border);
  text-align: center;
}
.stat-item:last-child {
  border-right: none;
}
@media (max-width: calc(768px - 1px)) {
  .stat-item:nth-child(2) {
    border-right: none;
  }
}
@media (min-width: 768px) {
  .stat-item {
    padding: 2rem 2.5rem;
  }
}

.stat-num {
  font-family: "Lalezar", sans-serif;
  font-size: 2rem;
  color: var(--lime);
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .stat-num {
    font-size: 2.6rem;
  }
}

.stat-lbl {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-top: 3px;
}
@media (min-width: 768px) {
  .stat-lbl {
    font-size: 16px;
  }
}

.usecases {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .usecases {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1100px) {
  .usecases {
    grid-template-columns: repeat(3, 1fr);
  }
}

.uc-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: border-color 0.25s, transform 0.2s;
}
.uc-card:hover {
  border-color: rgba(181, 224, 38, 0.3);
  transform: translateY(-3px);
}

.uc-icon {
  width: 46px;
  height: 46px;
  background: rgba(181, 224, 38, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--lime);
  margin-bottom: 1.1rem;
}

.uc-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.uc-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
}

.tech-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tech-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.tech-dot {
  width: 10px;
  height: 10px;
  background: var(--lime);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.tech-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.tech-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
}

.krpano-note {
  margin-top: 2rem;
  background: rgba(181, 224, 38, 0.05);
  border: 1px solid rgba(181, 224, 38, 0.2);
  border-radius: var(--radius);
  padding: 1.4rem 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.krpano-note .kbadge {
  background: var(--lime);
  color: #000;
  font-family: "Lalezar", sans-serif;
  font-weight: 800;
  font-size: 16px;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.krpano-note p {
  font-size: 15px;
  color: rgba(240, 237, 230, 0.6);
}
.krpano-note a {
  color: var(--lime);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.whyme-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .whyme-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1100px) {
  .whyme-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.whyme-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.whyme-card i {
  font-size: 20px;
  color: var(--lime);
  margin-bottom: 0.8rem;
  display: block;
}
.whyme-card h4 {
  font-family: "Lalezar", sans-serif;
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}
.whyme-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.whyme-highlight {
  background: linear-gradient(135deg, #151f07, #111);
  border-color: rgba(181, 224, 38, 0.25);
}

.own-forever {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: rgba(181, 224, 38, 0.08);
  border: 1px solid rgba(181, 224, 38, 0.3);
  border-radius: 14px;
  padding: 1.4rem 1.8rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.own-forever i {
  font-size: 28px;
  color: var(--lime);
  flex-shrink: 0;
}
.own-forever strong {
  display: block;
  font-family: "Lalezar", sans-serif;
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 3px;
}
.own-forever span {
  font-size: 14px;
  color: var(--muted);
}

.ziskate-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .ziskate-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1100px) {
  .ziskate-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ziskate-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
}
.ziskate-item i {
  color: var(--lime);
  font-size: 16px;
  flex-shrink: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: stretch;
  padding-top: 28px;
}
@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1100px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  transition: border-color 0.25s;
  display: flex;
  flex-direction: column;
  overflow: visible;
}
.price-card:hover {
  border-color: rgba(181, 224, 38, 0.25);
}

.price-featured {
  border-color: rgba(181, 224, 38, 0.45);
  background: linear-gradient(160deg, #151f07, #111);
}

.price-top-bar {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.price-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--lime);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  box-shadow: 0 0 0 4px var(--dark);
}

.price-tag {
  font-family: "Lalezar", sans-serif;
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.price-amount {
  font-family: "Lalezar", sans-serif;
  font-size: 2.4rem;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.price-amount span {
  font-size: 1.2rem;
  color: var(--muted);
}

.price-unit {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.price-desc {
  font-size: 14px;
  color: rgba(240, 237, 230, 0.6);
  line-height: 1.55;
  margin-bottom: 1.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--border);
}

.price-list {
  list-style: none;
  margin-bottom: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.price-list li {
  font-size: 14px;
  color: rgba(240, 237, 230, 0.75);
  padding-left: 1.2rem;
  position: relative;
}
.price-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--lime);
  font-size: 12px;
}

.btn-price {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text);
  padding: 0.75rem 1rem;
  border-radius: 100px;
  font-family: "Lalezar", sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.btn-price:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-price-featured {
  background: var(--lime);
  border-color: var(--lime);
  color: #000;
}
.btn-price-featured:hover {
  background: var(--lime2);
  border-color: var(--lime2);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}
.price-table th {
  font-family: "Lalezar", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  text-align: left;
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}
.price-table td {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.price-table tr:last-child td {
  border-bottom: none;
}
.price-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}
.price-table .td-price {
  font-family: "Lalezar", sans-serif;
  font-size: 1.5rem;
  color: var(--lime);
}
.price-table .td-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(181, 224, 38, 0.1);
  color: var(--lime);
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid rgba(181, 224, 38, 0.2);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--border);
}
.process-step:last-child {
  border-bottom: none;
}
@media (min-width: 768px) {
  .process-step {
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
  }
}

.step-num {
  font-family: "Lalezar", sans-serif;
  font-size: 2.5rem;
  color: rgba(181, 224, 38, 0.2);
  line-height: 1;
  min-width: 48px;
}

.step-body h4 {
  font-family: "Lalezar", sans-serif;
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}
.step-body p {
  font-size: 15px;
  color: var(--muted);
}

.refs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .refs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ref-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  transition: border-color 0.2s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.ref-card:hover {
  background: var(--card2);
  border-color: rgba(181, 224, 38, 0.25);
}

.ref-name {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 3px;
}

.ref-type {
  font-size: 12px;
  color: var(--muted);
}

.ref-meta {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.ref-pill {
  font-size: 11px;
  background: rgba(181, 224, 38, 0.08);
  color: var(--lime);
  padding: 2px 8px;
  border-radius: 100px;
  border: 1px solid rgba(181, 224, 38, 0.15);
}

.ref-arrow {
  color: var(--lime);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.ref-card:hover .ref-arrow {
  transform: translateX(4px);
}

.ref-img-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 480px) {
  .ref-img-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1100px) {
  .ref-img-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1400px) {
  .ref-img-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ref-img-card {
  display: block;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s;
}
.ref-img-card:hover {
  border-color: rgba(181, 224, 38, 0.35);
  transform: translateY(-3px);
}

.ref-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}
.ref-img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.ref-img-card:hover .ref-img-wrap img {
  transform: scale(1.05);
}

.ref-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}
.ref-img-overlay i {
  font-size: 2.5rem;
  color: var(--lime);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.ref-img-card:hover .ref-img-overlay {
  opacity: 1;
}

.ref-img-body {
  padding: 0.9rem 1.1rem;
}
.ref-img-body .ref-name {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 2px;
}
.ref-img-body .ref-type {
  font-size: 12px;
  color: var(--muted);
}

.cta-section {
  padding: 0 1.5rem 4rem;
  max-width: 1500px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .cta-section {
    padding: 0 3rem 6rem;
  }
}

.cta-box {
  background: linear-gradient(135deg, #131f07, #0e1a06);
  border: 1px solid rgba(181, 224, 38, 0.18);
  border-radius: 24px;
  padding: 2rem 1.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .cta-box {
    padding: 4rem;
  }
}
.cta-box h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 0.75rem;
}
.cta-box p {
  color: var(--muted);
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  max-width: 680px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .contact-form {
    grid-template-columns: 1fr 1fr;
  }
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.contact-form input::-moz-placeholder, .contact-form select::-moz-placeholder, .contact-form textarea::-moz-placeholder {
  color: var(--muted);
}
.contact-form input::placeholder,
.contact-form select::placeholder,
.contact-form textarea::placeholder {
  color: var(--muted);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(181, 224, 38, 0.4);
}
.contact-form select {
  color: var(--muted);
}
.contact-form select option {
  background: #1e1e1e;
  color: var(--text);
}
@media (min-width: 768px) {
  .contact-form .span2 {
    grid-column: span 2;
  }
}
.contact-form textarea {
  resize: vertical;
  min-height: 90px;
}

.btn-submit {
  background: var(--lime);
  color: #000;
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-family: "Lalezar", sans-serif;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 0.5rem;
  width: 100%;
}
@media (min-width: 768px) {
  .btn-submit {
    grid-column: span 2;
  }
}
.btn-submit:hover {
  background: var(--lime2);
  transform: scale(1.02);
}

footer {
  border-top: 1px solid var(--border);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  color: var(--muted);
  font-size: 15px;
}
@media (min-width: 768px) {
  footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 2rem 3rem;
  }
}
footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (min-width: 768px) {
  footer .footer-links {
    gap: 1.5rem;
  }
}
footer .footer-links a:hover {
  color: var(--lime);
}

.projekt-hero {
  padding-top: var(--nav-h);
  background: linear-gradient(160deg, #111a06, #0c0c0c);
  border-bottom: 1px solid var(--border);
}
.projekt-hero .projekt-hero-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 3rem 1.5rem 2.5rem;
}
@media (min-width: 768px) {
  .projekt-hero .projekt-hero-inner {
    padding: 4rem 4rem 3rem;
  }
}

.projekt-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  transition: color 0.2s, gap 0.2s;
}
.projekt-back:hover {
  color: var(--lime);
  gap: 0.75rem;
}

.projekt-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(181, 224, 38, 0.1);
  border: 1px solid rgba(181, 224, 38, 0.25);
  color: var(--lime);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.projekt-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.projekt-hero-sub {
  color: rgba(240, 237, 230, 0.65);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  max-width: 640px;
}

.projekt-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 14px;
  color: var(--muted);
}
.projekt-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.projekt-meta span i {
  color: var(--lime);
  font-size: 13px;
}

.scene-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 480px) {
  .scene-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1100px) {
  .scene-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1400px) {
  .scene-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.scene-card {
  display: block;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s;
}
.scene-card:hover {
  border-color: rgba(181, 224, 38, 0.35);
  transform: translateY(-3px);
}

.scene-thumb {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}
.scene-thumb.no-img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #141f06;
}
.scene-thumb.no-img::after {
  content: "360°";
  font-family: "Lalezar", sans-serif;
  font-size: 2rem;
  color: rgba(181, 224, 38, 0.25);
}
.scene-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.scene-card:hover .scene-thumb img {
  transform: scale(1.06);
}

.scene-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}
.scene-overlay i {
  font-size: 2.5rem;
  color: var(--lime);
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
}

.scene-card:hover .scene-overlay {
  opacity: 1;
}

.scene-body {
  padding: 0.85rem 1.1rem;
}

.scene-name {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 3px;
}

.scene-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}

.scene-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--muted);
}
.scene-empty i {
  font-size: 3rem;
  color: rgba(181, 224, 38, 0.2);
  display: block;
  margin-bottom: 1rem;
}
.scene-empty p {
  font-size: 1.05rem;
}/*# sourceMappingURL=main.css.map */