:root {
  --bg: #070608;
  --bg-soft: #100b14;
  --panel: rgba(17, 14, 23, 0.78);
  --panel-strong: rgba(24, 19, 32, 0.92);
  --ink: #f8f6fb;
  --muted: #b9b1c5;
  --line: rgba(255, 255, 255, 0.13);
  --hot: #ff347d;
  --coral: #ff845f;
  --cyan: #21d4f6;
  --blue: #246bff;
  --gold: #ffd166;
  --green: #82f28f;
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(115deg, rgba(255, 52, 125, 0.13), transparent 30%),
    linear-gradient(245deg, rgba(33, 212, 246, 0.16), transparent 34%),
    linear-gradient(0deg, rgba(255, 209, 102, 0.06), transparent 52%),
    var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

button,
.button {
  appearance: none;
  -webkit-appearance: none;
}

img {
  max-width: 100%;
  display: block;
}

[hidden] {
  display: none !important;
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  display: grid;
  width: min(1180px, calc(100% - 32px));
  min-height: 66px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(6, 5, 8, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
}

.brand,
.nav,
.hero-actions,
.hero-points,
.filter-bar,
.button,
.selected-piece {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: 0;
  font-weight: 900;
}

.brand img {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 0 30px rgba(255, 52, 125, 0.32);
}

.brand span {
  white-space: nowrap;
}

.nav {
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.nav a,
.header-cta {
  min-height: 38px;
  padding: 10px 14px;
  border-radius: 7px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav a:hover,
.header-cta:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.header-cta {
  justify-self: end;
  border: 1px solid rgba(255, 52, 125, 0.42);
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: 88svh;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 136px 0 94px;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 38px;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 52, 125, 0.44), rgba(33, 212, 246, 0.42), transparent);
}

.hero-logo {
  position: absolute;
  right: -18px;
  top: 50%;
  z-index: -1;
  width: min(580px, 48%);
  border-radius: 8px;
  opacity: 0.78;
  filter: drop-shadow(0 0 34px rgba(255, 52, 125, 0.34)) drop-shadow(0 0 56px rgba(33, 212, 246, 0.18));
  transform: translateY(-46%) rotate(-2deg);
  animation: logoFloat 7s ease-in-out infinite alternate;
}

.hero-content {
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  max-width: 9ch;
  font-size: 5.8rem;
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  max-width: 12ch;
  font-size: 3.7rem;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: #efeaf6;
  font-size: 1.28rem;
  line-height: 1.56;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 50px;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 900;
  background: rgba(255, 255, 255, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button:hover {
  border-color: rgba(255, 255, 255, 0.32);
  transform: translateY(-2px);
}

.button.primary {
  border: 0;
  background: linear-gradient(135deg, var(--hot), var(--coral) 46%, var(--cyan));
  color: #080509;
  box-shadow: 0 22px 60px rgba(255, 52, 125, 0.24);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
}

.button.compact {
  width: 100%;
  min-height: 44px;
  margin-top: 18px;
  font-size: 0.93rem;
}

.hero-points {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.hero-points span,
.tag,
.selected-piece {
  min-height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
}

.hero-points span {
  padding: 8px 11px;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1180px, calc(100% - 32px));
  margin: -54px auto 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.proof-item {
  min-height: 154px;
  padding: 26px;
  background:
    linear-gradient(145deg, rgba(255, 52, 125, 0.12), transparent 42%),
    rgba(15, 11, 20, 0.86);
  backdrop-filter: blur(18px);
}

.proof-item strong {
  display: block;
  color: var(--cyan);
  font-size: 1.45rem;
}

.proof-item span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.section {
  padding: 112px 0 0;
}

#creazioni,
#processo,
#ordine,
#stl,
#faq {
  scroll-margin-top: 112px;
}

.section-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.32fr) minmax(0, 0.72fr) minmax(220px, 0.42fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 34px;
}

.section-heading p:last-child,
.compact-heading p:last-child,
.order-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.filter-bar {
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.filter-button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-weight: 900;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.filter-button:hover,
.filter-button.is-active {
  background: rgba(255, 52, 125, 0.18);
  color: var(--ink);
  transform: translateY(-1px);
}

.creation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.creation-card {
  position: relative;
  display: grid;
  min-height: 540px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 66px rgba(0, 0, 0, 0.26);
  overflow: hidden;
  backdrop-filter: blur(18px);
  transition: opacity 220ms ease, transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.creation-card:hover {
  border-color: rgba(33, 212, 246, 0.42);
  background: var(--panel-strong);
  transform: translateY(-5px);
}

.creation-card.is-hidden {
  display: none;
}

.creation-visual {
  position: relative;
  min-height: 260px;
  isolation: isolate;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), transparent 35%),
    #0d0a12;
  overflow: hidden;
}

.creation-visual::before {
  position: absolute;
  inset: 18px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  content: "";
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 14px),
    linear-gradient(135deg, rgba(33, 212, 246, 0.08), rgba(255, 52, 125, 0.08));
  opacity: 0.45;
}

.turntable,
.statue-body,
.statue-head,
.paint-stroke {
  position: absolute;
  left: 50%;
  display: block;
  transform: translateX(-50%);
}

.turntable {
  bottom: 36px;
  width: 62%;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(255, 52, 125, 0.2), rgba(33, 212, 246, 0.22), rgba(255, 209, 102, 0.16));
  box-shadow: 0 0 38px rgba(33, 212, 246, 0.18);
}

.statue-body {
  bottom: 52px;
  width: 118px;
  height: 132px;
  border-radius: 42px 42px 18px 18px;
  background: linear-gradient(145deg, var(--hot), var(--coral) 42%, var(--cyan));
  box-shadow: inset -18px -18px 34px rgba(0, 0, 0, 0.32), 0 22px 48px rgba(0, 0, 0, 0.34);
  animation: statueFloat 4.5s ease-in-out infinite alternate;
}

.statue-head {
  bottom: 170px;
  width: 76px;
  height: 76px;
  border-radius: 50% 50% 42% 42%;
  background: linear-gradient(145deg, #fff1b4, var(--hot) 48%, var(--blue));
  box-shadow: inset -14px -12px 22px rgba(0, 0, 0, 0.26), 0 16px 38px rgba(255, 52, 125, 0.26);
  animation: statueFloat 4.5s ease-in-out infinite alternate;
}

.paint-stroke {
  bottom: 82px;
  width: 190px;
  height: 24px;
  border-radius: 8px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--hot), transparent);
  opacity: 0.86;
  transform: translateX(-50%) rotate(-12deg);
  animation: paintSweep 4.8s ease-in-out infinite alternate;
}

