:root {
  --bg: #ffffff;
  --ink: #12141a;
  --muted: #5d6675;
  --line: #dbe2ea;
  --soft: #f5f8fb;
  --cyan: #12a9e8;
  --cyan-dark: #087daf;
  --orange: #ff6422;
  --orange-dark: #d9480f;
  --lime: #a3e635;
  --shadow: 0 18px 50px rgba(18, 20, 26, 0.14);
  --radius: 8px;
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

[hidden] {
  display: none !important;
}

.page-main.private-order-main {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  overflow-x: clip;
}

.private-order-main .content-block,
.private-order-form,
.private-order-form fieldset {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.private-order-hero {
  padding-bottom: 34px;
}

.order-trust-strip,
.price-floor-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.order-trust-strip li,
.price-floor-list li {
  border: 1px solid rgba(18, 169, 232, 0.28);
  border-radius: 999px;
  padding: 8px 12px;
  background: #ffffff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.private-order-form {
  padding-top: 34px;
}

.private-order-form input[type="file"] {
  min-width: 0;
  max-width: 100%;
}

.private-order-form fieldset {
  margin: 0 0 1.5rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
}

.private-order-form legend {
  padding: 0 0.5rem;
  font-weight: 800;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field-grid label,
.private-order-form fieldset > label {
  display: grid;
  gap: 0.45rem;
}

.field-wide,
.estimate-output {
  grid-column: 1 / -1;
}

.private-order-form input,
.private-order-form select,
.private-order-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0.65rem;
  color: inherit;
  background: rgba(8, 20, 32, 0.65);
}

.private-order-form input,
.private-order-form select,
.private-order-form textarea {
  border-color: var(--line);
  color: var(--ink);
  background: var(--soft);
}

.private-order-form textarea {
  min-height: 8rem;
  resize: vertical;
}

.private-order-form .check-row,
.check-row {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.private-order-form .check-row input,
.check-row input {
  width: auto;
  margin-top: 0.2rem;
}

.private-order-form progress {
  width: 100%;
  margin-top: 0.75rem;
}

.private-file-drop {
  min-height: 150px;
}

.private-file-drop strong {
  color: var(--cyan-dark);
  font-size: 18px;
}

.private-file-drop span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.guided-estimate {
  border-color: rgba(18, 169, 232, 0.42) !important;
  background: linear-gradient(135deg, rgba(18, 169, 232, 0.07), rgba(255, 100, 34, 0.05));
}

.price-floor-list {
  margin: 0;
}

.price-floor-list li {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.slicer-override {
  border-top: 1px solid rgba(18, 169, 232, 0.22);
  padding-top: 14px;
}

.slicer-override summary {
  cursor: pointer;
  color: var(--cyan-dark);
  font-weight: 850;
}

.slicer-override .field-grid {
  margin-top: 14px;
}

.capability-note {
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  padding: 14px 16px;
  background: rgba(255, 100, 34, 0.07);
}

.capability-note p,
.order-submit p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.order-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 6px;
}

.order-submit .button {
  flex: 0 0 auto;
}

.estimate-output,
.form-note,
[data-order-message],
[data-status-message] {
  padding: 0.9rem;
  border-radius: 0.7rem;
  background: rgba(18, 169, 232, 0.1);
}

[data-order-message]:empty {
  display: none;
}

.private-order-form p.estimate-output {
  display: block;
  color: #ffffff;
  background: var(--ink);
}

[data-state="error"] {
  color: #8a1c1c;
  background: #fff0f0;
}

[data-state="success"] {
  color: #176b35;
  background: #ecfff2;
}

.status-details {
  display: grid;
  grid-template-columns: minmax(8rem, 0.4fr) 1fr;
  gap: 0.75rem 1.5rem;
  margin-bottom: 1.5rem;
}

.status-details dt { font-weight: 800; }
.status-details dd { margin: 0; }

@media (max-width: 680px) {
  .field-grid { grid-template-columns: 1fr; }
  .order-submit { align-items: stretch; flex-direction: column; }
  .order-submit .button { width: 100%; }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(219, 226, 234, 0.82);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  background: var(--ink);
  color: #ffffff;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: inset -5px -5px 0 rgba(18, 169, 232, 0.72);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 30px);
  min-width: 0;
  max-width: 100%;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.nav a {
  text-decoration: none;
  white-space: nowrap;
}

.nav a:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.78fr);
  grid-template-areas:
    "copy request"
    "media request";
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: calc(100vh - 69px);
  padding: clamp(28px, 5vw, 62px) clamp(18px, 5vw, 70px) clamp(26px, 4vw, 44px);
  background:
    linear-gradient(135deg, rgba(18, 169, 232, 0.08), transparent 34%),
    linear-gradient(315deg, rgba(255, 100, 34, 0.08), transparent 34%),
    #ffffff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 18px;
  background: linear-gradient(90deg, var(--cyan), var(--orange), var(--lime));
}

.hero-copy {
  position: relative;
  z-index: 2;
  grid-area: copy;
  align-self: center;
  max-width: 660px;
}

.hero h1 {
  max-width: 640px;
  margin: 0;
  font-size: clamp(52px, 6.3vw, 90px);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--cyan-dark);
}

.hero-lede {
  max-width: 570px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 21px);
}

