:root {
  --bg: #101317;
  --bg-soft: #171b20;
  --panel: #1d2228;
  --panel-2: #232930;
  --paper: #f4f1eb;
  --paper-2: #ebe6dc;
  --ink: #15191e;
  --muted: #626970;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(16, 19, 23, 0.13);
  --white: #fff;
  --orange: #ff6b2c;
  --orange-dark: #dc4f16;
  --orange-soft: #ffb18d;
  --green: #8bd49c;
  --font: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Manrope", var(--font);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  --radius: 22px;
  --wrap: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 400 16px/1.65 var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 1.1;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.1rem, 4vw, 4rem);
  letter-spacing: -0.055em;
}

h3 {
  letter-spacing: -0.025em;
}

.wrap {
  width: min(calc(100% - 40px), var(--wrap));
  margin-inline: auto;
}

.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;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 20000;
  padding: 10px 14px;
  color: #fff;
  background: var(--orange);
  border-radius: 7px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  color: #fff;
  background: rgba(16, 19, 23, 0.91);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 78px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: inherit;
  text-decoration: none;
}

.brand > span:last-child {
  display: grid;
}

.brand strong {
  font: 800 17px/1 var(--display);
  letter-spacing: 0.04em;
}

.brand small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  grid-template: repeat(2, 1fr) / repeat(2, 1fr);
  gap: 3px;
  padding: 4px;
  background: rgba(255, 107, 44, 0.1);
  border: 1px solid rgba(255, 107, 44, 0.4);
  border-radius: 9px;
  transform: rotate(45deg);
}

.brand-mark i {
  display: block;
  background: var(--orange);
  border-radius: 2px;
}

.brand-mark i:first-child {
  grid-row: 1;
  grid-column: 1;
}

.brand-mark i:nth-child(2) {
  grid-row: 1;
  grid-column: 2;
  opacity: 0.72;
}

.brand-mark i:nth-child(3) {
  grid-row: 2;
  grid-column: 1 / 3;
  opacity: 0.44;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-left: auto;
}

