:root {
  --bg0: #060713;
  --bg1: #0b0d1c;
  --bg2: #12152b;
  --panel: rgba(18, 22, 44, 0.72);
  --panel-solid: #14182f;
  --glass: rgba(255, 255, 255, 0.04);
  --glass-2: rgba(255, 255, 255, 0.07);
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);
  --text: #f4f6ff;
  --muted: #9aa3c7;
  --muted-2: #6d7699;
  --blue: #5b8cff;
  --cyan: #3de7ff;
  --violet: #8b7bff;
  --orange: #ff8a4c;
  --ok: #3dd6b5;
  --danger: #ff7b93;
  --radius: 28px;
  --radius-sm: 18px;
  --radius-xs: 14px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  --shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.35);
  --max: 1180px;
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --display: "Space Grotesk", var(--font);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 70% -10%, rgba(91, 140, 255, 0.18), transparent 55%),
    radial-gradient(900px 500px at 10% 20%, rgba(139, 123, 255, 0.12), transparent 50%),
    linear-gradient(180deg, var(--bg0), var(--bg1) 40%, #080a16 100%);
  min-height: 100vh;
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; }

.shell { position: relative; z-index: 1; }
.wrap { width: min(var(--max), calc(100% - 2rem)); margin-inline: auto; }