.hero-actions,
.form-actions,
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 24px;
}

.quick-requests {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 560px;
  margin-top: 16px;
}

.quick-request {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 2px 10px;
  align-items: center;
  min-height: 72px;
  border: 1px solid rgba(18, 20, 26, 0.12);
  border-radius: var(--radius);
  padding: 12px;
  background: #ffffff;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(18, 20, 26, 0.08);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.quick-request::before {
  content: "";
  grid-row: 1 / span 2;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.44), transparent 48%),
    var(--cyan);
  box-shadow:
    9px 5px 0 -3px var(--orange),
    4px 10px 0 -4px var(--lime);
}

.quick-request-title {
  font-size: 15px;
  font-weight: 900;
  line-height: 1.1;
}

.quick-request-meta {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.25;
}

.quick-request:hover,
.quick-request:focus-visible {
  border-color: rgba(18, 169, 232, 0.5);
  box-shadow: 0 14px 30px rgba(18, 169, 232, 0.14);
  transform: translateY(-2px);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

[data-email-link][hidden],
[data-whatsapp-cta][hidden] {
  display: none !important;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--orange);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(255, 100, 34, 0.24);
}

.button-primary:hover {
  background: var(--orange-dark);
}

.button-whatsapp {
  border-color: #111827;
  background: #ffffff;
  color: #111827;
}

.button-secondary {
  border-color: var(--line);
  background: #ffffff;
  color: var(--ink);
}

.button-icon,
.file-drop-icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
}

.button-icon path,
.file-drop-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-cues {
  display: grid;
  gap: 10px;
  max-width: 560px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.service-cues li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 1px 14px;
  align-items: center;
  min-height: 54px;
}

.service-cues strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.1;
}