.main-nav a {
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 14px 21px;
  color: #fff;
  background: var(--orange);
  border: 0;
  border-radius: 10px;
  box-shadow: 0 12px 35px rgba(255, 107, 44, 0.23);
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible {
  color: #fff;
  background: var(--orange-dark);
  box-shadow: 0 15px 40px rgba(255, 107, 44, 0.32);
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding: 10px 15px;
  font-size: 13px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.menu-toggle span {
  width: 19px;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: #fff;
  background: var(--bg);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  background: url("/assets/img/hero-3d-tisk.jpg") center/cover no-repeat;
  transform: scale(1.015);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(11, 14, 17, 0.98) 0%, rgba(11, 14, 17, 0.91) 34%, rgba(11, 14, 17, 0.45) 62%, rgba(11, 14, 17, 0.18) 100%),
    linear-gradient(0deg, rgba(11, 14, 17, 0.8) 0%, transparent 38%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 760px;
  align-items: center;
  grid-template-columns: minmax(0, 1.15fr) minmax(310px, 0.62fr);
  gap: 70px;
  padding-block: 90px;
}

.hero-copy {
  max-width: 730px;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 19px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--orange-soft);
}

.eyebrow span {
  width: 25px;
  height: 2px;
  background: var(--orange);
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 26px;
  font-size: clamp(3.4rem, 6.4vw, 6.4rem);
  letter-spacing: -0.073em;
}

.hero h1 em {
  color: var(--orange);
  font-style: normal;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
}

.hero-lead strong {
  color: #fff;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.text-link {
  position: relative;
  color: inherit;
  font-weight: 700;
  text-decoration: none;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform-origin: right;
  transition: transform 0.2s ease;
}

.text-link:hover::after {
  transform: scaleX(0.45);
}

.text-link.strong {
  color: var(--orange-dark);
  font-weight: 800;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 22px;
  padding: 0;
  margin: 35px 0 0;
  list-style: none;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  font-weight: 700;
}

.hero-trust span {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  color: var(--green);
  background: rgba(139, 212, 156, 0.1);
  border: 1px solid rgba(139, 212, 156, 0.35);
  border-radius: 50%;
  font-size: 11px;
}

.hero-status {
  align-self: end;
  padding: 25px;
  background: rgba(16, 19, 23, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 17px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(15px);
}

.status-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pulse {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(139, 212, 156, 0.13);
}

.file-formats {
  display: flex;
  gap: 8px;
  margin: 22px 0;
}

.file-formats span {
  flex: 1;
  padding: 9px 6px;
  color: var(--orange-soft);
  background: rgba(255, 107, 44, 0.09);
  border: 1px solid rgba(255, 107, 44, 0.24);
  border-radius: 7px;
  font: 800 12px/1 var(--display);
  text-align: center;
}

.status-flow {
  display: flex;
  align-items: center;
}

.status-flow div {
  display: grid;
  min-width: 73px;
  gap: 5px;
}

.status-flow b {
  color: var(--orange);
  font: 800 12px/1 var(--display);
}

.status-flow span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  line-height: 1.3;
}

.status-flow i {
  height: 1px;
  flex: 1;
  margin-inline: 7px;
  background: rgba(255, 255, 255, 0.18);
}

.hero-status p {
  padding-top: 18px;
  margin: 19px 0 0;
  color: rgba(255, 255, 255, 0.62);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
}

.hero-status p strong {
  color: #fff;
}

.signal-strip {
  color: #fff;
  background: var(--orange-dark);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.signal-grid > div {
  display: grid;
  gap: 4px;
  padding: 24px 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.signal-grid > div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.signal-grid strong {
  font-family: var(--display);
}

.signal-grid span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.section {
  padding-block: clamp(82px, 10vw, 140px);
}

.intro-section {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.93fr 1.07fr;
  gap: 100px;
}

.intro-grid h2 {
  margin-bottom: 0;
}

.intro-copy {
  padding-top: 31px;
}

.intro-copy p {
  color: var(--muted);
  font-size: 19px;
}

.intro-copy a {
  color: var(--orange-dark);
  font-weight: 700;
}

.process-section {
  color: #fff;
  background: var(--bg);
}

.section-heading {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  gap: 70px;
  margin-bottom: 60px;
}

.section-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 480px;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 17px;
}

.process-grid {
  display: grid;
  padding: 0;
  margin: 0;
  counter-reset: process;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.process-grid li {
  position: relative;
  min-height: 330px;
  padding: 27px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.process-grid li + li {
  border-left: 0;
}

.process-grid li:first-child {
  border-radius: 15px 0 0 15px;
}

.process-grid li:last-child {
  border-radius: 0 15px 15px 0;
}

.step-no {
  color: rgba(255, 255, 255, 0.28);
  font: 800 12px/1 var(--display);
}

.step-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  margin: 65px 0 26px;
  color: var(--orange);
  background: rgba(255, 107, 44, 0.08);
  border: 1px solid rgba(255, 107, 44, 0.24);
  border-radius: 12px;
  font: 800 23px/1 var(--display);
}

.process-grid h3 {
  margin-bottom: 11px;
  font-size: 20px;
}

.process-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
}

.examples-section {
  background: var(--paper);
}

.examples-section .section-heading > p,
.materials-section .section-heading > p {
  color: var(--muted);
}

.media-grid {
  display: grid;
  grid-template-columns: 1.14fr 0.86fr;
  gap: 20px;
}

.media-card {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  color: #fff;
  background: #20252a;
  border-radius: var(--radius);
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.media-card:hover img {
  transform: scale(1.025);
}

.media-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(8, 10, 12, 0.9), transparent 65%);
}

.media-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 33px;
}

