:root {
  --page: #0c1113;
  --panel: #151d20;
  --panel-2: #1b2529;
  --text: #f1f7f5;
  --muted: #a8b8b6;
  --line: rgba(129, 209, 197, 0.22);
  --accent: #4fd1c5;
  --accent-2: #7dd3c7;
  --warn: #ffd166;
  --ok: #65d69a;
  --error: #ff8a7a;
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  --content: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--page);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; }
a { color: var(--accent-2); text-underline-offset: 0.18em; }
a:hover { color: var(--text); }

.preview-ribbon {
  background: #203035;
  color: var(--accent-2);
  text-align: center;
  font-size: 0.84rem;
  padding: 0.45rem 1rem;
  border-bottom: 1px solid var(--line);
}

.preview-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(12, 17, 19, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.header-inner,
.section,
.hero-inner,
.footer-inner {
  width: min(calc(100% - 2rem), var(--content));
  margin: 0 auto;
}
.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--text);
}
.brand img { width: 72px; border-radius: 6px; }
.brand strong { display: block; font-size: 1.08rem; }
.brand span { color: var(--muted); font-size: 0.9rem; }
.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.4rem;
}
.nav a,
.nav-menu summary,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 0.95rem;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}
.nav-menu {
  position: relative;
}
.nav-menu summary {
  cursor: pointer;
  list-style: none;
}
.nav-menu summary::-webkit-details-marker {
  display: none;
}
.nav-menu summary::after {
  content: "v";
  margin-left: 0.45rem;
  font-size: 0.7rem;
  color: var(--accent-2);
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  width: min(92vw, 34rem);
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 0.35rem;
  padding: 0.7rem;
  background: #101719;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  z-index: 30;
}
.nav-dropdown a {
  justify-content: flex-start;
  min-height: 42px;
  padding: 0.58rem 0.68rem;
  white-space: normal;
}
.nav a:hover,
.nav a:focus-visible,
.nav-menu summary:hover,
.nav-menu summary:focus-visible,
.nav-menu[open] summary,
.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
  border-color: var(--line);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}
.button.primary { background: var(--accent); color: #071112; }
.button.secondary { background: var(--panel-2); border-color: var(--line); }
.button.ghost { background: transparent; border-color: var(--line); }
.nav a:focus-visible,
.button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.hero {
  padding: 4rem 0 2.5rem;
  background: linear-gradient(180deg, rgba(79, 209, 197, 0.08), transparent 70%);
}
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 1.5rem;
  align-items: center;
}
.eyebrow {
  color: var(--accent-2);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}
h1, h2, h3 { line-height: 1.16; margin: 0 0 0.75rem; }
h1 { font-size: clamp(2.4rem, 6vw, 5rem); max-width: 11ch; }
h2 { font-size: clamp(1.65rem, 3vw, 2.4rem); }
h3 { font-size: 1.15rem; }
p { margin-top: 0; }
.lead { color: var(--muted); font-size: 1.14rem; max-width: 64ch; }
.hero-card,
.card,
.panel,
.alert,
.form-shell {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.hero-card { overflow: hidden; }
.hero-card img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.hero-card figcaption { padding: 1rem; color: var(--muted); }
.actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.25rem; }