/* ambient */
.bg-fx { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.bg-fx .glow {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.45;
}
.g1 { width: 40rem; height: 40rem; top: -12rem; right: -8rem; background: #3a4fd0; }
.g2 { width: 28rem; height: 28rem; bottom: 15%; left: -10rem; background: #1f9bb5; opacity: 0.25; }
.grid-floor {
  position: absolute; left: 50%; bottom: -5%; width: 160%; height: 55%;
  transform: translateX(-50%) perspective(500px) rotateX(60deg);
  background-image:
    linear-gradient(rgba(120, 150, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 150, 255, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to top, transparent, black 30%, transparent 85%);
  opacity: 0.5;
}

/* header / nav — glass capsule like mock */
.site-header {
  position: sticky; top: 0; z-index: 50;
  padding: 1rem 0 0.5rem;
}
.nav-shell {
  width: min(var(--max), calc(100% - 1.25rem));
  margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.7rem 0.85rem 0.7rem 1.1rem;
  border-radius: 999px;
  background: rgba(12, 14, 30, 0.72);
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}
.brand {
  display: flex; align-items: center; gap: 0.55rem;
  font-family: var(--display); font-weight: 700; letter-spacing: -0.03em;
  font-size: 0.98rem;
}
.brand-mark {
  width: 1.85rem; height: 1.85rem; border-radius: 0.55rem;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #5b8cff, #3de7ff);
  box-shadow: 0 0 20px rgba(61, 231, 255, 0.35);
  font-size: 0.75rem; font-weight: 800; color: #041018;
}
.nav-links {
  display: flex; align-items: center; gap: 1.15rem;
  color: var(--muted); font-size: 0.9rem; font-weight: 500;
}
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 0.55rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  border: 0; cursor: pointer; font-weight: 600;
  border-radius: 999px; padding: 0.72rem 1.15rem;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease, opacity .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.btn-primary {
  background: linear-gradient(135deg, #6a95ff, #4cc9ff);
  color: #06101c;
  box-shadow: 0 10px 30px rgba(76, 201, 255, 0.25);
}
.btn-secondary {
  background: var(--glass-2);
  border: 1px solid var(--line-2);
  color: var(--text);
}
.btn-ghost { background: transparent; color: var(--muted); border: 1px solid transparent; }
.btn-ghost:hover { color: var(--text); border-color: var(--line); }
.btn-lg { padding: 0.9rem 1.3rem; font-size: 1.02rem; }
.btn-block { width: 100%; }
.is-hidden { display: none !important; }

/* HERO — mock layout */
.hero {
  padding: 2.5rem 0 1rem;
}
.hero-frame {
  position: relative;
  border-radius: 36px;
  border: 1px solid var(--line);
  background:
    radial-gradient(800px 400px at 70% 20%, rgba(91, 140, 255, 0.16), transparent 55%),
    radial-gradient(500px 300px at 20% 80%, rgba(61, 231, 255, 0.08), transparent 50%),
    linear-gradient(165deg, rgba(20, 24, 48, 0.95), rgba(10, 12, 28, 0.98));
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 520px;
  padding: 2.5rem 2.2rem 2rem;
}
.hero-frame::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(120,150,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120,150,255,0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse at 60% 55%, black 10%, transparent 70%);
  opacity: 0.7;
  pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  align-items: center;
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hero-frame { padding: 1.6rem 1.2rem; border-radius: 28px; min-height: 0; }
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.45rem;
  color: var(--cyan); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.9rem;
}
.eyebrow::before {
  content: ""; width: 0.4rem; height: 0.4rem; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 12px var(--cyan);
}
h1 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5.5vw, 3.9rem);
  line-height: 1.02; letter-spacing: -0.045em; font-weight: 700;
  margin-bottom: 0.9rem;
}
h1 .grad {
  background: linear-gradient(120deg, #fff 10%, #9ec5ff 45%, #6ef0ff 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lead {
  color: var(--muted); font-size: 1.05rem; max-width: 30rem; margin-bottom: 1.4rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-bottom: 1.4rem; }
.trust {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.pill {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  border-radius: 999px; padding: 0.38rem 0.75rem;
  color: var(--muted); font-size: 0.82rem;
}

/* floating stage */
.hero-stage {
  position: relative;
  min-height: 360px;
  display: grid; place-items: center;
}
.hero-art {
  width: min(100%, 520px);
  aspect-ratio: 16/11;
  border-radius: 24px;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
  filter: saturate(1.05) contrast(1.05);
}
.float-card {
  position: absolute;
  border-radius: 18px;
  border: 1px solid var(--line-2);
  background: rgba(12, 14, 32, 0.75);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
  padding: 0.7rem;
  animation: floaty 7s ease-in-out infinite;
}
.float-card img {
  width: 88px; height: 88px; object-fit: cover; border-radius: 12px;
}
.fc-a { top: 6%; left: 0; animation-delay: -1s; }
.fc-b { bottom: 10%; left: 8%; animation-delay: -2.5s; width: 110px; }
.fc-b img { width: 100%; height: 72px; }
.fc-c {
  top: 12%; right: 0;
  width: 148px; padding: 0.85rem;
  animation-delay: -3.5s;
}
.fc-c strong { display: block; font-family: var(--display); font-size: 0.95rem; }
.fc-c span { color: var(--muted); font-size: 0.78rem; }
.phone-mock {
  position: absolute; right: 4%; bottom: 2%;
  width: 132px;
  border-radius: 22px;
  border: 3px solid #1c2038;
  background: #0a0c18;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  overflow: hidden;
  animation: floaty 8s ease-in-out infinite;
  animation-delay: -1.8s;
}
.phone-mock .notch {
  height: 14px; background: #0a0c18; display: flex; justify-content: center; align-items: end;
}
.phone-mock .notch i {
  width: 36px; height: 5px; border-radius: 999px; background: #22263d; margin-bottom: 4px;
}
.phone-mock img { width: 100%; height: 180px; object-fit: cover; }
.phone-mock .bar {
  display: flex; justify-content: center; gap: 0.8rem; padding: 0.45rem;
  background: rgba(255,255,255,0.03);
}
.phone-mock .bar span {
  width: 0.45rem; height: 0.45rem; border-radius: 50%; background: rgba(255,255,255,0.2);
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* sections */
.section { padding: 3.2rem 0; }
.section-head {
  display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between;
  gap: 1rem; margin-bottom: 1.4rem;
}
.section-head h2 {
  font-family: var(--display); letter-spacing: -0.03em;
  font-size: clamp(1.55rem, 3vw, 2rem);
}
.section-head p { color: var(--muted); max-width: 28rem; }

/* service cards — like mock 1 2 3 */
.service-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 860px) { .service-grid { grid-template-columns: 1fr; } }
.service-card {
  position: relative;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  box-shadow: var(--shadow-soft);
  padding: 1.35rem 1.25rem 1.2rem;
  min-height: 220px;
  overflow: hidden;
  transition: transform .18s ease, border-color .18s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(91, 140, 255, 0.35);
}
.service-card .num {
  width: 2rem; height: 2rem; border-radius: 999px;
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 700; font-size: 0.9rem;
  background: rgba(255,255,255,0.06); border: 1px solid var(--line);
  margin-bottom: 0.9rem;
}
.service-card h3 {
  font-family: var(--display); font-size: 1.25rem; letter-spacing: -0.03em; margin-bottom: 0.25rem;
}
.service-card .sub {
  color: var(--muted); font-size: 0.92rem; margin-bottom: 1rem;
}
.service-card .art {
  position: absolute; right: 0.6rem; bottom: 0.6rem;
  width: 46%; max-width: 160px; opacity: 0.95;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.4));
  pointer-events: none;
}
.service-card.accent {
  background:
    radial-gradient(circle at 80% 80%, rgba(91,140,255,0.35), transparent 45%),
    linear-gradient(180deg, rgba(30,40,90,0.7), rgba(16,18,40,0.9));
}

/* portfolio */
.portfolio-grid {
  display: grid; gap: 0.85rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 900px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
.p-item {
  aspect-ratio: 1;
  border-radius: 22px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--panel-solid);
  position: relative;
  box-shadow: var(--shadow-soft);
}
.p-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .35s ease;
}
.p-item:hover img { transform: scale(1.05); }
.p-item span {
  position: absolute; left: 0.7rem; bottom: 0.7rem;
  font-size: 0.78rem; font-weight: 600;
  padding: 0.3rem 0.6rem; border-radius: 999px;
  background: rgba(8,10,20,0.65); border: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

/* how steps */
.timeline {
  display: grid; gap: 0.85rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 900px) { .timeline { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .timeline { grid-template-columns: 1fr; } }
.t-item {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.1rem;
  background: rgba(255,255,255,0.03);
}
.t-item .n {
  font-family: var(--display); color: var(--cyan); font-weight: 700; margin-bottom: 0.35rem;
}
.t-item h3 { font-family: var(--display); font-size: 1rem; margin-bottom: 0.25rem; }
.t-item p { color: var(--muted); font-size: 0.9rem; }

/* WIZARD — glass */
.wizard-section { padding: 1rem 0 4rem; }
.wizard-shell {
  border-radius: 32px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(22,26,52,0.9), rgba(12,14,30,0.95));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.wizard-top {
  padding: 1.25rem 1.35rem 1.05rem;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
}
.wizard-top h2 {
  font-family: var(--display); font-size: 1.4rem; letter-spacing: -0.03em; margin-bottom: 0.25rem;
}
.wizard-top p { color: var(--muted); font-size: 0.95rem; }

.progress {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.4rem; margin-top: 1rem;
}
.progress button {
  appearance: none; border: 0; background: transparent; text-align: left; cursor: pointer;
  padding: 0; color: var(--muted-2); min-width: 0;
}
.progress button .bar {
  height: 4px; border-radius: 999px; background: rgba(255,255,255,0.08); margin-bottom: 0.4rem;
}
.progress button .label {
  font-size: 0.7rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.progress button.is-done { color: var(--cyan); }
.progress button.is-done .bar { background: rgba(61, 231, 255, 0.7); }
.progress button.is-active { color: var(--text); }
.progress button.is-active .bar {
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}
.progress button:disabled { cursor: default; opacity: 0.5; }

.wizard-body { padding: 1.35rem 1.25rem 1.5rem; }
.step-panel { display: none; animation: fade .25s ease; }
.step-panel.is-active { display: block; }
@keyframes fade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}
.step-title {
  font-family: var(--display); font-size: 1.35rem; letter-spacing: -0.03em; margin-bottom: 0.35rem;
}
.step-help { color: var(--muted); margin-bottom: 1.2rem; max-width: 40rem; }

.option-grid {
  display: grid; gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 800px) {
  .option-grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .option-grid { grid-template-columns: 1fr; }
}
.option-card {
  position: relative; display: block; cursor: pointer;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-sm);
  padding: 1rem;
  transition: border-color .15s ease, transform .15s ease, background .15s ease;
}
.option-card:hover { border-color: rgba(255,255,255,0.18); transform: translateY(-1px); }
.option-card input { position: absolute; opacity: 0; pointer-events: none; }
.option-card.is-selected {
  border-color: rgba(61, 231, 255, 0.5);
  background: linear-gradient(180deg, rgba(61,231,255,0.1), rgba(255,255,255,0.02));
  box-shadow: inset 0 0 0 1px rgba(61,231,255,0.12);
}
.option-card h3 {
  font-family: var(--display); font-size: 1.02rem; margin-bottom: 0.25rem; letter-spacing: -0.02em;
}
.option-card p { color: var(--muted); font-size: 0.9rem; }
.option-card .tag {
  display: inline-block; margin-top: 0.65rem;
  font-size: 0.75rem; font-weight: 600; color: var(--cyan);
  background: rgba(61,231,255,0.1); border-radius: 999px; padding: 0.2rem 0.55rem;
}

.feature-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 800px) { .feature-grid { grid-template-columns: 1fr; } }
.feature {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.15rem;
}
.feature .icon {
  width: 2.4rem; height: 2.4rem; border-radius: 0.8rem; margin-bottom: 0.75rem;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(91,140,255,0.2), rgba(61,231,255,0.15));
  border: 1px solid var(--line);
  font-family: var(--display); font-weight: 700;
}
.feature h3 {
  font-family: var(--display); font-size: 1.05rem; letter-spacing: -0.02em; margin-bottom: 0.3rem;
}
.feature p { color: var(--muted); font-size: 0.92rem; }