.media-content span {
  color: var(--orange-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.media-content h3 {
  max-width: 600px;
  margin: 9px 0 7px;
  font-size: clamp(1.5rem, 2.4vw, 2.35rem);
}

.media-content p {
  max-width: 550px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.use-case-grid {
  display: grid;
  margin-top: 20px;
  grid-template-columns: repeat(4, 1fr);
}

.use-case-grid > div {
  padding: 31px 26px;
  background: var(--white);
  border: 1px solid var(--line-dark);
}

.use-case-grid > div + div {
  border-left: 0;
}

.use-case-grid > div:first-child {
  border-radius: 14px 0 0 14px;
}

.use-case-grid > div:last-child {
  border-radius: 0 14px 14px 0;
}

.use-case-grid b {
  color: var(--orange-dark);
  font: 800 11px/1 var(--display);
}

.use-case-grid h3 {
  margin: 25px 0 9px;
  font-size: 18px;
}

.use-case-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.materials-section {
  background: var(--paper-2);
}

.section-heading.compact {
  margin-bottom: 48px;
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.materials-grid article {
  min-height: 310px;
  padding: 28px 23px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(16, 19, 23, 0.09);
  border-radius: 14px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.materials-grid article:hover {
  border-color: rgba(255, 107, 44, 0.35);
  transform: translateY(-4px);
}

.material-code {
  display: inline-grid;
  min-width: 57px;
  height: 31px;
  place-items: center;
  color: var(--orange-dark);
  background: rgba(255, 107, 44, 0.1);
  border: 1px solid rgba(255, 107, 44, 0.24);
  border-radius: 6px;
  font: 800 12px/1 var(--display);
}

.materials-grid h3 {
  margin: 66px 0 12px;
  font-size: 19px;
}

.materials-grid p {
  color: var(--muted);
  font-size: 14px;
}

.materials-grid small {
  color: var(--orange-dark);
  font-weight: 800;
}

.pricing-section {
  color: #fff;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 107, 44, 0.12), transparent 28%),
    var(--bg-soft);
}

.pricing-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}

.pricing-copy > p {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
}

.check-list {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 29px 0 32px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.72);
}

.check-list span {
  color: var(--green);
}

.price-card {
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.price-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 27px;
  color: #fff;
  background: var(--orange-dark);
}

.price-card-head span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-card-head strong {
  font-size: 13px;
}

.price-card dl {
  margin: 0;
  padding: 14px 27px 0;
}

.price-card dl div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line-dark);
}

.price-card dt {
  color: var(--muted);
  font-size: 14px;
}

.price-card dd {
  margin: 0;
  color: var(--ink);
  font: 800 17px/1 var(--display);
  white-space: nowrap;
}

.price-card dd small {
  font-size: 11px;
}

.price-card > p {
  padding: 18px 27px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.price-note {
  padding: 18px 27px;
  color: #6e361d;
  background: #ffe2d4;
  border-top: 1px solid rgba(220, 79, 22, 0.18);
  font-size: 13px;
}

.prep-section {
  background: var(--paper);
}

.prep-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 110px;
}

.prep-list {
  border-top: 1px solid var(--line-dark);
}

.prep-list > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 25px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line-dark);
}

.prep-list b {
  font-family: var(--display);
}

.prep-list span {
  color: var(--muted);
}

.inquiry-section {
  position: relative;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 107, 44, 0.1), transparent 35%),
    #0f1216;
}

.inquiry-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(310px, 0.72fr) minmax(0, 1.28fr);
  gap: 90px;
}

.inquiry-copy {
  position: sticky;
  top: 120px;
}

.section-kicker.light {
  color: var(--orange-soft);
}

.inquiry-copy > p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 18px;
}

.not-order {
  display: flex;
  gap: 15px;
  padding: 20px;
  margin: 30px 0;
  background: rgba(255, 107, 44, 0.08);
  border: 1px solid rgba(255, 107, 44, 0.22);
  border-radius: 11px;
}

.not-order > span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  color: var(--orange-soft);
  border: 1px solid rgba(255, 107, 44, 0.42);
  border-radius: 50%;
  font: 800 14px/1 var(--display);
}