.service-cues span:not(.cue-icon) {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.cue-icon {
  position: relative;
  grid-row: span 2;
  width: 38px;
  height: 38px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  color: var(--cyan-dark);
}

.cue-icon::before,
.cue-icon::after {
  content: "";
  position: absolute;
}

.clock-icon::before {
  width: 10px;
  height: 2px;
  left: 17px;
  top: 17px;
  background: currentColor;
  transform-origin: left center;
  transform: rotate(-42deg);
}

.clock-icon::after {
  width: 2px;
  height: 11px;
  left: 17px;
  top: 9px;
  background: currentColor;
}

.price-icon::before {
  width: 14px;
  height: 18px;
  left: 10px;
  top: 8px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.price-icon::after {
  width: 10px;
  height: 2px;
  left: 13px;
  top: 17px;
  background: currentColor;
  box-shadow: 0 5px 0 currentColor;
}

.check-icon::before {
  width: 16px;
  height: 9px;
  left: 10px;
  top: 12px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(-45deg);
}

.hero-media {
  grid-area: media;
  width: min(520px, 100%);
  margin: clamp(20px, 3vw, 34px) 0 0;
  overflow: hidden;
  border: 1px solid rgba(18, 169, 232, 0.22);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(18, 20, 26, 0.1);
}

.hero-image {
  display: block;
  width: 100%;
  height: clamp(180px, 23vw, 265px);
  object-fit: cover;
  object-position: center;
}

.request-panel {
  position: relative;
  z-index: 3;
  grid-area: request;
  align-self: center;
  padding: clamp(18px, 2.4vw, 28px);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.request-panel-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(140px, 0.46fr);
  gap: 14px;
  align-items: start;
}

.request-signal {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid rgba(18, 169, 232, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(18, 169, 232, 0.1), rgba(163, 230, 53, 0.1)),
    #ffffff;
}

.request-signal strong {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.12;
}

.request-signal span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.2;
}

.request-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(90deg, var(--cyan), var(--orange));
}

.request-panel.is-highlighted {
  border-color: rgba(18, 169, 232, 0.8);
  box-shadow:
    var(--shadow),
    0 0 0 5px rgba(18, 169, 232, 0.16);
}

