:root {
  --bg: #070a12;
  --bg-soft: #0d1324;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.1);
  --text: #eef4ff;
  --muted: #a9b6cf;
  --faint: #71809b;
  --line: rgba(255, 255, 255, 0.12);
  --brand: #5bbefc;
  --brand-2: #2a4bcc;
  --brand-3: rgb(183, 140, 255);
  --danger: #ff8f8f;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background:
    radial-gradient(circle at top left, rgba(105, 167, 255, 0.2), transparent 34rem),
    radial-gradient(circle at 80% 10%, rgba(183, 140, 255, 0.14), transparent 30rem),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

body.no-scroll { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  z-index: 1000;
  padding: 0.8rem 1rem;
  background: var(--brand);
  color: #04120d;
  border-radius: var(--radius-sm);
}
.skip-link:focus { left: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(7, 10, 18, 0.78);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 850;
  letter-spacing: -0.04em;
  font-size: 1.15rem;
}

.logo-image {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
}

.logo-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #071016;
  box-shadow: 0 10px 30px rgba(183, 140, 255, 0.22);
}
.logo-mark svg { width: 23px; height: 23px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  color: var(--muted);
  font-size: 1.1rem;
}
.nav-links a {
  transition: color 180ms ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: var(--text);
  cursor: pointer;
}
.mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  margin: 4px auto;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}
.mobile-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.88rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 750;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, #62c7ff 0%, #4daaf4 52%, #3c78e8 100%);
  background-size: 140% 140%;
  background-position: center;
  color: #06111a;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 16px 36px rgba(105,167,255,0.18);
}
.btn-secondary {
  background: rgba(255,255,255,0.07);
  border-color: var(--line);
  color: var(--text);
}
.btn-small { padding: 0.68rem 0.95rem; font-size: 0.9rem; }

main { overflow: hidden; }
main > section {
  animation: content-fade-in 640ms ease both;
}
main > section:nth-child(2) { animation-delay: 90ms; }
main > section:nth-child(3) { animation-delay: 150ms; }
main > section:nth-child(4) { animation-delay: 210ms; }
main > section:nth-child(n + 5) { animation-delay: 260ms; }

@keyframes content-fade-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  main > section {
    animation: none;
  }
}
.section { padding: 100px 0; }
.section-tight { padding: 72px 0; }
.section-alt { background: rgba(255,255,255,0.025); border-block: 1px solid rgba(255,255,255,0.06); }

