:root {
  --zz-accent: #daff01;
  --zz-accent-border: #a6c300;
  --zz-accent-muted: rgba(218, 255, 1, 0.12);
  --zz-bg: #000000;
  --zz-surface: #191919;
  --zz-surface-raised: #242424;
  --zz-text: #ffffff;
  --zz-text-muted: #b3b3b3;
  --zz-border: #303030;
  --zz-border-light: #3d3d3d;
  --zz-error: #ff4d4d;
  --zz-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  --zz-radius: 0;
  --zz-font: "Poppins", system-ui, -apple-system, sans-serif;
  --zz-font-display: "Righteous", system-ui, sans-serif;
}

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

html {
  overflow-x: hidden;
}

html.zzqc-embedded {
  height: auto;
  overflow: visible;
}

body {
  margin: 0;
  font-family: var(--zz-font);
  background: transparent;
  color: var(--zz-text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.zzqc-embedded {
  min-height: 0;
  height: auto;
  overflow: visible;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}

html.zzqc-embedded {
  overflow: visible;
  height: auto;
}

body.zzqc-embedded .zzqc-header {
  display: none;
}

body.zzqc-embedded .zzqc-live-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
}

body.zzqc-embedded .zzqc-live-spacer {
  display: block;
}

body.zzqc-embedded .zzqc-main {
  padding: 20px 24px;
}

body.zzqc-embedded .zzqc-footer {
  padding: 14px 24px 16px;
}

body.zzqc-embedded .zzqc-legal {
  font-size: 0.6875rem;
  line-height: 1.55;
}

body.zzqc-embedded .zzqc-footer {
  display: none !important;
}

body.zzqc-embedded .zzqc-widget {
  width: 100%;
  max-width: 100%;
  margin: 0;
  border: none;
  box-shadow: none;
}

body.zzqc-embedded .zzqc-result {
  display: none !important;
}

@media (max-width: 768px) {
  .zzqc-live-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 80;
  }

  .zzqc-live-spacer {
    display: block;
  }

  .zzqc-main {
    padding-bottom: 24px;
  }
}

@media (min-width: 769px) {
  body.zzqc-embedded .zzqc-main {
    padding: 16px 20px 18px;
  }
}

.zzqc-widget {
  max-width: 480px;
  margin: 0 auto;
  background: var(--zz-bg);
  border-radius: var(--zz-radius);
  box-shadow: var(--zz-shadow);
  border: 1px solid var(--zz-border);
  overflow: visible;
  touch-action: pan-y;
}

.zzqc-header {
  background: var(--zz-surface);
  padding: 24px 28px;
  color: var(--zz-text);
  border-bottom: 2px solid var(--zz-accent);
  text-align: center;
}

.zzqc-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.zzqc-logo-img {
  height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: 0 auto;
}

.zzqc-logo-text {
  text-align: center;
}

.zzqc-title {
  margin: 0;
  font-family: var(--zz-font-display);
  font-size: 1.375rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--zz-text);
}

.zzqc-subtitle {
  margin: 4px 0 0;
  font-size: 0.8125rem;
  color: var(--zz-text-muted);
  font-weight: 400;
}

.zzqc-live-bar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid rgba(218, 255, 1, 0.22);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}

.zzqc-live-strip {
  position: relative;
  padding: 10px 16px 9px;
  overflow: hidden;
}

.zzqc-live-strip-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(218, 255, 1, 0.35) 20%,
    var(--zz-accent) 50%,
    rgba(218, 255, 1, 0.35) 80%,
    transparent 100%
  );
  pointer-events: none;
}

.zzqc-live-strip-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.zzqc-live-strip-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1;
}

.zzqc-live-dot {
  width: 9px;
  height: 9px;
  background: var(--zz-accent);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(218, 255, 1, 0.7);
  animation: zzqc-pulse-dot 1.5s ease-in-out infinite;
}

@keyframes zzqc-pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.82); }
}

.zzqc-live-strip-copy {
  min-width: 0;
}

.zzqc-live-kicker {
  margin: 0;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(218, 255, 1, 0.62);
  line-height: 1.2;
}

.zzqc-live-title {
  margin: 2px 0 0;
  font-family: var(--zz-font-display);
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #ffffff;
  line-height: 1.15;
}

.zzqc-live-bar.is-ready .zzqc-live-title {
  color: var(--zz-accent);
}