.panel-label {
  margin: 0 0 8px;
  color: var(--cyan-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.request-panel h2 {
  margin: 0;
  font-size: clamp(26px, 2.7vw, 36px);
  line-height: 1;
  letter-spacing: 0;
}

.request-panel p {
  margin: 8px 0 0;
  color: var(--muted);
}

.quote-form {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.quick-estimator {
  display: grid;
  gap: 12px;
  margin-bottom: 4px;
  padding: 18px;
  border: 1px solid rgba(18, 169, 232, 0.3);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(18, 169, 232, 0.09), rgba(255, 100, 34, 0.06)),
    #ffffff;
}

.quick-estimator h3,
.quick-estimator p {
  margin: 0;
}

.quick-estimator h3 {
  font-size: 21px;
}

.estimate-output {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 16px;
  align-items: end;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #ffffff;
}

.estimate-output[hidden] {
  display: none;
}

.estimate-output span {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.estimate-output strong {
  grid-row: span 2;
  color: #ffffff;
  font-size: 30px;
}

.estimate-output small {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 650;
}

.estimator-note {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

label {
  display: grid;
  gap: 5px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 11px 12px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(18, 169, 232, 0.22);
  border-color: var(--cyan);
}

.file-drop {
  display: grid;
  min-height: 132px;
  gap: 7px;
  place-items: center;
  border: 2px dashed rgba(18, 169, 232, 0.55);
  border-radius: var(--radius);
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(18, 169, 232, 0.08), rgba(255, 100, 34, 0.08)),
    #ffffff;
  text-align: center;
  cursor: pointer;
}

.file-drop input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.file-drop.is-dragging {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 100, 34, 0.14);
}

.file-drop:focus-within {
  border-color: var(--cyan);
  outline: 3px solid rgba(18, 169, 232, 0.22);
  outline-offset: 3px;
}

.file-drop span {
  font-size: 18px;
  font-weight: 900;
}

.file-drop-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 13px !important;
  font-weight: 900;
}

.file-drop-icon {
  width: 34px;
  height: 34px;
  color: var(--cyan-dark);
}

.file-drop small,
.form-note {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.selected-file-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(18, 169, 232, 0.32);
  border-radius: var(--radius);
  background: #ffffff;
}

.selected-file-card[hidden] {
  display: none;
}

.selected-file-card-icon {
  width: 38px;
  height: 38px;
  color: var(--cyan-dark);
}

.selected-file-card-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.selected-file-card div {
  display: grid;
  gap: 4px;
}

.selected-file-card .panel-label,
.selected-file-card strong,
.selected-file-card span,
.selected-file-card small {
  margin: 0;
}

.selected-file-card strong {
  overflow-wrap: anywhere;
}

.selected-file-card span,
.selected-file-card small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.field-help {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.consent-check input {
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  padding: 0;
  accent-color: var(--cyan-dark);
}

.consent-check input[aria-invalid="true"] {
  outline: 3px solid rgba(255, 100, 34, 0.24);
  outline-offset: 2px;
}

textarea[aria-invalid="true"] {
  border-color: var(--orange);
  outline: 3px solid rgba(255, 100, 34, 0.2);
}

.field-step {
  display: inline-grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 50%;
  background: var(--cyan);
  color: #ffffff;
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
}

.form-actions {
  margin-top: 4px;
}

.form-actions .button {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  font-size: 14px;
}

.form-note {
  min-height: 20px;
  margin: 0;
}

.request-output {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.request-output[hidden] {
  display: none;
}

.request-output textarea {
  min-height: 148px;
  background: #ffffff;
  font-family:
    "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 13px;
  line-height: 1.45;
}

.request-output small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.steps,
.examples,
.materials,
.pickup,
.faq,
.site-footer {
  padding: clamp(42px, 7vw, 84px) clamp(18px, 5vw, 70px);
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.steps article {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 8px 16px;
  align-items: start;
  padding-right: clamp(16px, 3vw, 42px);
}

.steps article::after {
  content: "";
  position: absolute;
  top: 21px;
  right: clamp(14px, 2.3vw, 32px);
  width: clamp(40px, 6vw, 74px);
  border-top: 2px dashed rgba(18, 169, 232, 0.5);
}

.steps article:last-child::after {
  display: none;
}

.steps strong {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--cyan);
  color: #ffffff;
  border-radius: 50%;
  font-weight: 950;
  box-shadow: 0 0 0 8px rgba(18, 169, 232, 0.12);
}

.steps h2,
.steps p {
  margin: 0;
}

.steps h2 {
  font-size: 22px;
  line-height: 1.1;
  color: var(--ink);
}

.steps p {
  grid-column: 2;
  color: var(--muted);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-heading h2,
.materials h2,
.pickup h2,
.faq h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.98;
  letter-spacing: 0;
}

.section-heading p,
.materials p,
.pickup p {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.example-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.example-grid article {
  min-height: 220px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.example-grid article:nth-child(2n) {
  background: var(--soft);
}

.example-grid h3 {
  margin: 24px 0 8px;
  font-size: 24px;
  line-height: 1.05;
}

.example-grid p {
  margin: 0;
  color: var(--muted);
}

.line-icon {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 46px;
  border: 3px solid var(--cyan);
  border-radius: var(--radius);
}

.part-icon::after,
.cube-icon::after,
.gift-icon::after,
.stack-icon::after {
  content: "";
  position: absolute;
  background: var(--orange);
}

.part-icon::after {
  width: 28px;
  height: 10px;
  left: 9px;
  top: 15px;
  border-radius: 999px;
}

.cube-icon {
  transform: rotate(45deg);
}

.gift-icon::after {
  width: 3px;
  height: 40px;
  left: 19px;
  top: 1px;
}

.stack-icon::after {
  width: 32px;
  height: 4px;
  left: 4px;
  top: 11px;
  box-shadow: 0 10px 0 var(--orange), 0 20px 0 var(--orange);
}

.materials {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.72fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(18, 169, 232, 0.08), rgba(255, 100, 34, 0.1)),
    var(--soft);
}

.materials p {
  margin-top: 16px;
}

.swatch-panel {
  display: grid;
  gap: 10px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.swatch-panel span {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  color: var(--ink);
  font-weight: 850;
}

.swatch-panel span::before {
  content: "";
  width: 30px;
  height: 30px;
  border: 2px solid rgba(17, 24, 39, 0.12);
  border-radius: 50%;
  background: var(--swatch);
}

.pickup {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pickup p {
  margin-top: 12px;
}

.faq {
  display: grid;
  grid-template-columns: minmax(190px, 0.32fr) 1fr;
  gap: clamp(24px, 4vw, 56px);
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-size: 20px;
  font-weight: 850;
}

.faq p {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #0f141c;
  color: #ffffff;
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-actions a {
  color: #ffffff;
  font-weight: 800;
  text-decoration-color: rgba(255, 255, 255, 0.35);
}

.page-main {
  min-height: 68vh;
}

.page-hero {
  padding: clamp(52px, 8vw, 104px) clamp(18px, 5vw, 70px) clamp(34px, 5vw, 62px);
  background:
    linear-gradient(110deg, rgba(18, 169, 232, 0.12), rgba(255, 100, 34, 0.08) 52%, rgba(163, 230, 53, 0.12)),
    #ffffff;
}

.page-hero h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.94;
  letter-spacing: 0;
}

.page-hero p:not(.panel-label) {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.content-block {
  max-width: 980px;
  padding: clamp(34px, 6vw, 76px) clamp(18px, 5vw, 70px);
}

.content-block h2 {
  margin: 34px 0 8px;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1;
  letter-spacing: 0;
}

.content-block h2:first-child {
  margin-top: 0;
}

.content-block p,
.content-block li {
  color: var(--muted);
  font-size: 18px;
}

.content-block p {
  margin: 0;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 6px;
}

.price-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.price-grid h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.08;
}

.price-grid strong {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--cyan-dark);
  font-size: 24px;
}

.check-list {
  display: grid;
  gap: 10px;
  padding-left: 20px;
}

.business-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.52fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(52px, 8vw, 104px) clamp(18px, 5vw, 70px) clamp(42px, 6vw, 76px);
  background:
    linear-gradient(120deg, rgba(18, 169, 232, 0.12), rgba(255, 100, 34, 0.08) 54%, rgba(163, 230, 53, 0.12)),
    #ffffff;
}

.business-hero h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(46px, 7vw, 86px);
  line-height: 0.94;
  letter-spacing: 0;
}

.business-hero p:not(.panel-label) {
  max-width: 780px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.business-proof {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(18, 169, 232, 0.28);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.business-proof strong {
  font-size: 28px;
  line-height: 1;
}

.business-proof span {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  color: var(--muted);
  font-weight: 750;
}

.business-proof span::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 5px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.44), transparent 48%),
    var(--cyan);
  box-shadow:
    8px 5px 0 -3px var(--orange),
    4px 10px 0 -4px var(--lime);
}

.business-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 34px;
}

.business-service-grid article {
  min-height: 230px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.business-service-grid article:nth-child(2n) {
  background: var(--soft);
}

.business-service-grid h3 {
  margin: 22px 0 8px;
  font-size: 26px;
  line-height: 1.05;
}

.business-service-grid p {
  margin: 0;
}

.business-request-menu {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(320px, 1fr);
  gap: clamp(18px, 4vw, 34px);
  align-items: start;
  margin: 0 0 34px;
  padding: clamp(22px, 4vw, 34px);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(18, 169, 232, 0.09), rgba(255, 100, 34, 0.08)),
    #ffffff;
  border: 1px solid var(--line);
}

.business-request-menu h2,
.business-request-menu p {
  margin: 0;
}

.business-request-menu p {
  margin-top: 10px;
  color: var(--muted);
}

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

.business-request-card {
  display: grid;
  gap: 8px;
  min-height: 126px;
  padding: 16px;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid rgba(18, 169, 232, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 28px rgba(18, 20, 26, 0.07);
}

.business-request-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 100, 34, 0.44);
}