.hero {
  position: relative;
  padding: 92px 0 76px;
}
.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 58px;
  align-items: center;
}
.hero-grid > *:first-child { flex: 1 1 0; }
.hero-grid > *:last-child { flex: 1.08 1 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brand);
  background: rgba(183, 140, 255, 0.08);
  font-weight: 750;
  font-size: 0.86rem;
}
.hero h1, .page-hero h1 {
  margin: 0 0 1.1rem;
  font-size: clamp(2.55rem, 7vw, 5.65rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}
.gradient-text {
  background: linear-gradient(135deg, var(--brand), var(--brand-2) 58%, var(--brand-3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-right: 0.04em;
}
.hero p, .page-hero p, .section-heading p {
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  margin: 0;
}
.hero-copy .lead { max-width: 650px; }
.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.trust-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
  color: var(--faint);
  font-size: 0.94rem;
}
.trust-row span::before {
  content: "✓";
  color: var(--brand);
  margin-right: 0.35rem;
}

.dashboard-shell {
  position: relative;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.04));
  box-shadow: var(--shadow);
}
.dashboard-shell::before {
  content: "";
  position: absolute;
  inset: -70px -30px auto auto;
  width: 220px;
  height: 220px;
  background: rgba(183, 140, 255, 0.12);
  filter: blur(50px);
  pointer-events: none;
}
.dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  color: var(--muted);
  border-bottom: 1px solid rgba(255,255,255,0.09);
}
.window-dots { display: flex; gap: 0.4rem; }
.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.25);
}
.dashboard-card {
  border-radius: 23px;
  background: #0b1020;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.mock-dashboard {
  display: flex;
  min-height: 430px;
}
.mock-sidebar { flex: 0 0 190px; }
.mock-content { flex: 1 1 auto; min-width: 0; }
.mock-sidebar {
  padding: 1.2rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.025);
}
.mock-sidebar strong { display: block; margin-bottom: 1.2rem; }
.mock-menu {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.mock-menu span {
  display: block;
  padding: 0.62rem 0.72rem;
  border-radius: 10px;
  color: var(--muted);
  background: rgba(255,255,255,0.035);
  font-size: 0.9rem;
}
.mock-menu span.active { color: #06111a; background: linear-gradient(135deg, var(--brand), var(--brand-2)); font-weight: 800; }
.mock-content { padding: 1.25rem; }
.mock-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}
.mock-search {
  width: 185px;
  height: 35px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
}
.metric-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1rem;
}
.metric-grid > * { flex: 1 1 calc((100% - 1.6rem) / 3); }
.metric-card {
  padding: 0.9rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  background: rgba(255,255,255,0.045);
}
.metric-card span { color: var(--faint); font-size: 0.82rem; }
.metric-card strong { display: block; font-size: 1.45rem; letter-spacing: -0.04em; }
.chart-card, .table-card {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  background: rgba(255,255,255,0.035);
  padding: 1rem;
}
.chart-bars {
  height: 150px;
  display: flex;
  align-items: end;
  gap: 0.7rem;
  padding-top: 1rem;
}
.chart-bars span {
  flex: 1;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, var(--brand), var(--brand-2));
  opacity: 0.85;
}
.table-card { margin-top: 1rem; }
.table-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.62rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--muted);
}
.table-row > *:nth-child(1) { flex: 1 1 0; }
.table-row > *:nth-child(2) { flex: 0.75 1 0; }
.table-row > *:nth-child(3) { flex: 0.6 1 0; }
.table-row:last-child { border-bottom: 0; }
.status-pill {
  display: inline-flex;
  justify-content: center;
  border-radius: 999px;
  padding: 0.1rem 0.5rem;
  font-size: 0.75rem;
  background: rgba(183, 140, 255, 0.12);
  color: var(--brand);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading h2, .cta-box h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.grid-3,
.grid-2 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.grid-3 > * { flex: 1 1 calc((100% - 2rem) / 3); }
.grid-2 > * { flex: 1 1 calc((100% - 1rem) / 2); }
.card {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}
.card h3 { margin: 0 0 0.55rem; letter-spacing: -0.03em; font-size: 1.16rem; }
.card p { margin: 0; color: var(--muted); }
.card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 1rem;
  background: rgba(183, 140, 255, 0.1);
  color: var(--brand);
  font-weight: 900;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0;
  margin: 1.2rem 0 0;
  list-style: none;
  color: var(--muted);
}
.feature-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}
.feature-list li::before {
  content: "✓";
  color: var(--brand);
  font-weight: 900;
}

.demo-ideas-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  max-width: 960px;
  margin-inline: auto;
}

.demo-ideas-grid > div {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
  padding: 0.9rem 1rem;
}

.demo-ideas-cta {
  max-width: 680px;
  margin: 2rem auto 0;
  text-align: center;
}

.demo-ideas-cta p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.demo-preview {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}
.demo-preview > *:first-child { flex: 0.92 1 0; }
/*.demo-preview > *:last-child { flex: 1.08 1 0; }*/
.demo-frame-placeholder {
  min-height: 480px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(183, 140, 255, 0.13), transparent),
    rgba(255,255,255,0.055);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
}
.demo-frame-placeholder p { color: var(--muted); max-width: 440px; }
.iframe-wrap {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #070a12;
  min-height: 960px;
}
.iframe-wrap iframe {
  width: 100%;
  height: 720px;
  border: 0;
  display: block;
  background: #fff;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: stretch;
}
.pricing-grid > * { flex: 1 1 calc((100% - 2rem) / 3); }
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  cursor: pointer;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}
.price-card:hover,
.price-card:focus-visible {
  border-color: rgba(183, 140, 255, 0.24);
  transform: translateY(-2px);
}
.price-card:focus-visible {
  outline: 2px solid rgba(183, 140, 255, 0.55);
  outline-offset: 4px;
}
.price-card.featured,
.price-card.is-selected {
  background: linear-gradient(180deg, rgba(183, 140, 255, 0.13), rgba(255,255,255,0.06));
  border-color: rgba(183, 140, 255, 0.35);
  box-shadow: 0 20px 70px rgba(183, 140, 255, 0.08);
  transform: translateY(-4px);
}
.price-card .tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(183, 140, 255, 0.14);
  color: var(--brand);
  font-size: 0.77rem;
  font-weight: 850;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 180ms ease, transform 180ms ease;
}
.price-card.featured .tag,
.price-card.is-selected .tag {
  opacity: 1;
  transform: translateY(0);
}
.price {
  margin: 1rem 0;
  font-size: 2.25rem;
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 900;
}
.price small {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0;
  font-weight: 600;
  margin-top: 0.35rem;
}


