:root {
  color-scheme: dark;
  --bg: #0b1120;
  --surface: rgba(20, 27, 42, 0.88);
  --surface-muted: rgba(26, 35, 52, 0.9);
  --surface-card: rgba(25, 33, 49, 0.78);
  --ink: #f3f7ff;
  --muted: #b0bac9;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(211, 180, 129, 0.28);
  --accent: #c7cce8;
  --accent-2: #d3b481;
  --accent-soft: rgba(211, 180, 129, 0.1);
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --max: 1180px;
  --font-body: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  color: var(--ink);
  background:
    radial-gradient(120% 82% at 50% -20%, rgba(126, 137, 205, 0.22), transparent 58%),
    radial-gradient(95% 70% at 100% 12%, rgba(121, 86, 153, 0.13), transparent 56%),
    linear-gradient(180deg, #111827 0%, #0b1120 46%, #090f1d 100%);
  font-family: var(--font-body);
}

.js-enabled body {
  height: 100%;
  overflow: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

button {
  font: inherit;
}

section {
  scroll-margin-top: 110px;
}

.deck-section {
  outline: none;
}

.site-header {
  position: fixed;
  top: 0;
  z-index: 40;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 92px;
  padding: 16px max(20px, calc((100vw - var(--max)) / 2));
  border-bottom: 0;
  background: rgba(11, 17, 32, 0.82);
  backdrop-filter: blur(18px);
}

.page-deck {
  position: relative;
  width: 100%;
}

.js-enabled .page-deck {
  height: 100svh;
  overflow: hidden;
}

.js-enabled .deck-section {
  position: absolute;
  top: 92px;
  bottom: 48px;
  left: 50%;
  width: min(calc(100% - 40px), var(--max));
  margin: 0;
  overflow-y: auto;
  scrollbar-width: none;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translate3d(-50%, 28px, 0) scale(0.985);
  transition:
    opacity 520ms ease,
    transform 520ms ease,
    visibility 520ms ease;
}

.js-enabled .deck-section::-webkit-scrollbar {
  display: none;
}

.js-enabled .deck-section.is-active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translate3d(-50%, 0, 0) scale(1);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  text-decoration: none;
}

.brand img {
  width: 178px;
  height: 58px;
  object-fit: contain;
}

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

.site-nav a {
  padding: 10px 12px;
  color: var(--muted);
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-current {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.07);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  color: #141722;
  background: #d3b481;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  border: 0;
  border-radius: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
}

.menu-button span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.hero {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: end;
  min-height: calc(100svh - 78px);
  padding: clamp(72px, 9vw, 132px) 0 64px;
}

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

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: none;
}

.hero h1 {
  margin: 0;
  max-width: 860px;
  font-family: var(--font-display);
  font-size: clamp(38px, 5.8vw, 76px);
  font-weight: 680;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 720px;
  margin: 30px 0 0;
  color: #c9d6e8;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.62;
}

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

.contact-actions {
  display: grid;
  align-items: stretch;
  max-width: 360px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 7px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  color: #141722;
  background: #d3b481;
  box-shadow: 0 18px 42px rgba(211, 180, 129, 0.16);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.07);
}

.hero-panel {
  padding: clamp(24px, 3.4vw, 36px);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(8, 13, 26, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.panel-logo {
  width: min(100%, 340px);
  margin: 0 auto 42px;
  padding: 20px 26px;
}

.panel-logo img {
  width: 100%;
  height: auto;
}

.hero-panel h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0.02em;
}

.hero-panel ul {
  display: grid;
  gap: 16px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.hero-panel li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  line-height: 1.5;
}

.hero-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent-2);
}

.proof-strip {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 22px 0 4px;
  border-top: 0;
}

.proof-strip span,
.tech-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 15px;
  border: 0;
  border-radius: 7px;
  color: #dbe8f9;
  background: rgba(255, 255, 255, 0.055);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 760;
}

.proof-strip span:nth-child(3n + 1),
.tech-grid span:nth-child(3n + 1) {
  background: rgba(255, 255, 255, 0.055);
}

.proof-strip span:nth-child(3n + 2),
.tech-grid span:nth-child(3n + 2) {
  background: rgba(211, 180, 129, 0.09);
}

.proof-strip span:nth-child(3n + 3),
.tech-grid span:nth-child(3n + 3) {
  background: rgba(199, 204, 232, 0.075);
}

.section {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: clamp(86px, 10vw, 136px) 0 0;
}

.section-intro {
  max-width: 800px;
  margin-bottom: 42px;
}

.section-intro h2,
.contact-panel h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 680;
  line-height: 1.16;
  letter-spacing: 0;
}

.section-intro p:not(.section-kicker),
.contact-panel p:not(.section-kicker) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

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