.dropzone {
  border: 1.5px dashed rgba(255,255,255,0.16);
  border-radius: var(--radius);
  background: rgba(0,0,0,0.18);
  padding: 2rem 1.25rem;
  text-align: center;
  transition: border-color .15s ease, background .15s ease;
}
.dropzone.is-dragover {
  border-color: var(--cyan);
  background: rgba(61,231,255,0.06);
}
.dropzone-icon {
  width: 3.2rem; height: 3.2rem; margin: 0 auto 0.85rem;
  border-radius: 1rem; display: grid; place-items: center;
  background: rgba(91,140,255,0.12); border: 1px solid var(--line);
  font-size: 1.3rem;
}
.dropzone h3 { font-family: var(--display); margin-bottom: 0.3rem; }
.dropzone p { color: var(--muted); font-size: 0.92rem; margin-bottom: 1rem; }
.file-chip {
  display: none; align-items: center; justify-content: space-between; gap: 0.75rem;
  margin-top: 1rem; text-align: left;
  border: 1px solid rgba(61,231,255,0.3);
  background: rgba(61,231,255,0.08);
  border-radius: 14px; padding: 0.85rem 1rem;
}
.file-chip.is-visible { display: flex; }
.file-chip strong { display: block; word-break: break-all; }
.file-chip span { color: var(--muted); font-size: 0.85rem; }