.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.steps > * { flex: 1 1 calc((100% - 3rem) / 4); }
.step {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}
.step-number {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #06111a;
  font-weight: 900;
  margin-bottom: 1rem;
}
.step h3 { margin: 0 0 0.45rem; }
.step p { margin: 0; color: var(--muted); }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 860px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 1.1rem 1.2rem;
  background: transparent;
  border: 0;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  font-weight: 800;
}
.faq-question span:last-child { color: var(--brand); font-size: 1.2rem; }
.faq-answer {
  /*display: none;*/
  padding: 0 1.2rem 1.15rem;
  color: var(--muted);
}
/*.faq-item.open .faq-answer { display: block; }*/

.cta-box {
  border: 1px solid rgba(183, 140, 255, 0.24);
  border-radius: 34px;
  background:
    radial-gradient(circle at 15% 20%, rgba(183, 140, 255, 0.14), transparent 24rem),
    radial-gradient(circle at 85% 30%, rgba(105,167,255,0.16), transparent 24rem),
    rgba(255,255,255,0.06);
  padding: clamp(2rem, 5vw, 4rem);
  text-align: center;
  box-shadow: var(--shadow);
}
.cta-box p { color: var(--muted); max-width: 720px; margin: 0.6rem auto 1.6rem; }

.page-hero {
  padding: 86px 0 52px;
  text-align: center;
}
.page-hero p { max-width: 760px; margin: 0 auto; }

.form-layout {
  display: flex;
  gap: 2rem;
  align-items: start;
}
.form-layout > *:first-child { flex: 0.8 1 0; }
.form-layout > *:last-child { flex: 1.2 1 0; }
.form-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--surface);
  padding: 1.4rem;
}
.inquiry-layout {
  display: block;
}
.inquiry-aside {
  margin-bottom: 1.2rem;
}
.inquiry-aside .tag {
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(183, 140, 255, 0.14);
  color: var(--brand);
  font-size: 0.77rem;
  font-weight: 850;
}
.process-list {
  display: grid;
  gap: 0.7rem;
  padding-left: 1.2rem;
  color: var(--muted);
}
.process-list li::marker {
  color: var(--brand);
  font-weight: 900;
}
.scope-note {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}
.scope-note h3 {
  margin-top: 0;
}
.inquiry-form {
  width: 100%;
  padding: clamp(1rem, 2vw, 1.5rem);
}
.form-section {
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
}
.form-section:first-child {
  padding-top: 0;
  border-top: 0;
}
.form-section:last-child {
  padding-bottom: 0;
}
.form-section-heading {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.form-section-heading > span {
  display: inline-flex;
  flex: 0 0 2rem;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(183, 140, 255, 0.28);
  border-radius: 999px;
  color: var(--brand);
  background: rgba(183, 140, 255, 0.1);
  font-weight: 900;
}
.form-section-heading h2 {
  margin: 0;
  font-size: 1.2rem;
}
.form-section-heading p {
  margin: 0.25rem 0 0;
  color: var(--muted);
}
.package-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}
.package-option {
  display: flex;
  min-width: 0;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.95rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}