.section { padding: 3.2rem 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: 1.2rem; }
.grid { display: grid; gap: 1rem; }
.services { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.process, .repairs, .trust { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.card, .panel, .form-shell { padding: 1.2rem; }
.card { color: var(--text); text-decoration: none; }
.card p, .panel p { color: var(--muted); }
.card:hover, .card:focus-visible { transform: translateY(-4px); border-color: rgba(79, 209, 197, 0.48); }
.repair-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 6px; margin-bottom: 0.85rem; }
.badge { display: inline-block; color: var(--accent-2); font-size: 0.8rem; font-weight: 800; margin-bottom: 0.4rem; }
.step { border-left: 3px solid var(--accent); padding-left: 1rem; }

.alert { padding: 1rem; margin-bottom: 1rem; }
.alert.warn { border-color: rgba(255, 209, 102, 0.5); background: #261f10; }
.alert.ok { border-color: rgba(101, 214, 154, 0.5); background: #11251d; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.field { display: grid; gap: 0.35rem; }
.field label { font-weight: 800; }
.required-cue { color: var(--warn); font-weight: 900; }
.field input, .field textarea, .field select {
  width: 100%;
  color: var(--text);
  background: #101719;
  border: 1px solid rgba(168, 184, 182, 0.38);
  border-radius: 8px;
  padding: 0.72rem 0.8rem;
  font: inherit;
}
.help { color: var(--muted); font-size: 0.92rem; }
.footer { border-top: 1px solid var(--line); background: #0a0f11; margin-top: 2rem; }
.footer-inner { padding: 2rem 0; display: grid; gap: 1rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 0.7rem; }

@media (max-width: 860px) {
  .header-inner, .hero-inner, .services { grid-template-columns: 1fr; }
  .header-inner { display: grid; padding: 0.85rem 0; }
  .nav { justify-content: flex-start; }
  .nav-dropdown { left: 0; right: auto; }
  h1 { max-width: 100%; }
}
@media (max-width: 620px) {
  .nav { width: 100%; }
  .nav-menu { width: 100%; }
  .nav-menu summary { width: 100%; justify-content: space-between; }
  .nav-dropdown { position: static; width: 100%; grid-template-columns: 1fr; margin-top: 0.45rem; }
  .form-grid { grid-template-columns: 1fr; }
  .section { padding: 2.4rem 0; }
  .hero { padding-top: 2.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .nav a, .nav-menu summary, .button, .card { transition: none; }
  .nav a:hover, .nav a:focus-visible, .nav-menu summary:hover, .nav-menu summary:focus-visible, .button:hover, .button:focus-visible, .card:hover, .card:focus-visible { transform: none; }
}

.request-layout { display: grid; gap: 1.25rem; }
.test-mode-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-left: 0.65rem;
  padding: 0.25rem 0.65rem;
  border: 1px solid rgba(255, 209, 102, 0.58);
  border-radius: 999px;
  color: var(--warn);
  background: #201a0d;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.review-panel .alert { margin-top: 1rem; margin-bottom: 0; }
.request-intro h1 { max-width: 14ch; }
.progress-wrap {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
  box-shadow: var(--shadow);
  overflow-x: auto;
}
.progress-list {
  --steps: 6;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(var(--steps), minmax(118px, 1fr));
  gap: 0;
  padding: 0;
  margin: 0;
  min-width: min(760px, 100%);
  counter-reset: progress;
}
.progress-count-4 { --steps: 4; }
.progress-count-6 { --steps: 6; }
.progress-step {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 0.45rem;
  min-height: 86px;
  color: var(--muted);
  text-align: center;
}
.progress-step::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(168, 184, 182, 0.3);
  z-index: 0;
}
.progress-step:first-child::before { left: 50%; }
.progress-step:last-child::before { right: 50%; }
.step-marker {
  z-index: 1;
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border: 2px solid rgba(168, 184, 182, 0.62);
  border-radius: 999px;
  background: #101719;
  color: var(--text);
  font-weight: 900;
}
.progress-step.is-complete .step-marker {
  border-color: var(--ok);
  background: #11251d;
  color: var(--ok);
}
.progress-step.is-current .step-marker {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(79, 209, 197, 0.16);
}
.progress-step.is-current .step-copy { color: var(--text); }
.step-copy { display: grid; gap: 0.12rem; }
.step-state {
  display: block;
  color: var(--accent-2);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.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;
}
.category-card-panel {
  grid-column: 1 / -1;
  display: grid;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.category-card-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}
.category-card-head h3 { margin-bottom: 0.25rem; }
.selected-category {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  color: var(--accent-2);
  font-size: 0.9rem;
  font-weight: 800;
}
.category-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}
.category-card {
  position: relative;
  min-height: 104px;
  display: grid;
  place-items: center;
  padding: 1rem 2.75rem 1rem 1rem;
  border: 1px solid rgba(168, 184, 182, 0.34);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(79, 209, 197, 0.045), transparent 58%), #101719;
  color: var(--text);
  text-align: center;
  font: inherit;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}
.category-card:hover,
.category-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(79, 209, 197, 0.62);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.26);
  outline: 0;
}
.category-card:focus-within { outline: 3px solid var(--accent); outline-offset: 3px; }
.category-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.category-card.is-selected {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(79, 209, 197, 0.16), rgba(79, 209, 197, 0.06)), #101719;
  box-shadow: inset 0 0 0 1px rgba(79, 209, 197, 0.22), 0 16px 34px rgba(0, 0, 0, 0.22);
}
.category-card.is-selected::after {
  content: "✓";
  position: absolute;
  top: 0.7rem;
  right: 0.75rem;
  width: 1.45rem;
  height: 1.45rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--accent);
  color: #071112;
  font-size: 0.9rem;
  font-weight: 900;
}
.category-title { font-weight: 900; font-size: 1rem; line-height: 1.28; max-width: 18ch; }
.synchronized-schema-field {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.question-group {
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
  margin-top: 1.25rem;
}
.group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}
.group-head span { color: var(--muted); font-size: 0.9rem; }
.field-label,
.field legend {
  color: var(--text);
  font-weight: 800;
}
.choice-field {
  border: 0;
  padding: 0;
  margin: 0;
}
.choice-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.choice {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(168, 184, 182, 0.32);
  border-radius: 8px;
  padding: 0.55rem 0.7rem;
  background: #101719;
  cursor: pointer;
}
.choice input { width: auto; }
.single-choice { justify-content: flex-start; }
.field-disabled .disabled-control,
.info-control {
  border: 1px dashed rgba(168, 184, 182, 0.38);
  border-radius: 8px;
  padding: 0.75rem;
  color: var(--muted);
  background: #101719;
}
.country-note.is-warning,
.sms-consent-field.has-soft-error .sms-note {
  color: #ffd0c7;
}
.sms-consent-field.is-disabled .choice {
  opacity: 0.65;
}
.status-panel,
.summary-panel,
.review-panel,
.help-block {
  border-top: 1px solid var(--line);
  margin-top: 1.5rem;
  padding-top: 1.2rem;
}
.status-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(220px, 1.1fr);
  gap: 1rem;
  align-items: start;
}
.required-list {
  display: grid;
  gap: 0.4rem;
  margin: 0;
  padding-left: 1.15rem;
}
.required-list a { color: var(--text); }
.required-list .is-complete { color: var(--ok); font-weight: 800; }
.summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0;
}
.summary-grid div {
  border: 1px solid rgba(168, 184, 182, 0.22);
  border-radius: 8px;
  padding: 0.75rem;
  background: #101719;
}
.summary-grid dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.summary-grid dd {
  margin: 0.25rem 0 0;
  color: var(--text);
  overflow-wrap: anywhere;
}
.review-panel li { margin-bottom: 0.35rem; }
.help-block h3 { margin-bottom: 0.2rem; }
.compact-actions { margin-top: 0.7rem; }
input:disabled,
textarea:disabled,
select:disabled {
  opacity: 0.62;
  cursor: not-allowed;
}