.business-request-card strong {
  font-size: 18px;
  line-height: 1.08;
}

.business-request-card span {
  color: var(--muted);
  font-size: 15px;
}

.examples-page {
  max-width: 1180px;
}

.examples-idea-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.examples-idea-grid article {
  min-height: 250px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.examples-idea-grid article:nth-child(3n + 2) {
  background: var(--soft);
}

.examples-idea-grid article:nth-child(3n) {
  background:
    linear-gradient(135deg, rgba(18, 169, 232, 0.08), rgba(163, 230, 53, 0.08)),
    #ffffff;
}

.examples-idea-grid h2 {
  margin: 22px 0 8px;
  font-size: 25px;
  line-height: 1.05;
}

.examples-idea-grid p {
  margin: 0;
}

.example-note {
  margin-bottom: 18px;
  padding: clamp(20px, 4vw, 30px);
  border: 1px solid rgba(255, 100, 34, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 100, 34, 0.1), rgba(18, 169, 232, 0.06)),
    #ffffff;
}

.example-note h2,
.example-note p {
  margin: 0;
}

.example-note p {
  max-width: 760px;
  margin-top: 10px;
}

.examples-checklist {
  margin-bottom: 0;
}

.business-process {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(18, 169, 232, 0.07), rgba(255, 100, 34, 0.07)),
    #ffffff;
}