.form-grid {
  display: grid; gap: 0.85rem;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: grid; gap: 0.35rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.88rem; color: var(--muted); font-weight: 500; }
.field .req { color: var(--cyan); }
.field input, .field select, .field textarea {
  width: 100%;
  background: rgba(6, 8, 18, 0.85);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.78rem 0.9rem;
  outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: rgba(61,231,255,0.45);
  box-shadow: 0 0 0 3px rgba(61,231,255,0.12);
}
.field textarea { min-height: 100px; resize: vertical; }
.field .hint { font-size: 0.8rem; color: var(--muted-2); }
.check {
  display: flex; gap: 0.65rem; align-items: flex-start;
  color: var(--muted); font-size: 0.92rem;
}
.check input { margin-top: 0.25rem; width: 1.05rem; height: 1.05rem; accent-color: var(--cyan); }

.review {
  display: grid; gap: 0.85rem;
  grid-template-columns: 1.2fr 0.8fr;
}
@media (max-width: 800px) { .review { grid-template-columns: 1fr; } }
.review-card {
  border: 1px solid var(--line);
  background: rgba(0,0,0,0.16);
  border-radius: var(--radius-sm);
  padding: 1rem 1.05rem;
}
.review-card h3 {
  font-family: var(--display); font-size: 0.95rem; letter-spacing: -0.02em;
  margin-bottom: 0.7rem; color: var(--cyan);
}
.kv { display: grid; gap: 0.45rem; }
.kv div {
  display: grid; grid-template-columns: 8.5rem 1fr; gap: 0.5rem;
  font-size: 0.93rem;
}
@media (max-width: 500px) {
  .kv div { grid-template-columns: 1fr; gap: 0.1rem; }
}
.kv .k { color: var(--muted-2); }
.kv .v { color: var(--text); word-break: break-word; }