@media (max-width: 900px) {
  .category-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .progress-wrap { padding: 0.75rem; }
  .progress-list {
    display: flex;
    min-width: 0;
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }
  .progress-step {
    flex: 0 0 9.5rem;
    scroll-snap-align: start;
  }
  .progress-step::before { left: 0; right: 0; }
  .category-card-head,
  .status-panel,
  .summary-grid {
    grid-template-columns: 1fr;
  }
  .category-card-head { display: grid; }
  .category-cards { grid-template-columns: 1fr; }
  .group-head { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 620px) {
  .category-card { min-height: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .category-card { transition: none; }
  .category-card:hover,
  .category-card:focus-visible { transform: none; }
}

.breadcrumbs { color: var(--muted); font-size: 0.92rem; margin-bottom: 1rem; }
.breadcrumbs a { color: var(--accent-2); }
.template-hero h1 { max-width: 13ch; }
.template-hero .hero-inner { align-items: stretch; }
.hero-media { overflow: hidden; }
.hero-media img { width: 100%; height: auto; object-fit: cover; display: block; }
.detail-list { display: grid; gap: 0.65rem; padding: 0; margin: 0; list-style: none; }
.detail-list li { padding-left: 1rem; border-left: 3px solid var(--accent); color: var(--muted); }
.split { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr); gap: 1rem; align-items: start; }
.stat-row { display: grid; gap: 0.75rem; }
.gallery-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.gallery-strip figure { margin: 0; }
.gallery-strip img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 6px; }
.gallery-strip figcaption { color: var(--muted); font-size: 0.92rem; margin-top: 0.45rem; }
.related-links { display: flex; flex-wrap: wrap; gap: 0.65rem; }
.related-links a { border: 1px solid var(--line); border-radius: 8px; padding: 0.65rem 0.8rem; text-decoration: none; color: var(--text); background: var(--panel-2); }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }

