/* Sonke Design v18 — developer flow, sales-system view and contact form. */

/* Keep reveal animations and the closed mobile menu from widening the page. */
html,
body {
  overflow-x: clip;
}

/* The supplied NOVA LINE interface is already a clean, complete composition. */
.service-row__image--system {
  aspect-ratio: auto;
}

.sales-system-preview--v18,
.sales-system-preview--v18 .sales-system-preview__primary {
  display: block;
  width: 100%;
  height: auto;
}

.sales-system-preview--v18 .sales-system-preview__primary {
  aspect-ratio: 1905 / 901;
  overflow: hidden;
  border: 1px solid rgba(36, 35, 33, 0.12);
  border-radius: 12px;
  background: #f3f0ea;
  box-shadow: 0 20px 46px rgba(36, 35, 33, 0.14);
}

.service-row__image--system .sales-system-preview--v18 img {
  position: static;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Developer delivery process: never use horizontal swiping as navigation. */
.delivery-line {
  overflow-x: visible;
}

/* Contact scope is a set of real choices, not a decorative tag list. */
.contact-fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-fieldset legend {
  margin-bottom: 12px;
  padding: 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-scope-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.contact-scope {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 54px;
  gap: 11px;
  padding: 13px 15px;
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.contact-scope:hover,
.contact-scope:has(input:focus-visible) {
  border-color: var(--color-accent-dark);
}

.contact-scope:has(input:checked) {
  border-color: var(--color-accent-dark);
  background: rgba(165, 132, 91, 0.08);
}

.contact-scope input {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--color-accent-dark);
}

.contact-scope span {
  font-size: 12px;
  line-height: 1.35;
}

.form-note {
  margin: -10px 0 0;
  color: var(--color-text-muted);
  font-size: 11px;
}

.contact-form button[disabled] {
  cursor: wait;
  opacity: 0.58;
}

@media (max-width: 760px) {
  .delivery-line {
    grid-template-columns: 1fr;
    border-left: 0;
  }

  .delivery-line article {
    min-height: 0;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 22px 0;
    border-right: 0;
  }

  .delivery-line h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.18;
    text-wrap: balance;
  }

  .sales-system-preview--v18 .sales-system-preview__primary {
    aspect-ratio: 1180 / 730;
    border-radius: 8px;
  }

  .contact-scope-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-scope {
    transition: none;
  }
}