.zzqc-live-price-box {
  flex-shrink: 0;
  min-width: 5.5rem;
  padding: 7px 11px;
  border-radius: 10px;
  border: 1px solid rgba(218, 255, 1, 0.22);
  background: rgba(218, 255, 1, 0.05);
  text-align: right;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.zzqc-live-bar.is-idle .zzqc-live-price-box {
  border-color: rgba(218, 255, 1, 0.18);
  background: rgba(218, 255, 1, 0.04);
}

.zzqc-live-bar.is-ready .zzqc-live-price-box {
  border-color: rgba(218, 255, 1, 0.55);
  background: rgba(218, 255, 1, 0.14);
  box-shadow: 0 0 20px rgba(218, 255, 1, 0.12);
}

.zzqc-live-price-label {
  display: block;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(218, 255, 1, 0.55);
  line-height: 1.2;
}

.zzqc-live-bar.is-ready .zzqc-live-price-label {
  color: rgba(218, 255, 1, 0.82);
}

.zzqc-live-price {
  margin: 2px 0 0;
  font-family: var(--zz-font-display);
  font-size: 0.9375rem;
  line-height: 1.05;
  color: rgba(218, 255, 1, 0.38);
  white-space: nowrap;
  transition: color 0.25s ease, font-size 0.25s ease, text-shadow 0.25s ease;
}

.zzqc-live-bar.is-idle .zzqc-live-price {
  font-family: var(--zz-font);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.zzqc-live-bar.is-ready .zzqc-live-price {
  font-size: 1.0625rem;
  color: var(--zz-accent);
  text-shadow: 0 0 18px rgba(218, 255, 1, 0.28);
  animation: zzqc-fade-in 0.25s ease;
}

.zzqc-live-hint {
  margin: 6px 0 0;
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.4;
}

.zzqc-live-bar.is-idle .zzqc-live-hint {
  color: rgba(218, 255, 1, 0.48);
}

.zzqc-live-bar.is-ready .zzqc-live-hint {
  display: none;
}

.zzqc-live-spacer {
  display: none;
  height: 0;
  pointer-events: none;
}

.zzqc-main {
  padding: 28px;
  background: var(--zz-bg);
}

.zzqc-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.zzqc-field-row {
  display: flex;
  gap: 16px;
}

.zzqc-field-row--split .zzqc-field {
  flex: 1;
  min-width: 0;
}

.zzqc-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.zzqc-field label,
.zzqc-extras legend {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--zz-text);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.zzqc-pricing-hint {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.4;
  transition: color 0.2s;
}

.zzqc-pricing-hint.is-flat,
.zzqc-pricing-hint.is-hourly {
  color: var(--zz-accent);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.zzqc-optional {
  font-weight: 400;
  color: var(--zz-text-muted);
  text-transform: none;
}

.zzqc-required {
  color: var(--zz-accent);
  font-weight: 600;
}

.zzqc-contact-section {
  padding-bottom: 4px;
  border-bottom: 1px solid var(--zz-border);
  margin-bottom: 4px;
}

.zzqc-section {
  border: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.zzqc-section legend {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--zz-text);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.zzqc-checkbox-row {
  margin-top: 4px;
}

.zzqc-checkbox--inline {
  flex: 1;
  min-width: 0;
}

.zzqc-field input[type="date"],
.zzqc-field input[type="text"],
.zzqc-field input[type="tel"],
.zzqc-field input[type="email"],
.zzqc-field select,
.zzqc-field textarea {
  font-family: var(--zz-font);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid var(--zz-border);
  border-radius: var(--zz-radius);
  background: var(--zz-surface);
  color: var(--zz-text);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.zzqc-field input::placeholder {
  color: #666;
}

.zzqc-field select option {
  background: var(--zz-surface);
  color: var(--zz-text);
}

.zzqc-field textarea {
  resize: vertical;
  min-height: 96px;
  line-height: 1.5;
}

.zzqc-field input:focus,
.zzqc-field select:focus,
.zzqc-field textarea:focus {
  outline: none;
  border-color: var(--zz-accent);
  box-shadow: 0 0 0 2px rgba(218, 255, 1, 0.2);
}

.zzqc-field input.zzqc-invalid,
.zzqc-field select.zzqc-invalid,
.zzqc-field textarea.zzqc-invalid {
  border-color: var(--zz-error);
}

.zzqc-promo-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.zzqc-promo-row input {
  flex: 1;
  min-width: 0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.zzqc-btn--promo {
  flex-shrink: 0;
  min-height: 48px;
  padding: 0 18px;
  background: transparent;
  border: 1px solid var(--zz-border);
  color: var(--zz-accent);
  font-weight: 700;
}

.zzqc-btn--promo:hover {
  border-color: rgba(218, 255, 1, 0.55);
  background: rgba(218, 255, 1, 0.08);
}

.zzqc-promo-message {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
}

.zzqc-promo-message.is-success {
  color: var(--zz-accent);
}

.zzqc-promo-message.is-error {
  color: var(--zz-error);
}

.zzqc-stuff-field {
  padding: 18px;
  border: 1px solid var(--zz-border);
  border-radius: var(--zz-radius);
  background: linear-gradient(180deg, rgba(218, 255, 1, 0.05), rgba(0, 0, 0, 0.2));
}

.zzqc-stuff-intro {
  margin: 0 0 14px;
  font-size: 0.8125rem;
  color: var(--zz-muted);
  line-height: 1.5;
}

.zzqc-stuff-slider-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.zzqc-stuff-field input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 10px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: linear-gradient(
    90deg,
    rgba(218, 255, 1, 0.25) 0%,
    rgba(218, 255, 1, 0.85) 50%,
    #fff59a 100%
  );
  cursor: pointer;
}

.zzqc-stuff-field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 3px solid #000;
  background: var(--zz-accent);
  box-shadow: 0 0 0 4px rgba(218, 255, 1, 0.25), 0 4px 12px rgba(0, 0, 0, 0.45);
  cursor: grab;
}

.zzqc-stuff-field input[type="range"]::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 3px solid #000;
  background: var(--zz-accent);
  box-shadow: 0 0 0 4px rgba(218, 255, 1, 0.25), 0 4px 12px rgba(0, 0, 0, 0.45);
  cursor: grab;
}

.zzqc-stuff-scale {
  display: flex;
  justify-content: space-between;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--zz-muted);
}

.zzqc-stuff-readout {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 76px;
  padding: 14px 16px;
  border-radius: var(--zz-radius);
  border: 1px solid rgba(218, 255, 1, 0.22);
  background: rgba(0, 0, 0, 0.35);
  transition: border-color 0.2s, background 0.2s;
}

.zzqc-stuff-readout.is-high {
  border-color: rgba(218, 255, 1, 0.45);
  background: rgba(218, 255, 1, 0.08);
}

.zzqc-stuff-emoji {
  font-size: 2rem;
  line-height: 1;
}

.zzqc-stuff-copy strong {
  display: block;
  font-size: 1rem;
  color: var(--zz-accent);
  margin-bottom: 4px;
}

.zzqc-stuff-copy p {
  margin: 0;
  min-height: 2.9em;
  font-size: 0.8125rem;
  color: var(--zz-muted-light);
  line-height: 1.45;
}

.zzqc-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--zz-border);
  border-radius: var(--zz-radius);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background: var(--zz-surface);
}