.service-item {
  display: grid;
  gap: 26px;
  align-content: start;
  min-height: 260px;
  padding: clamp(24px, 3vw, 34px);
  border: 0;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    var(--surface-card);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.service-icon {
  display: inline-grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 0;
  border-radius: 14px;
  color: var(--accent);
  background:
    linear-gradient(145deg, rgba(169, 180, 255, 0.14), rgba(232, 184, 111, 0.07)),
    rgba(255, 255, 255, 0.035);
}

.service-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-step span {
  color: var(--accent-2);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.service-item h3,
.project-card h3,
.process-step h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 650;
  line-height: 1.22;
  letter-spacing: 0.01em;
}

.service-item p {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.project-card,
.process-step,
.contact-panel {
  border: 0;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.project-card:hover,
.process-step:hover {
  background: rgba(18, 29, 52, 0.9);
}

.project-card p,
.process-step p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.section-technologies {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: start;
}

.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 8px;
}

.tech-grid span:nth-child(4n + 1) {
  background: var(--accent-soft);
}

.project-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 16px;
}

.project-card {
  display: grid;
  align-content: space-between;
  gap: 18px;
  min-height: 460px;
  padding: clamp(14px, 2vw, 22px);
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.project-card:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(211, 180, 129, 0.16);
}

.project-shot {
  position: relative;
  aspect-ratio: 16 / 10;
  margin: 0;
  border-radius: 7px;
  background:
    linear-gradient(135deg, rgba(8, 189, 242, 0.12), rgba(110, 231, 168, 0.08)),
    rgba(2, 6, 14, 0.64);
  overflow: hidden;
}

.project-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.project-shot.is-missing img {
  display: none;
}

.project-shot.is-missing::after {
  content: "Screenshot projektu";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-meta span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.text-link {
  display: inline-flex;
  width: max-content;
  align-items: center;
  margin-top: 24px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-weight: 850;
  text-decoration: none;
}

.text-link::after {
  content: "->";
  margin-left: 9px;
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.process-list::before {
  content: none;
}

.process-step {
  position: relative;
  padding: 24px;
}

.process-step::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 28px;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: var(--accent);
}

.process-step span {
  display: block;
  margin-bottom: 42px;
  padding-left: 28px;
}

.process-step h3 {
  font-size: clamp(20px, 1.75vw, 27px);
}

.process-step p {
  font-size: 16px;
  line-height: 1.58;
}

.contact-section {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: clamp(90px, 10vw, 140px) 0 42px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: start;
  padding: clamp(30px, 6vw, 68px);
  border: 0;
  background:
    radial-gradient(90% 120% at 0% 0%, rgba(79, 92, 132, 0.2), transparent 62%),
    rgba(18, 27, 42, 0.9);
  box-shadow: 0 32px 110px rgba(0, 0, 0, 0.3);
}

.contact-panel h2 {
  max-width: 900px;
}

.contact-panel p:not(.section-kicker) {
  max-width: 620px;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-row {
  display: grid;
  gap: 9px;
}

.form-row-wide {
  grid-column: 1 / -1;
}

.form-row label {
  color: rgba(221, 228, 242, 0.76);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.075);
  padding: 13px 16px;
  font: inherit;
  outline: none;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.form-row textarea {
  min-height: 148px;
  resize: vertical;
}

.form-row select {
  appearance: none;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 4px rgba(211, 180, 129, 0.08);
}

.inquiry-form .button {
  grid-column: 1 / -1;
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-status {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 700;
}

.js-enabled .hero.deck-section {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: clamp(28px, 5vw, 66px);
  align-items: center;
  min-height: auto;
  padding: clamp(18px, 4vh, 42px) 0 0;
}

.js-enabled .hero.deck-section .proof-strip {
  grid-column: 1 / -1;
  width: 100%;
  margin: clamp(14px, 3vh, 28px) 0 0;
  padding: clamp(14px, 2vh, 22px) 0 0;
}

.js-enabled .section.deck-section {
  padding: clamp(22px, 5vh, 54px) 0;
}

.js-enabled .section-services.deck-section,
.js-enabled .section-technologies.deck-section,
.js-enabled .section-projects.deck-section,
.js-enabled .section-process.deck-section {
  display: grid;
  align-content: center;
}

.js-enabled .section-technologies.deck-section {
  align-items: center;
}

.js-enabled .deck-section .section-intro {
  margin-bottom: clamp(20px, 3.2vh, 34px);
}

.js-enabled .deck-section .project-card {
  min-height: clamp(390px, 56vh, 500px);
}

.js-enabled .deck-section .process-step {
  padding: clamp(18px, 1.8vw, 24px);
}

.js-enabled .contact-section.deck-section {
  display: grid;
  align-items: center;
  padding: clamp(18px, 4vh, 42px) 0;
}

.js-enabled .contact-section.deck-section .contact-panel {
  padding: clamp(22px, 4vw, 48px);
}

.js-enabled .contact-section.deck-section .contact-actions {
  margin-top: 24px;
}

.js-enabled .contact-section.deck-section .inquiry-form {
  gap: 16px;
  padding: 0;
}

.js-enabled .contact-section.deck-section .form-row textarea {
  min-height: 116px;
}

.contact-billing {
  grid-column: 1 / -1;
  margin-top: 0;
  padding-top: 22px;
  border-top: 0;
}

.contact-billing h3 {
  margin: 0 0 16px;
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-billing dl {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.contact-billing dl > div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 10px;
  align-items: baseline;
}

.contact-billing dt {
  margin: 0;
  color: rgba(168, 181, 199, 0.72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-billing dd {
  margin: 0;
  color: var(--ink);
  line-height: 1.45;
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    min-height: 82px;
    padding: 12px 14px;
  }

  .js-enabled .deck-section {
    top: 82px;
    bottom: 46px;
  }

  .site-nav {
    position: fixed;
    top: 90px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 4px;
    padding: 12px;
    border-radius: var(--radius);
    background: rgba(5, 8, 18, 0.97);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 14px;
  }

  .nav-cta {
    margin-left: auto;
  }

  .menu-button {
    display: inline-flex;
    margin-left: auto;
  }

  .hero,
  .section-technologies,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
  }

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

  .process-list::before {
    display: none;
  }
}

@media (max-width: 700px) {
  .brand img {
    width: 150px;
    height: 48px;
  }

  .nav-cta {
    display: none;
  }

  .hero,
  .section,
  .contact-section,
  .proof-strip {
    width: min(calc(100% - 28px), var(--max));
  }

  .js-enabled .deck-section {
    width: min(calc(100% - 28px), var(--max));
    bottom: 74px;
  }

  .contact-billing dl > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .hero {
    padding-bottom: 44px;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .service-item {
    grid-template-columns: 1fr;
  }

  .project-list,
  .process-list,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .project-card,
  .process-step {
    border-radius: 14px;
  }

}

@media (max-width: 760px) {
  html {
    height: auto;
  }

  .js-enabled body {
    height: auto;
    overflow: auto;
  }

  .site-header {
    position: sticky;
    min-height: 72px;
    padding: 10px 14px;
  }

  section {
    scroll-margin-top: 84px;
  }

  .brand img {
    width: 138px;
    height: 44px;
  }

  .site-nav {
    top: 76px;
  }

  .page-deck,
  .js-enabled .page-deck {
    height: auto;
    overflow: visible;
  }

  .js-enabled .deck-section {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    width: min(calc(100% - 28px), var(--max));
    margin: 0 auto;
    overflow: visible;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: none;
    transition: none;
  }

  .js-enabled .deck-section.is-active {
    transform: none;
  }

  .hero,
  .js-enabled .hero.deck-section {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
    min-height: auto;
    padding: 38px 0 34px;
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.08;
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 17px;
    line-height: 1.58;
  }

  .eyebrow,
  .section-kicker {
    margin-bottom: 14px;
    font-size: 11px;
    line-height: 1.5;
    letter-spacing: 0.08em;
  }

  .hero-actions,
  .contact-actions {
    margin-top: 26px;
  }

  .hero-panel {
    padding: 22px;
  }

  .panel-logo {
    width: min(100%, 260px);
    margin-bottom: 28px;
    padding: 10px 12px;
  }

  .hero-panel h2,
  .section-intro h2,
  .contact-panel h2 {
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.14;
  }

  .hero-panel ul {
    gap: 12px;
    margin-top: 22px;
  }

  .proof-strip,
  .js-enabled .hero.deck-section .proof-strip {
    margin-top: 10px;
    padding-top: 18px;
    gap: 8px;
  }

  .proof-strip span,
  .tech-grid span {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .section,
  .js-enabled .section.deck-section {
    padding: 68px 0 0;
  }

  .section-intro,
  .js-enabled .deck-section .section-intro {
    margin-bottom: 26px;
  }

  .section-intro p:not(.section-kicker),
  .contact-panel p:not(.section-kicker),
  .service-item p {
    font-size: 16px;
    line-height: 1.62;
  }

  .service-item,
  .js-enabled .deck-section .service-item {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 20px;
    padding: 22px;
  }

  .section-technologies {
    gap: 24px;
  }

  .project-list,
  .process-list,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .project-card,
  .js-enabled .deck-section .project-card {
    min-height: auto;
    gap: 14px;
    padding: 16px;
  }

  .project-shot {
    aspect-ratio: 16 / 11;
  }

  .process-list {
    gap: 12px;
  }

  .process-list::before {
    display: none;
  }

  .process-step,
  .js-enabled .deck-section .process-step {
    padding: 20px;
  }

  .process-step span {
    margin-bottom: 24px;
  }

  .process-step p {
    font-size: 16px;
  }

  .contact-section,
  .js-enabled .contact-section.deck-section {
    padding: 68px 0 36px;
  }

  .contact-panel,
  .js-enabled .contact-section.deck-section .contact-panel {
    padding: 20px;
  }

  .inquiry-form,
  .js-enabled .contact-section.deck-section .inquiry-form {
    gap: 14px;
    padding: 16px;
  }

  .form-row textarea,
  .js-enabled .contact-section.deck-section .form-row textarea {
    min-height: 132px;
  }

  .contact-billing {
    padding-top: 20px;
  }
}

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

  .js-enabled .reveal {
    opacity: 1;
    transform: none;
  }
}