/* Component library preview additions */
.component-library-nav { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.component-library-nav a { min-height: 40px; display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 8px; padding: 0.55rem 0.75rem; background: var(--panel-2); color: var(--text); text-decoration: none; }
.component-demo { border-top: 1px solid var(--line); }
.component-demo:first-of-type { border-top: 0; }
.component-hero { background: linear-gradient(180deg, rgba(79, 209, 197, 0.08), transparent 75%); }
.text-only-hero .hero-inner { grid-template-columns: minmax(0, 0.85fr); }
.component-breadcrumb { color: var(--muted); font-size: 0.92rem; margin-bottom: 0.75rem; }
.component-breadcrumb a { color: var(--accent-2); }
.component-badge { display: inline-flex; min-height: 32px; align-items: center; border: 1px solid var(--line); border-radius: 999px; padding: 0.25rem 0.65rem; color: var(--accent-2); background: rgba(79, 209, 197, 0.08); font-size: 0.82rem; font-weight: 800; }
.service-card { display: grid; grid-template-rows: auto 1fr; overflow: hidden; padding: 0; }
.service-card__media { aspect-ratio: 16 / 10; background: var(--panel-2); }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-card__body { padding: 1rem; display: grid; gap: 0.55rem; }
.process-timeline { list-style: none; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 0.75rem; padding: 0; margin: 0; counter-reset: process; }
.process-timeline li { position: relative; padding: 1rem; border: 1px solid var(--line); border-radius: 8px; background: var(--panel); }
.process-timeline li::before { counter-increment: process; content: counter(process); width: 34px; height: 34px; display: grid; place-items: center; border-radius: 999px; background: var(--accent); color: #071112; font-weight: 900; margin-bottom: 0.65rem; }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; }
.trust-item { padding: 1rem; border: 1px solid var(--line); border-radius: 8px; background: var(--panel); }
.trust-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 999px; background: var(--panel-2); color: var(--accent-2); font-weight: 900; margin-bottom: 0.65rem; }
.pricing-callout { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1rem; }
.pricing-card { padding: 1rem; border: 1px solid var(--line); border-radius: 8px; background: var(--panel); }
.pricing-card.is-diagnostic { border-color: rgba(255, 209, 102, 0.55); }
.pricing-card.is-success { border-color: rgba(101, 214, 154, 0.55); }
.price-label { color: var(--muted); font-size: 0.88rem; }
.price-value { font-size: 1.5rem; font-weight: 900; color: var(--text); }
.faq-list { display: grid; gap: 0.75rem; }
.faq-item { border: 1px solid var(--line); border-radius: 8px; background: var(--panel); padding: 0.2rem 0.9rem; }
.faq-item summary { min-height: 48px; display: flex; align-items: center; cursor: pointer; font-weight: 800; }
.faq-item div { color: var(--muted); padding: 0 0 0.9rem; }
.testimonial-card { margin: 0; padding: 1rem; border: 1px solid var(--line); border-radius: 8px; background: var(--panel); }
.testimonial-card blockquote { margin: 0 0 0.85rem; color: var(--text); font-size: 1.08rem; }
.testimonial-meta { color: var(--muted); }
.before-after { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin: 0; }
.before-after figure { margin: 0; border: 1px solid var(--line); border-radius: 8px; background: var(--panel); overflow: hidden; }
.before-after img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block; }
.before-after figcaption { padding: 0.75rem; color: var(--muted); }
.failure-table { display: grid; gap: 0.55rem; }
.failure-row { display: grid; grid-template-columns: 1fr 1.2fr 1.2fr 0.7fr; gap: 0.75rem; padding: 0.8rem; border: 1px solid var(--line); border-radius: 8px; background: var(--panel); }
.failure-row.header { color: var(--accent-2); font-weight: 900; background: var(--panel-2); }
.service-area-cta, .contact-cta { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 1rem; align-items: center; padding: 1.25rem; border: 1px solid var(--line); border-radius: 8px; background: var(--panel); }
.image-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.image-gallery figure { margin: 0; border: 1px solid var(--line); border-radius: 8px; background: var(--panel); overflow: hidden; }
.image-gallery img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block; }
.image-gallery figcaption { padding: 0.75rem; color: var(--muted); }
.status-note { color: var(--warn); font-weight: 800; }
@media (max-width: 860px) { .process-timeline, .before-after, .service-area-cta, .contact-cta { grid-template-columns: 1fr; } .failure-row { grid-template-columns: 1fr; } .failure-row.header { display: none; } .failure-row span::before { content: attr(data-label) ': '; color: var(--accent-2); font-weight: 900; } }