.zzqc-checkbox:hover {
  border-color: var(--zz-accent);
  background: var(--zz-surface-raised);
}

.zzqc-checkbox input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.zzqc-checkbox-box {
  width: 20px;
  height: 20px;
  border: 2px solid var(--zz-border-light);
  border-radius: var(--zz-radius);
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.zzqc-checkbox input:checked + .zzqc-checkbox-box {
  background: var(--zz-accent);
  border-color: var(--zz-accent);
}

.zzqc-checkbox input:checked + .zzqc-checkbox-box::after {
  content: "";
  width: 5px;
  height: 9px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-bottom: 2px;
}

.zzqc-checkbox input:focus-visible + .zzqc-checkbox-box {
  box-shadow: 0 0 0 2px rgba(218, 255, 1, 0.35);
}

.zzqc-checkbox-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.zzqc-checkbox-label strong {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--zz-text);
}

.zzqc-checkbox-label small {
  font-size: 0.8125rem;
  color: var(--zz-text-muted);
}

.zzqc-btn {
  font-family: var(--zz-font);
  font-size: 1rem;
  font-weight: 500;
  padding: 14px 24px;
  border: 1px solid var(--zz-accent);
  border-radius: var(--zz-radius);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
  line-height: 1.8;
}

.zzqc-btn--primary {
  background: var(--zz-accent);
  color: #000;
  border-color: var(--zz-accent-border);
  width: 100%;
  margin-top: 4px;
}

.zzqc-btn--primary:hover {
  background: #000;
  color: var(--zz-accent);
  border-color: var(--zz-accent);
}

.zzqc-btn--primary:active {
  background: var(--zz-surface);
}