.not-order p {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.mini-flow {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 0 0 34px;
  list-style: none;
}

.mini-flow li {
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.mini-flow span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: var(--orange-soft);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  font: 800 11px/1 var(--display);
}

.direct-contact {
  display: grid;
  gap: 10px;
}

.direct-contact a {
  display: grid;
  padding: 13px 0;
  color: inherit;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.direct-contact small {
  color: rgba(255, 255, 255, 0.42);
}

.direct-contact strong {
  margin-top: 3px;
}

.inquiry-form {
  padding: clamp(25px, 4vw, 45px);
  color: var(--ink);
  background: var(--paper);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.form-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.form-title > div {
  display: flex;
  align-items: center;
  gap: 11px;
}

.form-title span {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  color: #fff;
  background: var(--orange-dark);
  border-radius: 7px;
  font: 800 11px/1 var(--display);
}

.form-title h3 {
  margin: 0;
  font-size: 18px;
}

.form-title small {
  color: var(--muted);
  font-size: 11px;
}

.file-title {
  padding-top: 25px;
  margin-top: 28px;
  border-top: 1px solid var(--line-dark);
}

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

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

.form-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.inquiry-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  color: #41474e;
  font-size: 12px;
  font-weight: 700;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cfd1d1;
  border-radius: 8px;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.inquiry-form textarea {
  min-height: 124px;
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 44, 0.13);
}

.inquiry-form input[aria-invalid="true"],
.inquiry-form select[aria-invalid="true"],
.inquiry-form textarea[aria-invalid="true"] {
  border-color: #c73535;
}

.file-drop {
  min-height: 210px;
  place-items: center;
  padding: 27px;
  background: #fff;
  border: 1px dashed #aeb2b5;
  border-radius: 11px;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.file-drop:hover,
.file-drop.is-dragover {
  background: #fff8f4;
  border-color: var(--orange);
}

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

.upload-symbol {
  display: grid;
  width: 47px;
  height: 47px;
  place-items: center;
  color: var(--orange-dark);
  background: rgba(255, 107, 44, 0.09);
  border: 1px solid rgba(255, 107, 44, 0.22);
  border-radius: 11px;
  font: 800 24px/1 var(--display);
}

.file-drop strong {
  margin-top: 4px;
  color: var(--ink);
  font-size: 15px;
}

.file-drop small,
.file-drop output {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.file-drop output {
  max-width: 100%;
  padding: 7px 10px;
  overflow: hidden;
  color: #2f653b;
  background: rgba(139, 212, 156, 0.14);
  border-radius: 6px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.captcha-row {
  max-width: 280px;
}

.consent {
  display: flex !important;
  align-items: flex-start;
  grid-template-columns: 20px 1fr;
  gap: 11px !important;
  font-size: 12px !important;
  font-weight: 500 !important;
}

.consent input {
  width: 18px;
  min-height: 18px;
  flex: 0 0 18px;
  padding: 0;
  margin-top: 2px;
  accent-color: var(--orange-dark);
}

.consent a {
  color: var(--orange-dark);
  font-weight: 700;
}

.submit-button {
  width: 100%;
  margin-top: 7px;
}

.submit-button[disabled] {
  cursor: wait;
  opacity: 0.65;
}

.form-footnote {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.form-message {
  padding: 14px 16px;
  margin: 15px 0;
  color: #285c34;
  background: #e4f5e8;
  border: 1px solid #a9d7b3;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
}

.form-message.is-error {
  color: #812b2b;
  background: #fde8e8;
  border-color: #efb0b0;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.faq-section {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.67fr 1.33fr;
  gap: 100px;
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-intro p {
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line-dark);
}

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

.faq-list summary {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  cursor: pointer;
  font: 700 18px/1.35 var(--display);
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  place-items: center;
  color: var(--orange-dark);
  background: rgba(255, 107, 44, 0.08);
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 750px;
  padding: 0 60px 25px 0;
  margin: 0;
  color: var(--muted);
}

.final-cta {
  padding-block: 65px;
  color: #fff;
  background: var(--orange-dark);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.final-cta span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.final-cta h2 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 3.7vw, 3.4rem);
}

.button-light {
  flex: 0 0 auto;
  color: var(--orange-dark);
  background: #fff;
  box-shadow: none;
}

.button-light:hover,
.button-light:focus-visible {
  color: var(--orange-dark);
  background: #fff2eb;
}

.site-footer {
  color: rgba(255, 255, 255, 0.65);
  background: #0b0d10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 60px;
  padding-block: 72px;
}

.footer-brand p {
  max-width: 360px;
  margin: 23px 0 0;
  font-size: 14px;
}

.footer-grid h2 {
  margin-bottom: 17px;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 9px;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--orange-soft);
}

.footer-grid p {
  font-size: 13px;
}

.footer-bottom {
  display: flex;
  min-height: 67px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 11px;
}

.mobile-cta {
  display: none;
}

@media (max-width: 1050px) {
  .main-nav {
    gap: 0;
  }

  .main-nav a {
    padding-inline: 8px;
    font-size: 13px;
  }

  .hero-grid {
    grid-template-columns: 1fr 310px;
    gap: 35px;
  }

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

  .signal-grid > div:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .signal-grid > div:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-right: 1px solid rgba(255, 255, 255, 0.18);
  }

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

  .process-grid li + li {
    border-left: 1px solid var(--line);
  }

  .process-grid li:nth-child(2n) {
    border-left: 0;
  }

  .process-grid li:first-child {
    border-radius: 15px 0 0 0;
  }

  .process-grid li:nth-child(2) {
    border-radius: 0 15px 0 0;
  }

  .process-grid li:nth-child(3) {
    border-radius: 0 0 0 15px;
  }

  .process-grid li:last-child {
    border-radius: 0 0 15px 0;
  }

  .materials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-grid,
  .inquiry-grid {
    gap: 55px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr repeat(3, 1fr);
    gap: 35px;
  }
}

@media (max-width: 840px) {
  .wrap {
    width: min(calc(100% - 28px), var(--wrap));
  }

  .header-inner {
    min-height: 68px;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: 68px;
    right: 0;
    left: 0;
    display: grid;
    padding: 18px 20px 26px;
    color: #fff;
    background: #101317;
    border-top: 1px solid var(--line);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.35);
    transform: translateY(-130%);
    transition: transform 0.25s ease;
    visibility: hidden;
  }

  .main-nav.is-open {
    transform: translateY(0);
    visibility: visible;
  }

  .main-nav a {
    padding: 13px 5px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }

  .header-cta {
    display: none;
  }

  .hero,
  .hero-grid {
    min-height: 780px;
  }

  .hero-grid {
    align-content: center;
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .hero-image {
    background-position: 66% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(11, 14, 17, 0.95), rgba(11, 14, 17, 0.65)),
      linear-gradient(0deg, rgba(11, 14, 17, 0.94) 0%, transparent 55%);
  }

  .hero-status {
    width: min(100%, 500px);
    align-self: auto;
  }

  .intro-grid,
  .section-heading,
  .pricing-grid,
  .prep-grid,
  .inquiry-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .intro-copy {
    padding-top: 0;
  }

  .section-heading {
    align-items: start;
    margin-bottom: 43px;
  }

  .media-grid {
    grid-template-columns: 1fr;
  }

  .media-card {
    min-height: 470px;
  }

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

  .use-case-grid > div + div {
    border-left: 1px solid var(--line-dark);
  }

  .use-case-grid > div:nth-child(2n) {
    border-left: 0;
  }

  .use-case-grid > div:first-child {
    border-radius: 14px 0 0 0;
  }

  .use-case-grid > div:nth-child(2) {
    border-radius: 0 14px 0 0;
  }

  .use-case-grid > div:nth-child(3) {
    border-radius: 0 0 0 14px;
  }

  .use-case-grid > div:last-child {
    border-radius: 0 0 14px 0;
  }

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

  .pricing-copy {
    max-width: 680px;
  }

  .inquiry-copy,
  .faq-intro {
    position: static;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 580px) {
  body {
    padding-bottom: 58px;
  }

  html {
    scroll-padding-top: 78px;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand small {
    font-size: 9px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero,
  .hero-grid {
    min-height: 820px;
  }

  .hero-grid {
    padding-block: 62px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.2rem);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .hero-actions .text-link {
    align-self: flex-start;
  }

  .hero-trust {
    display: grid;
  }

  .hero-status {
    padding: 19px;
  }

  .status-flow span {
    font-size: 9px;
  }

  .signal-grid {
    grid-template-columns: 1fr;
  }

  .signal-grid > div,
  .signal-grid > div:nth-child(3),
  .signal-grid > div:nth-child(4) {
    padding: 17px 20px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  }

  .section {
    padding-block: 78px;
  }

  h2 {
    font-size: 2.25rem;
  }

  .intro-copy p,
  .section-heading > p,
  .pricing-copy > p,
  .inquiry-copy > p {
    font-size: 16px;
  }

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

  .process-grid li,
  .process-grid li + li,
  .process-grid li:nth-child(2n) {
    min-height: 0;
    border: 1px solid var(--line);
    border-bottom: 0;
    border-radius: 0;
  }

  .process-grid li:first-child {
    border-radius: 14px 14px 0 0;
  }

  .process-grid li:last-child {
    border-bottom: 1px solid var(--line);
    border-radius: 0 0 14px 14px;
  }

  .step-icon {
    margin: 35px 0 22px;
  }

  .media-card {
    min-height: 440px;
  }

  .media-content {
    padding: 24px;
  }

  .use-case-grid,
  .materials-grid {
    grid-template-columns: 1fr;
  }

  .use-case-grid > div,
  .use-case-grid > div + div,
  .use-case-grid > div:nth-child(2n) {
    border: 1px solid var(--line-dark);
    border-bottom: 0;
    border-radius: 0;
  }

  .use-case-grid > div:first-child {
    border-radius: 12px 12px 0 0;
  }

  .use-case-grid > div:last-child {
    border-bottom: 1px solid var(--line-dark);
    border-radius: 0 0 12px 12px;
  }

  .materials-grid article {
    min-height: 260px;
  }

  .materials-grid h3 {
    margin-top: 43px;
  }

  .price-card-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .price-card dl div {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .prep-list > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .inquiry-form {
    padding: 22px 18px;
    border-radius: 12px;
  }

  .form-grid.two,
  .form-grid.three {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .file-drop {
    min-height: 205px;
    padding: 21px 12px;
  }

  .faq-list summary {
    min-height: 74px;
    font-size: 16px;
  }

  .faq-list details p {
    padding-right: 0;
  }

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 19px;
  }

  .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9000;
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    padding: 13px 20px;
    color: #fff;
    background: var(--orange-dark);
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.28);
    font-weight: 800;
    text-decoration: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