/* Golden service page additions */
.service-page-hero h1 { max-width: 12ch; }
.service-page-hero .help { max-width: 62ch; margin-top: 0.75rem; }
.service-split { grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr); }
.symptom-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.process-timeline-seven { grid-template-columns: repeat(7, minmax(0, 1fr)); }
.process-timeline-seven li { min-width: 0; }
.process-timeline-seven h3 { font-size: 1rem; }
.pricing-card.is-featured {
  border-color: rgba(79, 209, 197, 0.7);
  background: linear-gradient(180deg, rgba(79, 209, 197, 0.14), rgba(79, 209, 197, 0.04)), var(--panel);
}
.placeholder-figure { min-height: 100%; }
.image-placeholder {
  min-height: 100%;
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: repeating-linear-gradient(135deg, rgba(79, 209, 197, 0.08), rgba(79, 209, 197, 0.08) 14px, rgba(168, 184, 182, 0.05) 14px, rgba(168, 184, 182, 0.05) 28px), #101719;
  color: var(--accent-2);
  font-weight: 900;
  text-align: center;
}
.faq-item summary:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
@media (max-width: 1120px) { .process-timeline-seven { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (max-width: 900px) { .symptom-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 860px) { .process-timeline-seven, .symptom-grid { grid-template-columns: 1fr; } .service-page-hero h1 { max-width: 100%; } }

.included-list { display: grid; gap: 0.4rem; margin: 0.65rem 0 0; padding-left: 1.15rem; color: var(--muted); }
.included-list li::marker { color: var(--accent-2); }


/* Console services framework additions */
.console-service-hero h1 { max-width: 13ch; }
.console-service-nav { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.console-service-nav a,
.roadmap-grid span {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.62rem 0.8rem;
  background: var(--panel-2);
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
}
.console-card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.console-service-card .service-card__body { align-content: start; }
.included-service-grid,
.cleaning-grid,
.roadmap-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.included-service,
.additional-damage-warning {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}
.included-service p,
.cleaning-grid p,
.tim-component p,
.maintenance-panel p,
.additional-damage-warning p { color: var(--muted); }
.variant-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin-top: 1rem; }
.variant-list article { border: 1px solid rgba(168, 184, 182, 0.24); border-radius: 8px; background: #101719; padding: 1rem; }
.additional-damage-warning { border-color: rgba(255, 209, 102, 0.55); background: linear-gradient(180deg, rgba(255, 209, 102, 0.09), rgba(255, 209, 102, 0.03)), var(--panel); }
@media (max-width: 900px) { .console-card-grid, .variant-list { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 860px) { .console-card-grid, .variant-list { grid-template-columns: 1fr; } .console-service-hero h1 { max-width: 100%; } }


/* Batched service preview additions */
.model-pricing { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.model-price-card { padding: 1rem; border: 1px solid var(--line); border-radius: 8px; background: var(--panel); }
.model-price-card.is-primary { border-color: rgba(79, 209, 197, 0.72); background: linear-gradient(180deg, rgba(79, 209, 197, 0.13), rgba(79, 209, 197, 0.04)), var(--panel); }
.boundary-callout { padding: 1rem; border: 1px solid rgba(255, 209, 102, 0.55); border-radius: 8px; background: linear-gradient(180deg, rgba(255, 209, 102, 0.09), rgba(255, 209, 102, 0.03)), var(--panel); }
.device-path-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1rem; }
.preview-placeholder-card { min-height: 0; display: grid; place-items: center; padding: 1rem; border: 1px dashed rgba(168, 184, 182, 0.48); border-radius: 8px; background: #101719; color: var(--accent-2); font-weight: 900; text-align: center; }

.compact-service-hero { padding-top: 2.4rem; }
.service-summary { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr); gap: 1.25rem; align-items: start; }
.compact-service-hero h1 { max-width: 16ch; font-size: clamp(2rem, 4vw, 3.5rem); }
.compact-bullets { display: grid; gap: 0.45rem; margin: 1rem 0 0; padding-left: 1.15rem; color: var(--muted); }
.service-photo img { width: 100%; height: auto; object-fit: cover; background: transparent; display: block; }
.service-photo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 0.8rem; align-self: start; padding: 0.8rem; }
.service-photo-grid figure { margin: 0; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: var(--panel); }
.service-photo-grid img { width: 100%; aspect-ratio: 4 / 3; height: 100%; max-height: none; object-fit: cover; background: transparent; display: block; }
.process-list { display: grid; gap: 0.65rem; margin: 0; padding-left: 1.35rem; color: var(--muted); }
@media (max-width: 860px) { .service-summary { grid-template-columns: 1fr; } .compact-service-hero { padding-top: 1.8rem; } }

.service-touch-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.service-touch-grid .card { min-height: 100%; display: grid; grid-template-rows: auto 1fr auto; gap: 0.25rem; }
.service-touch-grid .card h3 { margin-bottom: 0.25rem; }
.text-link { color: var(--accent-2); font-weight: 900; }
.homepage-photo-grid img { aspect-ratio: 4 / 3; height: 100%; max-height: none; object-fit: cover; background: transparent; }
.homepage-photo-grid figure { pointer-events: none; box-shadow: none; }
.homepage-photo-grid figcaption { display: none; }
.device-photo { background: #eef2f4; }
.device-photo img { padding: 0.75rem; object-fit: contain; }
.field-wide { grid-column: 1 / -1; }
.category-card input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.category-card { position: relative; }
.category-card:has(input:checked) { border-color: var(--accent); background: linear-gradient(180deg, rgba(79, 209, 197, 0.16), rgba(79, 209, 197, 0.06)), #101719; }
.category-card[hidden], .field[hidden], .alert[hidden] { display: none; }
.form-shell legend.sr-only { position: absolute; }
@supports not selector(:has(*)) { .category-card.is-selected { border-color: var(--accent); } }
.contain-art img {
  aspect-ratio: 3 / 2;
  object-fit: contain;
  background: transparent;
}
.repair-card.contain-art img,
.hero-card.contain-art img {
  padding: 0;
}

/* Reviews and contact page additions */
.review-source-grid,
.contact-option-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.review-source-card,
.contact-option {
  display: grid;
  align-content: start;
  gap: 0.45rem;
}
.review-source-card .button {
  justify-self: start;
  margin-top: 0.35rem;
}
.contact-option p {
  margin-bottom: 0;
  font-weight: 800;
  overflow-wrap: anywhere;
}
.contact-option h2 {
  font-size: 1.35rem;
}