.zzqc-btn--primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.zzqc-submit-hint {
  margin: 10px 0 0;
  font-size: 0.75rem;
  color: var(--zz-text-muted);
  text-align: center;
  line-height: 1.4;
}

.zzqc-submit-error {
  margin: 0 0 12px;
  padding: 12px 14px;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--zz-error);
  background: rgba(255, 77, 77, 0.1);
  border: 1px solid rgba(255, 77, 77, 0.35);
  text-align: center;
}

.zzqc-date-availability {
  margin: 8px 0 0;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.45;
}

.zzqc-date-availability.is-checking {
  color: #a3a3a3;
}

.zzqc-date-availability.is-open {
  color: #4ade80;
}

.zzqc-date-availability.is-closed {
  color: #f87171;
}

.zzqc-date-availability.is-soft {
  color: #a3a3a3;
}

.zzqc-book-addresses {
  width: 100%;
  text-align: left;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.zzqc-book-addresses .zzqc-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.zzqc-book-addresses input {
  width: 100%;
  font-family: var(--zz-font);
  font-size: 0.9375rem;
  padding: 12px 14px;
  border: 1px solid var(--zz-border);
  background: var(--zz-bg);
  color: var(--zz-text);
}

.zzqc-success {
  animation: zzqc-fade-in 0.35s ease-out;
}

.zzqc-success-card {
  background: var(--zz-surface);
  border: 1px solid var(--zz-border);
  border-top: 2px solid var(--zz-accent);
  padding: 32px 24px;
  text-align: center;
}

.zzqc-success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: rgba(218, 255, 1, 0.15);
  color: var(--zz-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.zzqc-success-title {
  margin: 0 0 10px;
  font-family: var(--zz-font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--zz-text);
}

.zzqc-success-text {
  margin: 0 0 16px;
  font-size: 0.9375rem;
  color: var(--zz-text-muted);
  line-height: 1.6;
}

.zzqc-success-steps {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.zzqc-success-steps li {
  font-size: 0.8125rem;
  color: var(--zz-text-muted);
  line-height: 1.5;
  padding: 10px 12px;
  background: var(--zz-bg);
  border: 1px solid var(--zz-border);
}

.zzqc-success-steps strong {
  color: var(--zz-accent);
}

.zzqc-success-urgent {
  margin: 0 0 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--zz-text-muted);
}

.zzqc-success-urgent a {
  color: var(--zz-accent);
  text-decoration: none;
  font-weight: 800;
}

.zzqc-success-estimate {
  margin: 0 0 14px;
  font-family: var(--zz-font-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--zz-accent);
  letter-spacing: 0.02em;
}

.zzqc-success-alt {
  margin: 14px 0 18px;
  font-size: 0.8125rem;
  color: var(--zz-text-muted);
  line-height: 1.55;
}

.zzqc-success-alt a {
  color: var(--zz-accent);
  text-decoration: none;
  font-weight: 800;
}

.zzqc-success-card--booked {
  border-top-color: #4ade80;
}

.zzqc-success-icon--booked {
  background: rgba(74, 222, 128, 0.15);
  color: #4ade80;
}

.zzqc-tracking-code {
  margin: 0 0 14px;
  padding: 18px 16px;
  background: var(--zz-bg);
  border: 1px solid var(--zz-border);
  border-radius: var(--zz-radius);
}

.zzqc-tracking-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--zz-text-muted);
}

.zzqc-tracking-value {
  display: block;
  font-family: var(--zz-font-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--zz-accent);
  letter-spacing: 0.1em;
}

.zzqc-success-hint {
  margin: 0 0 16px;
  font-size: 0.8125rem;
  color: var(--zz-text-muted);
  line-height: 1.5;
}

.zzqc-result {
  margin-top: 28px;
  animation: zzqc-fade-in 0.35s ease-out;
}

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

.zzqc-result-card {
  background: var(--zz-surface);
  border: 1px solid var(--zz-border);
  border-top: 2px solid var(--zz-accent);
  border-radius: var(--zz-radius);
  padding: 24px;
  text-align: center;
}

.zzqc-result-label {
  margin: 0 0 8px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--zz-accent);
}