.pay-box {
  border: 1px solid rgba(91,140,255,0.3);
  background:
    radial-gradient(circle at 20% 0%, rgba(91,140,255,0.16), transparent 50%),
    rgba(0,0,0,0.2);
  border-radius: var(--radius-sm);
  padding: 1.1rem;
}
.pay-box .amount {
  font-family: var(--display); font-size: 2rem; letter-spacing: -0.04em; margin: 0.2rem 0 0.35rem;
}
.pay-box .note { color: var(--muted); font-size: 0.9rem; margin-bottom: 1rem; }
.stripe-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.8rem; color: var(--muted-2);
  border: 1px solid var(--line); border-radius: 999px; padding: 0.3rem 0.65rem;
  margin-bottom: 0.9rem;
}

.wizard-footer {
  display: flex; flex-wrap: wrap; gap: 0.7rem;
  justify-content: space-between; align-items: center;
  margin-top: 1.4rem; padding-top: 1.1rem; border-top: 1px solid var(--line);
}
.wizard-footer .right { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-left: auto; }

.alert {
  display: none; margin-top: 0.9rem; border-radius: 12px; padding: 0.8rem 0.95rem; font-size: 0.92rem;
}
.alert.is-visible { display: block; }
.alert-error {
  background: rgba(255,123,147,0.1);
  border: 1px solid rgba(255,123,147,0.35);
  color: #ffc2cd;
}
.alert-ok {
  background: rgba(61,214,181,0.1);
  border: 1px solid rgba(61,214,181,0.35);
  color: #a7f3e0;
}

.success-panel { text-align: center; padding: 1.5rem 0.5rem 0.5rem; }
.success-panel .big {
  width: 4rem; height: 4rem; margin: 0 auto 1rem; border-radius: 999px;
  display: grid; place-items: center;
  background: rgba(61,214,181,0.12); border: 1px solid rgba(61,214,181,0.35);
  color: var(--ok); font-size: 1.6rem;
}
.success-panel h3 {
  font-family: var(--display); font-size: 1.6rem; letter-spacing: -0.03em; margin-bottom: 0.4rem;
}
.success-panel p { color: var(--muted); max-width: 32rem; margin: 0 auto 1rem; }
.order-id-box {
  display: inline-block; font-family: var(--display); font-weight: 700;
  letter-spacing: 0.04em; padding: 0.55rem 0.9rem; border-radius: 12px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--line); margin-bottom: 1.2rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.75rem 0 2.5rem; color: var(--muted); font-size: 0.9rem;
}
.foot-row {
  display: flex; flex-wrap: wrap; gap: 0.8rem;
  justify-content: space-between; align-items: center;
}

.loading-dots::after {
  content: "";
  animation: dots 1.2s steps(4, end) infinite;
}
@keyframes dots {
  0% { content: ""; }
  25% { content: "."; }
  50% { content: ".."; }
  75% { content: "..."; }
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.cta-banner {
  margin: 0.5rem 0 2rem;
  border-radius: 28px;
  border: 1px solid rgba(91,140,255,0.28);
  background:
    radial-gradient(circle at 15% 20%, rgba(91,140,255,0.2), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(61,231,255,0.12), transparent 40%),
    rgba(16, 18, 40, 0.9);
  padding: 1.6rem 1.4rem;
  display: flex; flex-wrap: wrap; gap: 1rem;
  align-items: center; justify-content: space-between;
}
.cta-banner h2 {
  font-family: var(--display); letter-spacing: -0.03em; font-size: 1.45rem; margin-bottom: 0.25rem;
}
.cta-banner p { color: var(--muted); max-width: 34rem; }

/* Contact */
.contact-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  box-shadow: var(--shadow-soft);
  padding: 1.35rem 1.3rem;
}
.contact-card h3 {
  font-family: var(--display);
  letter-spacing: -0.03em;
  font-size: 1.2rem;
  margin-bottom: 0.85rem;
}
.contact-list {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
}
.contact-item {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  gap: 0.75rem;
  align-items: start;
}
.contact-item .ico {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.85rem;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(91,140,255,0.2), rgba(61,231,255,0.12));
  border: 1px solid var(--line);
  font-size: 1rem;
}
.contact-item .label {
  display: block;
  color: var(--muted-2);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}