.package-option:hover {
  border-color: rgba(91, 190, 252, 0.36);
  color: var(--text);
  transform: translateY(-1px);
}
.package-option input {
  appearance: none;
  flex: 0 0 1.2rem;
  width: 1.2rem;
  height: 1.2rem;
  margin: 0.18rem 0 0;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  background: rgba(7,10,18,0.58);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.package-option input:checked {
  border: 0.32rem solid #5bbefc;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(91, 190, 252, 0.16);
}
.package-option input:focus-visible {
  outline: 2px solid rgba(91, 190, 252, 0.82);
  outline-offset: 3px;
}
.package-option:has(input:checked) {
  border-color: rgba(91, 190, 252, 0.58);
  background: linear-gradient(135deg, rgba(91, 190, 252, 0.16), rgba(183, 140, 255, 0.12));
  color: var(--text);
}
.package-option strong,
.package-option small {
  display: block;
}
.package-option strong {
  margin-bottom: 0.35rem;
  color: var(--text);
  font-size: 0.98rem;
}
.package-option small {
  color: var(--muted);
  line-height: 1.45;
}
.package-panel {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
.package-panel[hidden] {
  display: none;
}
.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.form-field {
  position: relative;
  display: flex;
  flex: 1 1 calc((100% - 1rem) / 2);
  flex-direction: column;
  gap: 0.35rem;
}
.form-field.full { flex-basis: 100%; }
.form-field label { color: var(--muted); font-size: 0.92rem; font-weight: 700; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  color: var(--text);
  padding: 0.85rem 0.9rem;
  outline: none;
}
.form-field select {
  color-scheme: dark;
  appearance: none;
  padding-right: 2.55rem;
  background:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%) right 1.15rem center / 0.45rem 0.45rem no-repeat,
    linear-gradient(135deg, var(--muted) 50%, transparent 50%) right 0.86rem center / 0.45rem 0.45rem no-repeat,
    rgba(255,255,255,0.06);
}
.form-field select option {
  color: var(--text);
  background: #171b26;
}
.form-field select option:checked,
.form-field select option:hover {
  color: #ffffff;
  background: #2a4bcc;
}
.form-field select option[value=""] {
  color: var(--muted);
}
.form-field select[data-custom-select-ready="true"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.custom-select {
  position: relative;
  width: 100%;
}
.custom-select-button {
  position: relative;
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  color: var(--text);
  padding: 0.85rem 2.55rem 0.85rem 0.9rem;
  text-align: left;
  cursor: pointer;
}
.custom-select-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: translateY(-65%) rotate(45deg);
  transition: transform 160ms ease;
}
.custom-select.open .custom-select-button {
  border-color: rgba(183, 140, 255, 0.55);
}
.custom-select.open .custom-select-button::after {
  transform: translateY(-35%) rotate(225deg);
}
.custom-select-options {
  position: absolute;
  inset: calc(100% + 0.4rem) 0 auto;
  z-index: 40;
  display: none;
  max-height: min(260px, 44vh);
  overflow-y: auto;
  padding: 0.35rem;
  border: 1px solid rgba(183, 140, 255, 0.26);
  border-radius: 14px;
  background: #171b26;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
}
.custom-select.open .custom-select-options {
  display: grid;
  gap: 0.2rem;
}
.custom-select-option {
  width: 100%;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--text);
  padding: 0.7rem 0.75rem;
  text-align: left;
  cursor: pointer;
}
.custom-select-option:hover,
.custom-select-option:focus-visible {
  outline: none;
  background: rgba(183, 140, 255, 0.14);
}
.custom-select-option.is-selected {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(91, 190, 252, 0.26), rgba(42, 75, 204, 0.34));
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: rgba(183, 140, 255, 0.55); }
.field-hint {
  color: var(--faint);
  font-size: 0.9rem;
  margin: 0.15rem 0 0;
}
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.65rem;
}
.checkbox-grid > * { min-width: 0; }
.checkbox-card {
  display: flex;
  min-height: 58px;
  gap: 0.75rem;
  align-items: center;
  padding: 0.82rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--muted);
  background: rgba(255,255,255,0.035);
  cursor: pointer;
  line-height: 1.3;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}