.visual-night .statue-body,
.visual-night .statue-head {
  background: linear-gradient(145deg, #171621, #3447ff 52%, #21d4f6);
}

.visual-symbiote .statue-body,
.visual-symbiote .statue-head {
  background: linear-gradient(145deg, #f8f6fb, #22202c 34%, #ff347d);
}

.visual-mecha .statue-body,
.visual-mecha .statue-head {
  background: linear-gradient(145deg, #e2e7ef, #607083 40%, #ff845f);
}

.visual-arcane .statue-body,
.visual-arcane .statue-head {
  background: linear-gradient(145deg, #82f28f, #8d5dff 44%, #21d4f6);
}

.visual-hero .statue-body,
.visual-hero .statue-head {
  background: linear-gradient(145deg, #ffd166, #ff347d 46%, #246bff);
}

.card-copy {
  display: grid;
  align-content: start;
  padding: 22px;
}

.tag {
  display: inline-grid;
  width: max-content;
  place-items: center;
  padding: 0 10px;
  color: var(--gold);
}

.card-copy h3 {
  margin-top: 18px;
}

.card-copy p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.54;
}

.card-copy dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 18px 0 0;
}

.card-copy dl div {
  min-height: 56px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.card-copy dt {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
}

.card-copy dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
}

.two-column,
.order-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.compact-heading {
  display: block;
  position: sticky;
  top: 112px;
  margin-bottom: 0;
}

.compact-heading h2,
.order-copy h2 {
  margin-bottom: 22px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.step,
.order-form,
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 16px 56px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.step {
  min-height: 232px;
  padding: 24px;
}

.step span {
  display: inline-grid;
  width: 46px;
  height: 36px;
  place-items: center;
  margin-bottom: 40px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: var(--cyan);
  font-weight: 900;
}

.step p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.56;
}

.order-section {
  padding-bottom: 18px;
}

.order-copy {
  position: sticky;
  top: 112px;
}

.selected-piece {
  width: max-content;
  max-width: 100%;
  gap: 8px;
  margin-top: 24px;
  padding: 8px 12px;
  color: var(--cyan);
}

.order-form {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.request-mode {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.mode-button {
  appearance: none;
  -webkit-appearance: none;
  display: grid;
  width: 100%;
  min-height: 44px;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 7px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 900;
  text-align: center;
  cursor: pointer;
  margin: 0;
  padding: 0 12px;
  user-select: none;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.mode-button.is-active,
.mode-button:hover {
  border-color: rgba(255, 52, 125, 0.34);
  background: rgba(255, 52, 125, 0.16);
  color: var(--ink);
}

.mode-button:focus-visible {
  box-shadow: 0 0 0 4px rgba(33, 212, 246, 0.14);
}

.catalog-fields,
.stl-fields {
  display: grid;
  gap: 12px;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.form-hint a {
  color: var(--cyan);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 0 13px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--ink);
  outline: none;
}

select option {
  color: #100b14;
}

textarea {
  min-height: 120px;
  padding-top: 13px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(33, 212, 246, 0.72);
  box-shadow: 0 0 0 4px rgba(33, 212, 246, 0.12);
}

.submit-button {
  width: 100%;
}

.mail-action {
  width: 100%;
}

.mail-action[hidden] {
  display: none;
}

.order-output {
  display: none;
  min-height: 76px;
  padding: 14px;
  border: 1px solid rgba(130, 242, 143, 0.34);
  border-radius: 8px;
  background: rgba(130, 242, 143, 0.08);
  color: #dfffe4;
  line-height: 1.48;
  white-space: pre-wrap;
}

.order-output.is-visible {
  display: block;
}

.order-output.is-error {
  border-color: rgba(255, 132, 95, 0.52);
  background: rgba(255, 132, 95, 0.1);
  color: #ffe3d8;
}

.order-output.is-success {
  border-color: rgba(130, 242, 143, 0.38);
  background: rgba(130, 242, 143, 0.08);
  color: #dfffe4;
}

.guide-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(33, 212, 246, 0.14), transparent 36%),
    linear-gradient(315deg, rgba(255, 52, 125, 0.14), transparent 40%),
    rgba(16, 12, 22, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.guide-panel h2 {
  max-width: 10ch;
}

.guide-panel p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.62;
}

.faq {
  padding-bottom: 74px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

details {
  padding: 20px;
}

summary {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 900;
  cursor: pointer;
}

details p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(420px, 1.15fr);
  gap: 28px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 52, 125, 0.13), transparent 36%),
    linear-gradient(315deg, rgba(33, 212, 246, 0.12), transparent 42%),
    rgba(14, 11, 20, 0.86);
  color: var(--muted);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-brand img {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 0 28px rgba(255, 52, 125, 0.24);
}

.footer-brand span {
  display: block;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 900;
}

.footer-brand p,
.footer-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.footer-brand p {
  max-width: 320px;
  margin-top: 8px;
}

.footer-links {
  display: grid;
  grid-template-columns: 0.8fr 0.9fr 1.25fr;
  gap: 24px;
}

.footer-links section {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-links h2 {
  max-width: none;
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-links a {
  width: max-content;
  max-width: 100%;
  color: #efeaf6;
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.34);
  text-underline-offset: 4px;
  transition: color 180ms ease, text-decoration-color 180ms ease, transform 180ms ease;
}

.footer-links a:hover {
  color: var(--cyan);
  text-decoration-color: rgba(33, 212, 246, 0.85);
  transform: translateX(2px);
}

.footer-note {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 680ms ease, transform 680ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header[data-reveal] {
  transform: translateX(-50%) translateY(18px);
}

.site-header[data-reveal].is-visible {
  transform: translateX(-50%) translateY(0);
}

@keyframes logoFloat {
  to {
    transform: translateY(-49%) rotate(1deg) scale(1.02);
  }
}

@keyframes statueFloat {
  to {
    transform: translateX(-50%) translateY(-10px);
  }
}

@keyframes paintSweep {
  to {
    opacity: 0.56;
    transform: translateX(-50%) translateY(-12px) rotate(10deg);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 84svh;
    padding-top: 122px;
  }

  .hero-logo {
    right: -90px;
    width: 560px;
    max-width: none;
    opacity: 0.48;
  }

  h1 {
    font-size: 4.4rem;
  }

  h2 {
    font-size: 3rem;
  }

  .proof-band,
  .creation-grid,
  .section-heading,
  .two-column,
  .order-layout,
  .guide-panel,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .compact-heading,
  .order-copy {
    position: static;
  }

  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 58px;
    padding: 8px;
  }

  .brand span {
    display: none;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .header-cta {
    min-height: 36px;
    padding-inline: 12px;
  }

  .hero,
  .proof-band,
  .section-inner,
  .site-footer {
    width: min(100% - 20px, 1180px);
  }

  .hero {
    min-height: auto;
    padding: 112px 0 82px;
  }

  .hero-logo {
    right: -140px;
    top: 138px;
    width: 420px;
    opacity: 0.34;
  }

  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.3rem;
  }

  .hero-copy {
    font-size: 1.05rem;
  }

  .hero-actions .button,
  .request-mode,
  .form-row {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .proof-band {
    margin-top: -38px;
  }

  .proof-item,
  .card-copy,
  .step,
  .order-form,
  details {
    padding: 20px;
  }

  .section {
    padding-top: 82px;
  }

  .creation-card {
    min-height: auto;
  }

  .creation-visual {
    min-height: 230px;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