.contact-item a,
.contact-item .value {
  color: var(--text);
  font-weight: 600;
  font-size: 1rem;
  word-break: break-word;
}
.contact-item a:hover { color: var(--cyan); }
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.map-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}
.p-item figcaption,
.fig-cap {
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  pointer-events: none;
}
.p-item .cap-title {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  width: fit-content;
  background: rgba(8,10,20,0.72);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.p-item .cap-desc {
  font-size: 0.72rem;
  color: #d7dcf0;
  padding: 0.35rem 0.55rem;
  border-radius: 10px;
  background: rgba(8,10,20,0.55);
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  line-height: 1.35;
}
.foot-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.1rem;
  color: var(--muted);
  font-size: 0.88rem;
}
.foot-contact a { color: var(--text); font-weight: 600; }
.foot-contact a:hover { color: var(--cyan); }
.site-footer .foot-col { display: grid; gap: 0.45rem; }
.inquiry-alert {
  display: none;
  margin-top: 0.85rem;
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  font-size: 0.9rem;
}
.inquiry-alert.is-visible { display: block; }
.inquiry-alert.ok {
  background: rgba(61,214,181,0.1);
  border: 1px solid rgba(61,214,181,0.35);
  color: #a7f3e0;
}
.inquiry-alert.err {
  background: rgba(255,123,147,0.1);
  border: 1px solid rgba(255,123,147,0.35);
  color: #ffc2cd;
}