.business-process h2 {
  margin-top: 0;
}

.business-process ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

.company-request-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding: clamp(22px, 4vw, 34px);
  border-radius: var(--radius);
  background: var(--ink);
  color: #ffffff;
}

.company-request-strip h2,
.company-request-strip p {
  margin: 0;
}

.company-request-strip p {
  max-width: 640px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.74);
}

.business-example-link {
  margin: 16px 0 0;
  color: var(--muted);
}

.business-example-link a {
  color: var(--ink);
  font-weight: 900;
}

.faq-page {
  display: grid;
  gap: 16px;
}

.faq-page h2 {
  margin-bottom: 4px;
}

.faq-page details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: #ffffff;
}

.faq-page details[open] {
  border-color: rgba(18, 169, 232, 0.36);
  box-shadow: 0 12px 30px rgba(18, 20, 26, 0.08);
}

.faq-page summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.16;
}

.faq-page p {
  margin-top: 10px;
}

.faq-page .button {
  width: fit-content;
  margin-top: 8px;
}

@media (max-width: 980px) {
  .hero,
  .materials,
  .business-hero,
  .business-request-menu,
  .faq {
    grid-template-columns: 1fr;
  }

  .hero {
    grid-template-areas:
      "copy"
      "request"
      "media";
    min-height: auto;
  }

  .request-panel {
    width: 100%;
    max-width: 680px;
  }

  .request-panel-header {
    grid-template-columns: 1fr;
  }

  .hero-media {
    max-width: 620px;
  }

  .steps,
  .example-grid,
  .examples-idea-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps article::after {
    display: none;
  }

  .section-heading,
  .pickup,
  .company-request-strip,
  .site-footer {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    min-width: 0;
  }

  .nav {
    width: 100%;
    min-width: 0;
    flex-wrap: wrap;
    gap: 8px 12px;
    overflow-x: visible;
    padding-bottom: 0;
    font-size: 12px;
  }

  .hero {
    padding-top: 30px;
  }

  .estimator-grid,
  .estimate-output {
    grid-template-columns: 1fr;
  }

  .estimate-output strong {
    grid-row: auto;
  }

  .page-main,
  .page-hero,
  .content-block {
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .page-hero h1,
  .page-hero p:not(.panel-label),
  .page-hero .hero-actions {
    max-width: min(340px, calc(100vw - 36px));
  }

  .page-hero h1 {
    overflow-wrap: anywhere;
  }

  .business-hero {
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .business-hero h1,
  .business-hero p:not(.panel-label),
  .business-hero .hero-actions,
  .business-proof {
    max-width: min(342px, calc(100vw - 48px));
  }

  .business-proof span {
    overflow-wrap: anywhere;
  }

  .content-block h2,
  .business-request-menu h2 {
    max-width: min(342px, calc(100vw - 48px));
    overflow-wrap: break-word;
  }

  .content-block p,
  .content-block li {
    max-width: min(342px, calc(100vw - 48px));
    overflow-wrap: break-word;
  }

  .examples-page {
    width: 100%;
    max-width: min(390px, 100vw);
  }

  .hero h1 {
    font-size: clamp(46px, 16vw, 68px);
  }

  .form-grid,
  .steps,
  .example-grid,
  .examples-idea-grid,
  .business-service-grid,
  .business-request-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column;
  }

  .form-actions .button,
  .hero-actions .button {
    width: 100%;
  }

  .steps article {
    padding-right: 0;
  }

  .steps p {
    grid-column: 1 / -1;
    padding-left: 58px;
  }
}

@media (max-width: 460px) {
  .quick-requests {
    grid-template-columns: 1fr;
  }
}

/* Lean modern launch surface */
.site-header {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 22px 0;
  border-bottom: 1px solid #e8ebef;
  background: #ffffff;
}

.brand {
  gap: 10px;
  font-size: 15px;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  background: var(--ink);
  color: #ffffff;
  font-size: 12px;
}

.nav {
  gap: 20px;
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
}

.hero {
  width: min(1240px, calc(100% - 48px));
  min-height: 0;
  margin: 0 auto;
  padding: clamp(56px, 9vw, 132px) 0 76px;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}

.hero-copy {
  padding-top: 12px;
}

.hero h1 {
  max-width: 620px;
  font-size: clamp(52px, 7vw, 104px);
  line-height: 0.91;
  letter-spacing: -0.075em;
}

.hero h1 span {
  color: var(--cyan-dark);
}

.hero-lede {
  max-width: 510px;
  margin-top: 26px;
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions {
  margin-top: 30px;
}

.button {
  min-height: 50px;
  border-radius: 7px;
  padding: 0 19px;
  font-size: 14px;
  box-shadow: none;
}

.button-primary {
  background: var(--cyan);
  color: #06151d;
}

.button-primary:hover {
  background: #0c95cf;
  transform: translateY(-1px);
}

.quick-requests,
.service-cues,
.request-signal {
  display: none;
}

.request-panel {
  max-width: 530px;
  padding: 28px;
  border: 1px solid #e1e6eb;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 20px 55px rgba(13, 25, 36, 0.08);
}

.request-panel-header {
  display: block;
}

.request-panel h2 {
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.panel-label {
  color: var(--cyan-dark);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.quick-estimator {
  padding: 0 0 18px;
  border: 0;
  border-bottom: 1px solid #e8ebef;
  border-radius: 0;
  background: transparent;
}

.quick-estimator h3 {
  font-size: 18px;
  letter-spacing: -0.03em;
}

.file-drop {
  min-height: 152px;
  border: 1px dashed #9eabb7;
  border-radius: 8px;
  background: #f7fafc;
}

.file-drop:hover,
.file-drop:focus-within {
  border-color: var(--cyan-dark);
  background: #f1faff;
}

.estimate-output {
  margin-top: 6px;
  border-radius: 8px;
  background: var(--ink);
}

.selected-file-card {
  border-color: #dce5ec;
  border-radius: 8px;
  background: #f7fafc;
}

.form-grid {
  gap: 16px;
}

.field-shell {
  gap: 7px;
}

.field-step {
  display: none;
}

input,
select,
textarea {
  border-color: #cfd8e1;
  border-radius: 7px;
  padding: 12px 13px;
}

.steps {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 44px 0 72px;
  border-top: 1px solid #e8ebef;
}

.steps article {
  padding: 0 28px 0 0;
}

@media (max-width: 720px) {
  .site-header,
  .hero,
  .steps {
    width: min(100% - 32px, 1240px);
  }

  .site-header {
    padding: 16px 0;
  }

  .hero {
    padding: 46px 0 48px;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 76px);
  }

  .request-panel {
    padding: 22px;
  }
}