.checkbox-card:hover {
  border-color: rgba(183, 140, 255, 0.28);
  color: var(--text);
  transform: translateY(-1px);
}
.checkbox-card input[type="checkbox"] {
  appearance: none;
  flex: 0 0 1.45rem;
  width: 1.45rem;
  height: 1.45rem;
  margin: 0;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 8px;
  background: rgba(7,10,18,0.56);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.checkbox-card input[type="checkbox"]:checked {
  border-color: rgba(183, 140, 255, 0.9);
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 0.95rem 0.95rem no-repeat,
    linear-gradient(135deg, #b78cff, #69a7ff);
  box-shadow: 0 0 0 4px rgba(183, 140, 255, 0.12);
}
.checkbox-card input[type="radio"] {
  appearance: none;
  flex: 0 0 1.45rem;
  width: 1.45rem;
  height: 1.45rem;
  margin: 0;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  background: rgba(7,10,18,0.56);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.checkbox-card input[type="radio"]:checked {
  border-color: rgba(183, 140, 255, 0.9);
  background:
    radial-gradient(circle at center, #ffffff 0 28%, transparent 30%),
    linear-gradient(135deg, #b78cff, #69a7ff);
  box-shadow: 0 0 0 4px rgba(183, 140, 255, 0.12);
}
.checkbox-card input[type="radio"]:focus-visible {
  outline: 2px solid rgba(183, 140, 255, 0.72);
  outline-offset: 3px;
}
.checkbox-card input[type="checkbox"]:focus-visible {
  outline: 2px solid rgba(183, 140, 255, 0.72);
  outline-offset: 3px;
}
.checkbox-card:has(input:checked) {
  border-color: rgba(183, 140, 255, 0.45);
  color: var(--text);
  background: rgba(183, 140, 255, 0.1);
}
.checkbox-grid.is-invalid {
  padding: 0.5rem;
  border: 1px solid rgba(255, 112, 112, 0.58);
  border-radius: 16px;
}
.checkbox-grid.is-invalid::after {
  content: "Izberite vsaj eno možnost.";
  grid-column: 1 / -1;
  color: #ff9f9f;
  font-size: 0.9rem;
  font-weight: 700;
}
.consent-card {
  align-items: flex-start;
  min-height: 0;
}
.form-note { color: var(--faint); font-size: 0.92rem; margin-top: 1rem; }
.form-status {
  min-height: 1.4rem;
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}
.form-status.success { color: #83f2b4; }
.form-status.error { color: #ff9f9f; }

.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.blog-grid > * { flex: 1 1 calc((100% - 2rem) / 3); }
.blog-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.blog-card .meta { color: var(--brand); font-size: 0.85rem; font-weight: 850; }

.footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 54px 0 28px;
  background: rgba(0,0,0,0.18);
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-grid > *:first-child { flex: 1.4 1 0; }
.footer-grid > *:not(:first-child) { flex: 1 1 0; }
.footer h3, .footer h4 { margin: 0 0 0.85rem; }
.footer p, .footer a { color: var(--muted); }
.footer a { display: block; margin-bottom: 0.45rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--faint);
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.2rem;
}

.legal-layout {
  max-width: 920px;
}

.legal-content {
  padding: clamp(1.3rem, 3vw, 2.4rem);
}

.legal-content h2 {
  margin: 2rem 0 0.65rem;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
}

.legal-content h2:first-of-type {
  margin-top: 0.75rem;
}

.contact-shell {
  max-width: 900px;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.legal-content ul {
  margin: 0.65rem 0 0;
  padding-left: 1.25rem;
}

.cookie-banner {
  position: fixed;
  z-index: 200;
  left: 50%;
  bottom: 20px;
  width: min(960px, calc(100% - 40px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-md);
  background: rgba(9, 14, 27, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.cookie-banner-copy {
  min-width: 0;
}

.cookie-banner h2 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.cookie-banner a {
  display: inline-flex;
  margin-top: 0.35rem;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex: 0 0 auto;
}

@media (max-width: 980px) {
  .hero-grid, .demo-preview, .form-layout { flex-direction: column; }
  .hero-grid > *, .demo-preview > *, .form-layout > * {
    flex: 0 1 auto;
    width: 100%;
  }
  .inquiry-aside { position: static; }
  .grid-3 > *, .pricing-grid > *, .blog-grid > * { flex-basis: calc((100% - 1rem) / 2); }
  .steps > * { flex-basis: calc((100% - 1rem) / 2); }
  .mock-dashboard { flex-direction: column; }
  .mock-sidebar { display: none; }
  .nav-links {
    position: fixed;
    inset: 76px 0 auto 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 20px 1.5rem;
    background: rgba(7,10,18,0.96);
    border-bottom: 1px solid var(--line);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    visibility: hidden;
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  }
  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }
  .nav-links a {
    opacity: 0;
    transform: translateY(-6px);
    transition: color 180ms ease, opacity 220ms ease, transform 220ms ease;
  }
  .nav-links.open a {
    opacity: 1;
    transform: translateY(0);
  }
  .nav-links.open a:nth-child(1) { transition-delay: 35ms; }
  .nav-links.open a:nth-child(2) { transition-delay: 60ms; }
  .nav-links.open a:nth-child(3) { transition-delay: 85ms; }
  .nav-links.open a:nth-child(4) { transition-delay: 110ms; }
  .nav-links.open a:nth-child(5) { transition-delay: 135ms; }
  .nav-links.open a:nth-child(6) { transition-delay: 160ms; }
  .mobile-toggle { display: inline-block; }
}

@media (max-width: 760px) {
  .package-options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--container)); }
  .hero { padding-top: 60px; }
  .section { padding: 72px 0; }
  .cookie-banner {
    width: calc(100% - 28px);
    bottom: 14px;
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-banner-actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }
  .cookie-banner-actions .btn {
    width: 100%;
  }
  .grid-3 > *, .grid-2 > *, .pricing-grid > *, .steps > *, .blog-grid > *, .form-field, .checkbox-grid > * { flex-basis: 100%; }
  .demo-ideas-grid { grid-template-columns: 1fr; }
  .nav { gap: 0.7rem; }
  .logo {
    gap: 0.55rem;
    font-size: 1rem;
  }
  .logo-image {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }
  .logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 11px;
  }
  .logo-mark svg {
    width: 20px;
    height: 20px;
  }
  .nav-actions { gap: 0.55rem; }
  .nav-actions .btn {
    display: inline-flex;
    padding: 0.62rem 0.72rem;
    font-size: 0.78rem;
  }
  .metric-grid > * { flex-basis: 100%; }
  .table-row {
    align-items: stretch;
    flex-direction: column;
  }
  .table-row > * { flex: 0 1 auto; }
  .hero-actions .btn { width: 100%; }
  .footer-grid > *,
  .footer-grid > *:first-child,
  .footer-grid > *:not(:first-child) { flex: 1 1 100%; }
}

.inquiry {
  margin: 15px;
}

.faq-answer {
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}


.faq-item {
  cursor: pointer;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;

  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}

.faq-answer {
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.inquiry-basic-btn {
  margin: 10px;
}

.inquiry-pro-btn {
  margin-top: auto;
  margin: 10px;
}

.dashboard-frame-wrapper {
  width: 100%;
  height: 800px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #080b12;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.dashboard-frame-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.demo-section {
  width: 1200px;
}

.philosophy-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 1rem;
}


.link-to-smt {
  color: #5bbefc;
}


.demo-device-section {
    padding: 40px 0 30px;
    background: transparent;
    overflow: visible;
    width: 100%;
    max-width: 1200px;
}

.macbook {
    width: min(1100px, 100%);
    margin: 0 auto;
    perspective: 1200px;
}

/* Monitor / screen outer frame */
.macbook-screen {
    position: relative;
    background: linear-gradient(145deg, #16181d, #050608);
    border-radius: 28px 28px 18px 18px;
    padding: 22px 22px 28px;
    box-shadow:
        0 40px 90px rgba(15, 23, 42, 0.28),
        0 18px 40px rgba(15, 23, 42, 0.22),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

/* Small camera dot */
.macbook-camera {
    position: absolute;
    top: 10px;
    left: 50%;
    width: 7px;
    height: 7px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: #2f3642;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

/* Actual visible dashboard area */
.macbook-display {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 12px;
    background: #ffffff;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.55);
}

.macbook-display > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.macbook-gallery {
    background:
        radial-gradient(circle at 50% 18%, rgba(91, 190, 252, 0.1), transparent 34%),
        linear-gradient(135deg, #020617 0%, #071124 58%, #020617 100%);
}

.macbook-display > .macbook-gallery-image {
    position: absolute;
    inset: 16px;
    width: calc(100% - 32px);
    height: calc(100% - 32px);
    object-fit: contain;
    z-index: 0;
    opacity: 0;
    filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.28));
    pointer-events: none;
    transform: scale(0.985);
    transition: opacity 520ms ease, transform 720ms ease;
}

.macbook-display > .macbook-gallery-image.is-active {
    z-index: 1;
    opacity: 1;
    cursor: zoom-in;
    pointer-events: auto;
    transform: scale(1);
}

.macbook-gallery-controls {
    position: absolute;
    left: 50%;
    bottom: 14px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 9px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(2, 6, 23, 0.72);
    backdrop-filter: blur(12px);
    transform: translateX(-50%);
}

.macbook-gallery-controls button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.38);
    cursor: pointer;
}

.macbook-gallery-controls button.is-active {
    width: 22px;
    background: var(--brand);
}

.macbook-gallery-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(2, 6, 23, 0.66);
    color: #eef4ff;
    cursor: pointer;
    font-size: 2rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(12px);
    transform: translateY(-50%);
    transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.macbook-gallery-arrow:hover {
    background: rgba(91, 190, 252, 0.22);
    border-color: rgba(91, 190, 252, 0.42);
    transform: translateY(-50%) scale(1.04);
}

.macbook-gallery-arrow-prev {
    left: 14px;
}

.macbook-gallery-arrow-next {
    right: 14px;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(2, 6, 23, 0.92);
    backdrop-filter: blur(18px);
}

.gallery-lightbox.is-open {
    display: flex;
}

.gallery-lightbox img {
    max-width: min(100%, 1440px);
    max-height: calc(100vh - 96px);
    object-fit: contain;
    border-radius: 14px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}

.gallery-lightbox-button {
    position: absolute;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.72);
    color: #eef4ff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(12px);
}

.gallery-lightbox-close {
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    font-size: 1.8rem;
}

.gallery-lightbox-prev,
.gallery-lightbox-next {
    top: 50%;
    width: 48px;
    height: 48px;
    font-size: 2.3rem;
    transform: translateY(-50%);
}

.gallery-lightbox-prev {
    left: 18px;
}

.gallery-lightbox-next {
    right: 18px;
}

/* Iframe dashboard */
.macbook-display iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    background: #ffffff;
}

/* Laptop base */
.macbook-bottom {
    position: relative;
    height: 34px;
    width: 108%;
    margin-left: -4%;
    background: linear-gradient(180deg, #e8ebf0 0%, #bfc5cf 48%, #8f98a5 100%);
    border-radius: 0 0 42px 42px;
    box-shadow:
        0 24px 45px rgba(15, 23, 42, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Middle indentation on base */
.macbook-notch {
    position: absolute;
    top: 0;
    left: 50%;
    width: 160px;
    height: 13px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, #d5dae2, #aeb6c1);
    border-radius: 0 0 16px 16px;
    box-shadow: inset 0 -1px 1px rgba(0, 0, 0, 0.12);
}

/* Responsive */
@media (max-width: 768px) {

    .macbook-display > img {
      width: 100%;
      height: 100%;
      display: block;
    }

    .demo-device-section {
        padding: 32px 0 20px;
    }

    .demo-device-section .container {
        width: 100%;
    }

    .macbook {
        width: min(390px, calc(100vw - 32px));
    }

    .macbook-screen {
        border-radius: 48px;
        padding: 12px;
        background: linear-gradient(145deg, #20242b, #050608 58%, #11151b);
        box-shadow:
            0 28px 70px rgba(0, 0, 0, 0.5),
            inset 0 0 0 2px rgba(255, 255, 255, 0.08),
            inset 0 0 0 6px rgba(0, 0, 0, 0.7);
    }

    .macbook-screen::before,
    .macbook-screen::after {
        content: "";
        position: absolute;
        z-index: -1;
        background: #11151b;
        border-radius: 999px;
    }

    .macbook-screen::before {
        left: -3px;
        top: 112px;
        width: 4px;
        height: 78px;
    }

    .macbook-screen::after {
        right: -3px;
        top: 154px;
        width: 4px;
        height: 96px;
    }

    .macbook-camera {
        top: 22px;
        width: 86px;
        height: 24px;
        z-index: 2;
        background: #050608;
        border-radius: 999px;
        box-shadow:
            inset 0 0 0 1px rgba(255, 255, 255, 0.08),
            0 2px 8px rgba(0, 0, 0, 0.35);
    }

    .macbook-display {
        aspect-ratio: 9 / 19.5;
        border-radius: 38px;
        background: #080b12;
        box-shadow:
            inset 0 0 0 1px rgba(255, 255, 255, 0.12),
            0 0 0 1px rgba(0, 0, 0, 0.78);
    }

    .macbook-bottom {
        display: none;
    }

    .macbook-notch {
        display: none;
    }
}