.zzqc-result-price {
  margin: 0 0 8px;
  font-family: var(--zz-font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--zz-text);
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.zzqc-result-note {
  margin: 0 0 16px;
  font-size: 0.875rem;
  color: var(--zz-text-muted);
}

.zzqc-result-breakdown {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  text-align: left;
  font-size: 0.8125rem;
  color: var(--zz-text-muted);
}

.zzqc-result-breakdown li {
  padding: 8px 0;
  border-bottom: 1px solid var(--zz-border);
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.zzqc-result-breakdown li:last-child {
  border-bottom: none;
}

.zzqc-result-breakdown li span:last-child {
  color: var(--zz-text);
  font-weight: 500;
  white-space: nowrap;
}

.zzqc-footer {
  padding: 20px 28px 24px;
  background: #111111;
  border-top: 1px solid var(--zz-border);
  text-align: center;
}

.zzqc-footer-brand {
  margin: 0 0 14px;
  font-size: 0.75rem;
  color: var(--zz-text-muted);
}

.zzqc-footer-brand strong {
  color: var(--zz-accent);
}

.zzqc-legal {
  margin: 0;
  font-size: 0.6875rem;
  line-height: 1.65;
  color: #888;
  text-align: left;
  max-width: 100%;
}

.zzqc-legal strong {
  color: var(--zz-text-muted);
  font-weight: 600;
}

.zzqc-legal em {
  font-style: italic;
  color: #999;
}

.zzqc-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  pointer-events: none;
}

.zzqc-collapse {
  border: 1px solid var(--zz-border);
  background: var(--zz-surface);
  margin: 0;
}

.zzqc-collapse summary {
  padding: 14px 16px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--zz-text);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  user-select: none;
}

.zzqc-collapse summary::-webkit-details-marker {
  display: none;
}

.zzqc-collapse summary::after {
  content: "+";
  color: var(--zz-accent);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1;
}

.zzqc-collapse[open] summary::after {
  content: "−";
}

.zzqc-collapse-body {
  padding: 0 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--zz-border);
}

.zzqc-trust {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.zzqc-trust li {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--zz-text-muted);
  padding: 8px 10px;
  background: var(--zz-surface);
  border: 1px solid var(--zz-border);
  text-align: center;
}

.zzqc-trust li::before {
  content: "✓ ";
  color: var(--zz-accent);
}

.zzqc-submit-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.zzqc-btn--call {
  background: transparent;
  color: var(--zz-text);
  border: 1px solid var(--zz-border);
  text-decoration: none;
  width: 100%;
}

.zzqc-btn--call:hover {
  border-color: var(--zz-accent);
  color: var(--zz-accent);
}

.zzqc-price-dock {
  display: none;
  margin-top: 4px;
  padding: 22px 20px 20px;
  border-radius: 14px;
  border: 2px solid rgba(218, 255, 1, 0.42);
  background:
    linear-gradient(160deg, rgba(218, 255, 1, 0.14) 0%, rgba(218, 255, 1, 0.04) 42%, rgba(0, 0, 0, 0.35) 100%);
  box-shadow: 0 0 36px rgba(218, 255, 1, 0.1);
  text-align: center;
}

.zzqc-price-dock:not([hidden]) {
  display: block;
  animation: zzqc-fade-in 0.3s ease;
}

.zzqc-price-dock-label {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(218, 255, 1, 0.82);
}

.zzqc-price-dock-price {
  margin: 10px 0 0;
  font-family: var(--zz-font-display);
  font-size: 2.375rem;
  line-height: 1.05;
  color: var(--zz-accent);
  text-shadow: 0 0 28px rgba(218, 255, 1, 0.35);
  word-break: break-word;
}

.zzqc-price-dock-note {
  margin: 10px 0 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .zzqc-price-dock {
    padding: 20px 16px 18px;
  }

  .zzqc-price-dock-price {
    font-size: 2.625rem;
  }
}

@media (max-width: 400px) {
  .zzqc-price-dock-price {
    font-size: 2.125rem;
  }
}

@media (max-width: 400px) {
  .zzqc-field-row--split {
    flex-direction: column;
  }

  .zzqc-main {
    padding: 20px;
  }

  .zzqc-live-strip {
    padding: 8px 12px 7px;
  }

  .zzqc-live-title {
    font-size: 0.8125rem;
  }

  .zzqc-live-price-box {
    min-width: 4.75rem;
    padding: 6px 9px;
  }

  .zzqc-live-bar.is-ready .zzqc-live-price {
    font-size: 0.9375rem;
  }

  .zzqc-result-price {
    font-size: 1.625rem;
  }

  .zzqc-footer {
    padding: 16px 20px 20px;
  }

  .zzqc-logo-img {
    height: 40px;
    max-width: 190px;
  }
}