/* Quote / order mode */
.wizard-top-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.85rem;
}
.mode-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  white-space: nowrap;
}
.mode-badge.quote {
  color: #041018;
  background: linear-gradient(135deg, #6a95ff, #4cc9ff);
  border-color: transparent;
}
.mode-switch {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.3rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,0.22);
  margin-bottom: 1rem;
}
.mode-chip {
  appearance: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--muted);
  background: transparent;
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  transition: background .15s ease, color .15s ease;
}
.mode-chip:hover { color: var(--text); }
.mode-chip.is-active {
  color: #06101c;
  background: linear-gradient(135deg, #6a95ff, #4cc9ff);
  box-shadow: 0 8px 20px rgba(76, 201, 255, 0.2);
}
body.mode-quote .mode-chip[data-set-mode="quote"] { /* active handled by is-active */ }
.faq-list { display: grid; gap: 0.65rem; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  padding: 0.85rem 1rem;
}
.faq-item summary {
  cursor: pointer;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.02em;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--cyan);
  font-weight: 700;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p {
  color: var(--muted);
  margin-top: 0.55rem;
  font-size: 0.95rem;
}
.faq-item a { color: var(--cyan); font-weight: 600; }


/* Brand logo */
.brand {
  gap: 0.55rem;
}
.brand-logo {
  width: auto;
  height: 2.35rem;
  object-fit: contain;
  display: block;
  border-radius: 0.45rem;
}
.brand-logo-sm {
  height: 2rem;
}
.brand-text {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 0.95rem;
}
.brand-mark { display: none; } /* replaced by logo image */
.contact-logo-wrap {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 1rem;
}
.contact-logo {
  width: min(160px, 45%);
  height: auto;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #2a2d32;
  box-shadow: var(--shadow-soft);
}
@media (max-width: 520px) {
  .brand-text { font-size: 0.85rem; }
  .brand-logo { height: 2.1rem; }
}


/* Free model library — Nyx unique styling */
.lib-panel {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(165deg, rgba(22,28,52,.92), rgba(10,12,24,.96));
  box-shadow: var(--shadow);
  padding: 1.15rem 1.15rem 1.35rem;
}
.lib-toolbar { margin-bottom: 1rem; }
.lib-search-row, .lib-import-row {
  display: grid;
  gap: 0.55rem;
  grid-template-columns: 1fr auto auto;
  margin-bottom: 0.65rem;
}
@media (max-width: 800px) {
  .lib-search-row, .lib-import-row { grid-template-columns: 1fr; }
}
.lib-search-row input, .lib-import-row input, #lib-source {
  width: 100%;
  background: #0b0f18;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.78rem 0.9rem;
  color: var(--text);
  outline: none;
}
.lib-search-row input:focus, .lib-import-row input:focus, #lib-source:focus {
  border-color: rgba(61,231,255,.45);
  box-shadow: 0 0 0 3px rgba(61,231,255,.12);
}
.lib-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.75rem; }
.lib-chip {
  appearance: none; border: 1px solid var(--line); background: rgba(255,255,255,.03);
  color: var(--muted); border-radius: 999px; padding: 0.35rem 0.75rem; cursor: pointer; font: inherit; font-size: 0.85rem; font-weight: 600;
}
.lib-chip:hover { color: var(--text); border-color: rgba(91,140,255,.4); }
.lib-status { color: var(--muted); font-size: 0.9rem; margin: 0.35rem 0 0.75rem; }
.lib-status.is-error { color: #ffc2cd; }
.lib-selected {
  border: 1px solid rgba(61,231,255,.35);
  background: rgba(61,231,255,.08);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
}
.lib-selected .muted { color: var(--muted); }
.lib-selected-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.65rem; }
.lib-legal { color: var(--muted); font-size: 0.82rem; margin-top: 0.55rem; }
.lib-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 960px) { .lib-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .lib-grid { grid-template-columns: 1fr; } }
.lib-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,.03);
  cursor: pointer;
  transition: transform .15s ease, border-color .15s ease;
  display: flex; flex-direction: column;
}
.lib-card:hover, .lib-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(91,140,255,.45);
  outline: none;
}
.lib-cover-wrap { position: relative; aspect-ratio: 4/3; background: #0a0c16; }
.lib-cover { width: 100%; height: 100%; object-fit: cover; }
.lib-badge {
  position: absolute; top: 0.55rem; left: 0.55rem;
  font-size: 0.7rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  padding: 0.25rem 0.5rem; border-radius: 999px;
  background: rgba(8,10,20,.75); border: 1px solid var(--line); color: var(--cyan);
}
.lib-free {
  position: absolute; top: 0.55rem; right: 0.55rem;
  font-size: 0.7rem; font-weight: 800;
  padding: 0.25rem 0.5rem; border-radius: 999px;
  background: linear-gradient(135deg, #34d399, #2dd4bf); color: #042f2e;
}
.lib-body { padding: 0.85rem 0.9rem 1rem; display: flex; flex-direction: column; gap: 0.35rem; flex: 1; }
.lib-title { font-family: var(--display); font-size: 1.02rem; letter-spacing: -0.02em; line-height: 1.25; }
.lib-meta { color: var(--muted-2); font-size: 0.8rem; }
.lib-sum { color: var(--muted); font-size: 0.86rem; flex: 1; }
.lib-actions { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.5rem; }
.btn-sm { padding: 0.5rem 0.8rem; font-size: 0.85rem; }
.lib-empty {
  grid-column: 1 / -1;
  text-align: center; color: var(--muted);
  padding: 2rem 1rem; border: 1px dashed var(--line); border-radius: 16px;
}
.lib-footnote {
  margin-top: 1.15rem; padding-top: 1rem; border-top: 1px solid var(--line);
  color: var(--muted); font-size: 0.9rem;
}
.lib-footnote ol { margin: 0.5rem 0 0.75rem 1.1rem; display: grid; gap: 0.25rem; }
.lib-footnote strong { color: var(--text); }


/* Free model selection in order wizard */
.free-model-panel {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  align-items: start;
  border: 1px solid rgba(61,231,255,.35);
  background: rgba(61,231,255,.07);
  border-radius: 18px;
  padding: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 560px) {
  .free-model-panel { grid-template-columns: 1fr; }
}
.free-model-cover {
  width: 120px; height: 120px; object-fit: cover; border-radius: 12px; border: 1px solid var(--line);
}
.free-model-kicker {
  font-size: 0.75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--cyan);
  margin-bottom: 0.25rem;
}
.free-model-panel h4 {
  font-family: var(--display); font-size: 1.1rem; margin: 0 0 0.25rem; letter-spacing: -0.02em;
}
.free-model-check { margin-top: 0.75rem; }
.hint-ok { color: #a7f3d0; font-size: 0.88rem; margin-top: 0.45rem; }
